/* 
========================================
FOOTER SECTION
========================================
*/
.site-footer {
    background-color: var(--dark-bg);
    color: var(--text-white);
    padding-top: 30px;
    font-size: 14px;
    border-top: 5px solid var(--accent-color);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-heading {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

/* Decorative underline for headings */
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-desc {
    color: var(--text-gray);
    margin-bottom: 16px;
    text-align: justify;
}

/* Contact List Styles */
.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-list li i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.contact-list .label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.contact-list .contact-link {
    color: var(--text-white);
    font-weight: 500;
    font-size: 14px;
}

.contact-list .contact-link:hover {
    color: var(--accent-color);
}

.contact-list .text {
    color: var(--text-gray);
}

/* Form Styles */
.contact-form {
    margin-top: 20px;
}

.input-group {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
		width: 100%;
    line-height: 40px;
}

.form-input {
    flex: 1;
    background: rgba(255, 255, 255, 1);
    border: none;
    padding: 12px 16px;
    outline: none;
    font-family: inherit;
}



.form-input:focus {
    background: rgba(255, 255, 255, 1);
}

.btn-submit-footer {
    background-color: var(--accent-color);
    border: none;
    color: white;
    padding: 0 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    font-family: inherit;
}

.btn-submit-footer:hover {
    background-color: #d17812;
}

.btn-submit-footer i {
    margin-right: 5px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Social Media */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* 
========================================
RESPONSIVE (Max-width: 1000px) 
========================================
*/
@media screen and (max-width: 1000px) {
    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 30px;
    }

    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .social-links {
        justify-content: center;
    }
}