/* =====================================================
   FOOTER STYLES
   White background adaptation
   ===================================================== */

.footer-section {
    /* White background adaptation */
    background: #ffffff;
    padding: 60px 60px 30px 60px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a4fff 0%, #ff7f2a 50%, #1a4fff 100%);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

/* =====================================================
   FOOTER COLUMN TITLES
   Text color adjustments - dark navy
   ===================================================== */

.footer-column-title {
    font-size: 18px;
    font-weight: 700;
    /* Text color adjustments */
    color: #1a1d29;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff7f2a, #1a4fff);
    border-radius: 2px;
}

/* =====================================================
   CONTACT FORM (LEFT COLUMN)
   Form inputs - light gray border, white background
   ===================================================== */

.footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-form-input,
.footer-form-textarea {
    /* Form inputs - white background, light gray border */
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    /* Text color adjustments */
    color: #1a1d29;
    transition: all 0.3s ease;
    font-family: inherit;
}

.footer-form-input::placeholder,
.footer-form-textarea::placeholder {
    /* Placeholder color for white background */
    color: #9ca3af;
}

.footer-form-input:focus,
.footer-form-textarea:focus {
    /* Focus state - navy/orange outline */
    outline: none;
    border-color: #1a4fff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(26, 79, 255, 0.15);
}

.footer-form-textarea {
    min-height: 100px;
    resize: vertical;
}

.footer-submit-btn {
    /* Button - navy background, white text */
    background: linear-gradient(135deg, #ff7f2a 0%, #e56b1a 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.footer-submit-btn:hover {
    /* Button hover - orange accent */
    background: linear-gradient(135deg,  #1a4fff 0%, #0d3ad9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 127, 42, 0.35);
}

/* =====================================================
   MAP SECTION (MIDDLE COLUMN)
   Border adjustments for white background
   ===================================================== */

.footer-map-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    /* Border for white background */
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.footer-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* Normal map colors for white background */
    filter: none;
    transition: filter 0.3s ease;
}

.footer-map-wrapper:hover iframe {
    filter: none;
}

.footer-address {
    margin-top: 16px;
    /* Text color adjustments */
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
}

/* =====================================================
   QUICK LINKS & SOCIAL (RIGHT COLUMN)
   Link colors for white background
   ===================================================== */

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-link {
    /* Link color - dark gray */
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link::before {
    content: '';
    width: 6px;
    height: 6px;
    /* Bullet - navy */
    background:#ff7f2a ;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-link:hover {
    /* Hover - orange accent */
    color:  #1a4fff;
    padding-left: 8px;
}

.footer-link:hover::before {
    background: #ff7f2a;
}

.footer-contact-info {
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Text color adjustments */
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    /* Icon color - navy */
    stroke: #ff7f2a;
    flex-shrink: 0;
}

.footer-contact-item a {
    /* Link color - navy */
    color: #ff7f2a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    /* Hover - orange */
    color: #ff7f2a;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Social icons - navy background for white bg */
    background: #ff7f2a;
    border: 1px solid #ff7f2a;
    border-radius: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-social-link:hover {
    transform: translateY(-4px);
}

.footer-social-link.footer-instagram:hover {
    /* Instagram brand colors */
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-color: transparent;
}

.footer-social-link.footer-linkedin:hover {
    /* LinkedIn brand color */
    background: #0077b5;
    border-color: transparent;
}

.footer-social-link.footer-whatsapp:hover {
    /* WhatsApp brand color */
    background: #25d366;
    border-color: transparent;
}

/* =====================================================
   FOOTER BOTTOM
   Border and text adjustments for white background
   ===================================================== */

.footer-bottom {
    margin-top: 50px;
    padding-top: 24px;
    /* Border for white background */
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    /* Text color adjustments */
    color: #6b7280;
    font-size: 13px;
}

.footer-copyright a {
    /* Link color - navy */
    color: #ff7f2a ;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    /* Hover - orange */
    color: #1a4fff;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    /* Text color adjustments */
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    /* Hover - orange */
    color: #ff7f2a;
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

@media screen and (max-width: 1024px) {
    .footer-section {
        padding: 50px 40px 25px 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-column:nth-child(3) {
        grid-column: span 2;
    }

    .footer-links-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media screen and (max-width: 768px) {
    .footer-section {
        padding: 40px 24px 20px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-column:nth-child(3) {
        grid-column: span 1;
    }

    .footer-map-wrapper {
        height: 200px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer-section {
        padding: 35px 20px 18px 20px;
    }

    .footer-column-title {
        font-size: 16px;
    }

    .footer-links-list {
        grid-template-columns: 1fr;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
    }
}
