/**
 * EVASIONS DE CEYLAN FOOTER - PREMIUM ELEGANT FINISH
 * Version: 15.0.0 - All Issues Fixed
 * 
 * BRAND COLORS:
 * Orange: #f68712
 * Navy Blue: #2c3892
 * White: #FFFFFF
 */

/* ==================== ORANGE TOP BORDER ==================== */
.footer-gold-border {
    height: 4px;
    background: linear-gradient(135deg, #f68712 0%, #ff9847 50%, #f68712 100%);
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(246, 135, 18, 0.3);
}

/* ==================== FOOTER CONTAINER ==================== */
.footer-compact {
    position: relative;
    z-index: 99;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: 0;
    box-shadow: 0 -2px 15px rgba(44, 56, 146, 0.08);
}

/* ==================== NAVY MAIN SECTION ==================== */
.footer-main-navy {
    background: linear-gradient(135deg, #2c3892 0%, #3d4ba3 100%);
    color: #FFFFFF;
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.footer-main-navy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.footer-content-row {
    position: relative;
    z-index: 2;
}

/* ==================== COMPANY BRAND ==================== */
.footer-brand-compact {
    text-align: center;
}

.footer-logo-wrapper {
    margin-bottom: 0.5rem;
}

.footer-logo-compact {
    max-height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.2) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
}

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

.footer-tagline-compact {
    color: #f68712;
    font-size: 0.8rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* ==================== STATS BOX ==================== */
.footer-stats-row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-top: 2px solid rgba(246, 135, 18, 0.3);
    border-bottom: 2px solid rgba(246, 135, 18, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-item-compact {
    flex: 1;
    text-align: center;
    padding: 0.15rem;
}

.stat-number-compact {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #f68712;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.stat-label-compact {
    display: block;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==================== FOOTER HEADINGS ==================== */
.footer-heading-compact {
    color: #f68712;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.85rem;
    position: relative;
    text-align: left;
    padding-bottom: 0.35rem;
}

.footer-heading-compact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: #f68712;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(246, 135, 18, 0.4);
}

/* ==================== QUICK LINKS - TEXT VISIBLE ==================== */
.footer-nav-compact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-compact li {
    margin-bottom: 0.5rem;
}

.footer-link-compact {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #FFFFFF !important;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0.4rem;
    border-radius: 4px;
}

.footer-link-compact span {
    color: #FFFFFF !important;
}

.footer-link-compact:hover {
    color: #f68712 !important;
    text-decoration: none;
    transform: translateX(5px);
    background: rgba(246, 135, 18, 0.1);
}

.footer-link-compact:hover span {
    color: #f68712 !important;
}

.footer-link-compact i {
    font-size: 0.875rem;
    width: 18px;
    text-align: center;
    color: #f68712;
    transition: all 0.3s ease;
}

.footer-link-compact:hover i {
    transform: scale(1.1);
}

/* ==================== CONTACT INFORMATION ==================== */
.footer-contact-compact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-item-compact {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.45rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(246, 135, 18, 0.15);
}

.contact-item-compact:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f68712;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(246, 135, 18, 0.2);
}

/* ICONS CENTERED IN CIRCLES */
.contact-icon-compact {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    background: rgba(246, 135, 18, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f68712;
    font-size: 0.85rem;
    flex-shrink: 0;
    border: 2px solid rgba(246, 135, 18, 0.25);
}

.contact-icon-compact i {
    display: block;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.contact-details-compact {
    flex: 1;
    min-width: 0;
}

.contact-label-compact {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: #f68712;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CONTACT TEXT WHITE NOT BOLD */
.contact-value-compact,
.contact-value-compact a,
.contact-details-compact a {
    display: block;
    font-size: 0.85rem;
    font-weight: 400 !important;
    color: #FFFFFF !important;
    line-height: 1.4;
    word-break: break-word;
    text-decoration: none;
}

.contact-value-compact:hover,
.contact-value-compact a:hover,
.contact-details-compact a:hover {
    color: #f68712 !important;
    text-decoration: none;
}

/* ==================== SOCIAL ICONS - BRIGHTER ==================== */
.social-icons-compact {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-icon-compact {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-icon-compact:hover {
    background: #f68712;
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(246, 135, 18, 0.4);
    border-color: #f68712;
}

/* ==================== 24/7 SUPPORT ==================== */
.support-available-compact {
    background: rgba(246, 135, 18, 0.1);
    border: 2px solid rgba(246, 135, 18, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.support-available-compact:hover {
    background: rgba(246, 135, 18, 0.15);
    border-color: #f68712;
    box-shadow: 0 4px 12px rgba(246, 135, 18, 0.2);
}

.support-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 500;
}

.support-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    background: rgba(246, 135, 18, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f68712;
    font-size: 0.75rem;
    border: 2px solid rgba(246, 135, 18, 0.25);
    line-height: 1;
}

.support-phone {
    display: block;
    color: #f68712 !important;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.35rem;
}

.support-phone:hover {
    color: #ff9847 !important;
    transform: scale(1.05);
    text-shadow: 0 2px 4px rgba(246, 135, 18, 0.3);
}

/* ==================== COPYRIGHT SECTION ==================== */
.footer-copyright-silver {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.98) 0%, rgba(240, 242, 245, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-top: 1px solid rgba(44, 56, 146, 0.1);
    position: relative;
}

.footer-copyright-silver::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #f68712 50%, transparent 100%);
    opacity: 0.3;
}

.copyright-text-compact {
    color: #5a6c7d;
    font-size: 0.8rem;
    margin: 0;
    font-weight: 500;
}

.website-link-compact {
    color: #f68712;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.website-link-compact:hover {
    color: #2c3892;
    text-decoration: underline;
}

.legal-links-compact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.legal-link-compact {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.legal-link-compact:hover {
    color: #f68712;
    text-decoration: underline;
}

.separator-compact {
    color: rgba(90, 108, 125, 0.3);
    font-weight: 300;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .footer-main-navy {
        padding: 1.25rem 0;
    }
    
    .footer-heading-compact {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-content-row > div {
        margin-bottom: 1.5rem;
    }
    
    .footer-brand-compact {
        text-align: center;
    }
    
    .social-icons-compact {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-main-navy {
        padding: 1rem 0;
    }
    
    .footer-logo-compact {
        max-height: 36px;
    }
    
    .footer-heading-compact {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .footer-heading-compact::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-nav-compact {
        text-align: center;
    }
    
    .footer-link-compact {
        justify-content: center;
    }
    
    .social-icon-compact {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .legal-links-compact {
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .copyright-text-compact {
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 575px) {
    .footer-main-navy {
        padding: 1.25rem 0;
    }
    
    .footer-content-row > div {
        margin-bottom: 1.5rem;
    }
    
    .social-icons-compact {
        gap: 0.5rem;
    }
    
    .social-icon-compact {
        width: 40px;
        height: 40px;
    }
    
    .legal-links-compact {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .separator-compact {
        display: none;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes footerSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes footerFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.footer-compact {
    animation: footerSlideUp 0.8s ease-out;
}

.footer-content-row > * {
    animation: footerFadeIn 1s ease-out;
    animation-fill-mode: both;
}

.footer-content-row > *:nth-child(1) { animation-delay: 0.1s; }
.footer-content-row > *:nth-child(2) { animation-delay: 0.2s; }
.footer-content-row > *:nth-child(3) { animation-delay: 0.3s; }
.footer-content-row > *:nth-child(4) { animation-delay: 0.4s; }

/* ==================== ACCESSIBILITY ==================== */
.footer-link-compact:focus,
.social-icon-compact:focus,
.legal-link-compact:focus,
.contact-value-compact:focus {
    outline: 2px solid #f68712;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .footer-compact,
    .footer-content-row > *,
    .footer-link-compact,
    .social-icon-compact,
    .contact-item-compact {
        animation: none !important;
        transition: none !important;
    }
}

/* ==================== PERFORMANCE ==================== */
.footer-compact {
    contain: layout style;
}

.contact-item-compact,
.social-icon-compact,
.stat-item-compact,
.support-available-compact {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ==================== FORCE WHITE TEXT OVERRIDES ==================== */
.footer-main-navy .contact-value-compact,
.footer-main-navy .contact-details-compact span,
.footer-main-navy .contact-details-compact a,
.footer-main-navy a[href^="mailto:"],
.footer-main-navy a[href^="tel:"] {
    color: #FFFFFF !important;
    font-weight: 400 !important;
}

.footer-main-navy a[href^="mailto:"]:hover,
.footer-main-navy a[href^="tel:"]:hover {
    color: #f68712 !important;
}

/* ==================== TRIPADVISOR ICON FIX ==================== */
.social-icon-compact i.fa-tripadvisor::before {
    content: "\f262";
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

/* Ensure all brand icons load properly */
.social-icon-compact i[class*="fa-"] {
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}