/* ============================================
   MAIN FOOTER
   ============================================ */

.main-footer {
    background: linear-gradient(135deg, #2F4F4F 0%, #1a2f2f 100%);
    color: #ffffff;
    padding: 10px 0 5px;
    position: relative;
}

/* .main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F19138 0%, #ff6b2c 50%, #F19138 100%);
}*/

/* Footer Column */
.footer-column {
    margin-bottom: 1rem;
}

/* Footer Title */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link-title:hover {
    color: #F19138;
}

.footer-link-title i {
    font-size: 1.25rem;
    color: #F19138;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: '\203A\203A';
    position: absolute;
    left: 0;
    color: #F19138;
    font-size: 1.25rem;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 1.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Social Buttons */
.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: #F19138;
    border-color: #F19138;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(224, 83, 12, 0.4);
}

.footer-newsletter-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   COPYRIGHT FOOTER
   ============================================ */

.copyright-footer {
    background: #FFFFFF;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.copyright-text {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.copyright-text strong {
    color: #F19138;
    font-weight: 600;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer-legal-links a {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #F19138;
}

.footer-legal-links .separator {
    color: rgba(0, 0, 0, 0.3);
}

/* ============================================
   TABLET RESPONSIVE (768px - 991px)
   ============================================ */

@media (max-width: 991.98px) {
    .main-footer {
        padding: 30px 0 15px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .social-btn {
        width: 37px;
        height: 37px;
        font-size: 1.15rem;
    }
}

/* ============================================
   MOBILE RESPONSIVE (Below 768px)
   ============================================ */

@media (max-width: 767.98px) {
    .main-footer {
        padding: 25px 0 10px;
    }

    .footer-column {
        margin-bottom: 1rem;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-link-title {
        gap: 0.5rem;
    }

    .footer-link-title i {
        font-size: 1.1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
        padding-left: 0.75rem;
    }

    .footer-links a:hover {
        padding-left: 1.25rem;
    }

    .footer-social {
        gap: 0.5rem;
    }

    .social-btn {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .copyright-footer {
        padding: 0.75rem 0;
    }

    .footer-logo-img {
        height: 40px;
    }

    .copyright-text {
        font-size: 0.85rem;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal-links .separator {
        display: none;
    }

    .footer-legal-links a {
        font-size: 0.8rem;
    }
}

/* ============================================
   SMALL MOBILE (Below 576px)
   ============================================ */

@media (max-width: 575.98px) {
    .main-footer {
        padding: 20px 0 10px;
    }

    .footer-column {
        margin-bottom: 0.75rem;
    }

    .footer-title {
        font-size: 0.95rem;
    }

    .footer-links li {
        margin-bottom: 0.65rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .social-btn {
        width: 33px;
        height: 33px;
        font-size: 1rem;
    }

    .footer-logo-img {
        height: 35px;
    }

    .copyright-text {
        font-size: 0.8rem;
    }
}

/* ============================================
   LARGE SCREENS (1400px+)
   ============================================ */

@media (min-width: 1400px) {
    .main-footer {
        padding: 50px 0 25px;
    }

    .footer-title {
        font-size: 1.15rem;
    }

    .footer-links a {
        font-size: 1rem;
    }

    .social-btn {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }

    .footer-logo-img {
        height: 55px;
    }

    .copyright-text {
        font-size: 1rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .footer-link-title,
    .footer-links a,
    .social-btn,
    .footer-logo,
    .footer-legal-links a {
        transition: none;
    }

    .footer-links a:hover,
    .social-btn:hover,
    .footer-logo:hover {
        transform: none;
    }

    .footer-links a::before {
        transition: none;
    }
}

/* Focus states */
.footer-link-title:focus,
.footer-links a:focus,
.social-btn:focus,
.footer-logo:focus,
.footer-legal-links a:focus {
    outline: 2px solid #F19138;
    outline-offset: 4px;
    border-radius: 4px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .main-footer {
        background: #000000;
    }

    .copyright-footer {
        background: #000000;
        border-top-color: #ffffff;
    }

    .footer-title,
    .footer-links a,
    .copyright-text {
        color: #ffffff;
    }

    .social-btn {
        border-color: #ffffff;
    }
}

/* Print styles */
@media print {
    .main-footer {
        background: #ffffff;
        color: #000000;
        padding: 2rem 0;
    }

    .main-footer::before {
        display: none;
    }

    .footer-link-title,
    .footer-links a,
    .copyright-text {
        color: #000000;
    }

    .social-btn {
        display: none;
    }

    .copyright-footer {
        background: #ffffff;
        border-top: 2px solid #000000;
    }
}