/* Footer Section */
.footer-section {
    width: 100%;
    background: #ffffff;
    color: #2C6C36;
    padding: 40px 40px 0px;
    display: flex;
    flex-direction: column;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr;
    gap: 40px;
    flex: 1;
    padding-bottom: 1rem;
}

/* Left Section - Company Information */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo-wrapper {
    width: 180px;
    height: auto;
    width: 100%;
    justify-content: center;
    display: flex;
}

.footer-logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #2C6C36;
    margin: 0;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.contact-item {
    margin: 0;
    font-size: 0.95rem;
}

.contact-label {
    color: #2C6C36;
    font-weight: 600;
    margin-right: 8px;
}

.contact-link {
    color: #2C6C36;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1a4d2e;
    text-decoration: underline;
}

/* Middle Section - Quick Links & Social Media */
.footer-middle {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-heading {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C6C36;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #2C6C36;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
}

.footer-link:hover {
    color: #1a4d2e;
}

.social-media {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #2C6C36;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C6C36;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.social-icon:hover {
    background: #2C6C36;
    border-color: #2C6C36;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* Right Section - Contact Form */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-phone {
    flex-direction: row;
    gap: 10px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.4rem 0.5rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: 'Manrope', sans-serif;
    color: #2C6C36;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #2C6C36;
    box-shadow: 0 0 0 2px rgba(44, 108, 54, 0.3);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999999;
}

.form-select {
    color: #2C6C36;
    background-color: #ffffff;
}

.form-select option {
    background: #ffffff;
    color: #2C6C36;
}

.form-select {
    flex: 0 0 80px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    height: 60px !important;
}


.form-submit-btn {
    padding: 8px 25px;
    background: #D4AF37;
    color: #233220;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    /* margin-top: 5px; */
}

.form-submit-btn:hover {
    background: #F4A460;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Bottom Footer Bar */
.footer-bottom {
    border-top: 1px solid rgba(44, 108, 54, 0.2);
    padding: 15px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: auto;
    width: 100%;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #2C6C36;
    margin: 0;
    text-align: center;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-right {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 30px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-right {
        grid-column: 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding: 25px 30px;
        text-align: center;
    }

    .footer-copyright {
        width: 100%;
        text-align: center;
    }

    .social-media {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 50px 20px 0;
    }

    .footer-container {
        gap: 35px;
        padding-bottom: 35px;
    }

    .footer-logo-wrapper {
        width: 150px;
    }

    .form-group-phone {
        flex-direction: column;
    }

    .form-select {
        flex: 1;
    }
}
