/* ============================================================
   ELITE LUXE JOURNEYS — template-footer.css v2.0
   Navy Blue + Golden Yellow Premium Luxury Footer
   Complete redesign — Knuckles column removed

   ⚠️  ALL values reference variables from main.css ONLY
   ⚠️  NO hardcoded hex colors — except WhatsApp brand greens

   SECTIONS:
   1.  Footer Base + Wave Decoration
   2.  Gold Divider Line
   3.  Layout — 4-column grid
   4.  Column Titles
   5.  Brand Column
   6.  Stats Row
   7.  Contact Cards
   8.  Social Icons
   9.  Nav Links
   10. Tour Categories
   11. Business Hours Card
   12. Trust Badges
   13. Newsletter
   14. Copyright Bar
   15. Back to Top
   16. WhatsApp Widget
   17. Responsive
   ============================================================ */


/* ============================================================
   1. FOOTER BASE
   ============================================================ */
.et-footer {
    position: relative;
    background: var(--color-navy-deep);
    color: var(--color-white-70);
    font-family: var(--font-primary);
    overflow: hidden;
}

/* Subtle diagonal topo lines */
.et-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            110deg,
            transparent               0px,
            transparent               100px,
            rgba(255,255,255,0.012)   100px,
            rgba(255,255,255,0.012)   101px
        ),
        repeating-linear-gradient(
            -70deg,
            transparent               0px,
            transparent               150px,
            rgba(255,255,255,0.007)   150px,
            rgba(255,255,255,0.007)   151px
        );
    pointer-events: none;
    z-index: 0;
}

/* Radial gold glow — upper-right corner atmosphere */
.et-footer::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        ellipse at center,
        rgba(255,214,0,0.055) 0%,
        transparent           65%
    );
    pointer-events: none;
    z-index: 0;
}


/* ============================================================
   2. GOLD DIVIDER LINE
   ============================================================ */
.et-footer-divider {
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent               0%,
        var(--color-gold-dark)   12%,
        var(--color-gold)        35%,
        var(--color-gold-light)  50%,
        var(--color-gold)        65%,
        var(--color-gold-dark)   88%,
        transparent               100%
    );
    position: relative;
    z-index: 1;
    animation: et-footer-glow 4s ease-in-out infinite;
}
@keyframes et-footer-glow {
    0%   { opacity: 0.70; }
    50%  { opacity: 1;    }
    100% { opacity: 0.70; }
}


/* ============================================================
   3. LAYOUT — 4-COLUMN GRID
   ============================================================ */
.et-footer-body {
    position: relative;
    z-index: 1;
    padding: var(--spacing-16) 0 var(--spacing-10);
}

.et-footer-container {
    max-width: var(--container-wide, 1400px);
    margin: 0 auto;
    padding: 0 var(--spacing-6);
}

.et-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.1fr 1.5fr 1.3fr;
    gap: var(--spacing-8);
    align-items: start;
}


/* ============================================================
   4. COLUMN TITLES
   ============================================================ */
.et-col-title {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 var(--spacing-5);
    padding-bottom: var(--spacing-3);
    border-bottom: 1px solid rgba(255,214,0,0.20);
    position: relative;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

/* Gold left-anchor accent line */
.et-col-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
}

.et-title-icon {
    font-size: 0.80rem;
    color: var(--color-gold);
    opacity: 0.85;
}


/* ============================================================
   5. BRAND COLUMN
   ============================================================ */
.et-col-brand { }

.et-footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-4);
}

/* Logo with gold halo */
.et-footer-logo-mark {
    position: relative;
    flex-shrink: 0;
}
.et-footer-logo-mark::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(255,214,0,0.12) 0%,
        transparent          70%
    );
    pointer-events: none;
}

.et-footer-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 12px rgba(255,214,0,0.18));
}

.et-footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.et-footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.08em;
    background: linear-gradient(
        135deg,
        var(--color-white)      0%,
        var(--color-white-90)   50%,
        var(--color-gold-pale)  100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.et-footer-brand-tagline {
    font-family: var(--font-primary);
    font-size: 0.62rem;
    color: var(--color-gold-light);
    letter-spacing: 0.04em;
    line-height: 1.4;
    opacity: 0.80;
}

.et-footer-desc {
    font-size: 0.81rem;
    color: var(--color-white-55);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--spacing-5);
    max-width: 360px;
}


/* ============================================================
   6. STATS ROW
   ============================================================ */
.et-stats-row {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-5);
    background: rgba(255,214,0,0.05);
    border: 1px solid rgba(255,214,0,0.12);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3) var(--spacing-4);
    position: relative;
    overflow: hidden;
}

/* Gold shimmer at top of stats */
.et-stats-row::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent              0%,
        rgba(255,214,0,0.38)    50%,
        transparent              100%
    );
}

.et-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.et-stat-num {
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    letter-spacing: -0.01em;
}

.et-stat-suffix {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-left: -2px;
}

.et-stat-label {
    font-size: 0.60rem;
    font-weight: 600;
    color: var(--color-white-45);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    margin-top: 2px;
}

.et-stat-sep {
    width: 1px;
    height: 38px;
    background: rgba(255,214,0,0.16);
    flex-shrink: 0;
}


/* ============================================================
   7. CONTACT CARDS
   ============================================================ */
.et-contact-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-5);
}

.et-contact-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-2-5) var(--spacing-3);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: background     var(--transition-fast),
                border-color   var(--transition-fast),
                transform      var(--transition-fast);
}
.et-contact-card:hover {
    background: rgba(255,214,0,0.07);
    border-color: rgba(255,214,0,0.25);
    transform: translateX(3px);
}
.et-address-card { cursor: default; }
.et-address-card:hover { transform: none; }

.et-fcc-icon {
    width: 34px;
    height: 34px;
    background: rgba(255,214,0,0.09);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition-fast);
}
.et-fcc-icon i {
    font-size: 0.80rem;
    color: var(--color-gold);
}
.et-contact-card:hover .et-fcc-icon {
    background: rgba(255,214,0,0.16);
}

.fcc-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.fcc-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--color-white-35);
}
.fcc-value {
    font-size: 0.80rem;
    color: var(--color-white-75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color var(--transition-fast);
}
.et-contact-card:hover .fcc-value { color: var(--color-white); }


/* ============================================================
   8. SOCIAL ICONS
   ============================================================ */
.et-footer-socials {
    display: flex;
    gap: var(--spacing-2);
    flex-wrap: wrap;
}

.et-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: var(--color-white-55);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background    0.25s ease,
                border-color  0.25s ease,
                color         0.25s ease,
                transform     0.25s ease,
                box-shadow    0.25s ease;
}
.et-social-icon:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-navy-deep);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.footer-social-youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.35);
}


/* ============================================================
   9. NAV LINKS
   ============================================================ */
.et-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.et-nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-1-5) var(--spacing-2);
    font-size: 0.82rem;
    color: var(--color-white-55);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color       var(--transition-fast),
                padding-left var(--transition-fast);
}
.et-nav-link i {
    font-size: 0.48rem;
    color: var(--color-gold-dark);
    flex-shrink: 0;
    width: 10px;
    text-align: center;
    transition: transform var(--transition-fast), color var(--transition-fast);
}
.et-nav-link:hover {
    color: var(--color-white);
    padding-left: calc(var(--spacing-2) + 6px);
}
.et-nav-link:hover i {
    transform: translateX(2px);
    color: var(--color-gold);
}

/* Gold accent link */
.footer-nav-gold {
    color: var(--color-gold-light) !important;
    font-weight: 500;
}
.footer-nav-gold i { color: var(--color-gold) !important; }

/* Blue accent — Sustainability */
.footer-nav-green {
    color: var(--color-green-light) !important;
    opacity: 0.85;
}
.footer-nav-green:hover { opacity: 1 !important; }

/* Compact variant */
.footer-nav-compact .et-nav-link {
    font-size: 0.77rem;
    padding: 3px var(--spacing-2);
}


/* ============================================================
   10. TOUR CATEGORIES
   ============================================================ */
.et-tour-cat { margin-bottom: var(--spacing-4); }

.et-ftc-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--spacing-2);
    padding-bottom: var(--spacing-1);
    border-bottom: 1px solid rgba(255,214,0,0.14);
}

.et-view-all-tours {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    margin-top: var(--spacing-3);
    padding: var(--spacing-2) var(--spacing-4);
    background: rgba(255,214,0,0.08);
    border: 1px solid rgba(255,214,0,0.20);
    border-radius: var(--radius-full);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--color-gold-light);
    text-decoration: none;
    transition: all var(--transition-fast);
}
.et-view-all-tours:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-navy-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}


/* ============================================================
   11. BUSINESS HOURS CARD
   ============================================================ */
.et-hours-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-xl);
    padding: var(--spacing-4);
    margin-bottom: var(--spacing-5);
}

.fh-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-2) 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.fh-row:last-of-type { border-bottom: none; }

.fh-day {
    font-size: 0.77rem;
    color: var(--color-white-55);
    font-weight: 500;
}
.fh-time {
    font-size: 0.77rem;
    color: var(--color-white-80);
    font-weight: 600;
}

.et-emergency {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    margin-top: var(--spacing-3);
    padding: var(--spacing-2) var(--spacing-3);
    background: rgba(255,214,0,0.06);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.73rem;
    color: var(--color-gold-light);
    flex-wrap: wrap;
}
.et-emergency i { font-size: 0.68rem; flex-shrink: 0; }
.et-emergency strong { color: var(--color-gold); }


/* ============================================================
   12. TRUST BADGES
   ============================================================ */
.et-trust-section { margin-bottom: var(--spacing-5); }

.et-trust-title {
    font-family: var(--font-primary);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--color-white-45);
    margin: 0 0 var(--spacing-3);
}

.et-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-1-5);
}

.et-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px var(--spacing-2-5);
    background: rgba(255,214,0,0.06);
    border: 1px solid rgba(255,214,0,0.16);
    border-radius: var(--radius-full);
    font-size: 0.64rem;
    font-weight: 600;
    color: var(--color-gold-light);
}
.et-trust-badge i { font-size: 0.56rem; color: var(--color-gold); }

.et-trust-adventure {
    background: rgba(255,214,0,0.09);
    border-color: rgba(255,214,0,0.26);
}

/* Luxury highlight badge */
.et-trust-luxury {
    background: rgba(255,214,0,0.10);
    border-color: rgba(255,214,0,0.30);
    color: var(--color-gold);
}
.et-trust-luxury i { color: var(--color-gold); }


/* ============================================================
   13. NEWSLETTER
   ============================================================ */
.et-newsletter { }

.et-newsletter-title {
    font-family: var(--font-primary);
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-white-65);
    margin: 0 0 var(--spacing-2);
}

.et-newsletter-sub {
    font-size: 0.74rem;
    color: var(--color-white-45);
    margin: 0 0 var(--spacing-3);
    line-height: var(--leading-relaxed);
}

.et-fn-wrap {
    display: flex;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: border-color var(--transition-fast),
                box-shadow   var(--transition-fast);
}
.et-fn-wrap:focus-within {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px var(--color-gold-glow-sm);
}

.et-fn-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: none;
    outline: none;
    padding: var(--spacing-2) var(--spacing-4);
    font-family: var(--font-primary);
    font-size: 0.79rem;
    color: var(--color-white-80);
    min-width: 0;
}
.et-fn-input::placeholder { color: var(--color-white-28, rgba(255,255,255,0.28)); }

.et-fn-btn {
    background: var(--gradient-gold);
    border: none;
    padding: 0 var(--spacing-4);
    color: var(--color-navy-deep);
    font-size: 0.82rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition-fast);
}
.et-fn-btn:hover { background: var(--gradient-gold-hover); }

.et-fn-success {
    font-size: 0.73rem;
    color: var(--color-green-light);
    margin-top: var(--spacing-2);
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}


/* ============================================================
   14. COPYRIGHT BAR
   ============================================================ */
.et-footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: var(--spacing-4) 0;
    background: rgba(0,0,0,0.20);
}

.et-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-4);
    flex-wrap: wrap;
}

.et-copyright {
    font-size: 0.73rem;
    color: var(--color-white-35);
    margin: 0;
}

.et-dev-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}
.et-dev-link:hover { color: var(--color-gold-light); }

.et-legal-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    flex-wrap: wrap;
}

.et-legal-link {
    font-size: 0.73rem;
    color: var(--color-white-35);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.et-legal-link:hover { color: var(--color-gold); }

.footer-legal-sep {
    color: var(--color-white-18);
    font-size: 0.68rem;
}


/* ============================================================
   15. BACK TO TOP
   ============================================================ */
.et-back-top {
    position: fixed;
    bottom: 104px;
    right: 24px;
    width: 42px;
    height: 42px;
    background: var(--color-navy);
    border: 1.5px solid rgba(255,214,0,0.45);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 0.82rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.30s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}
.et-back-top.btt-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.et-back-top:hover {
    background: var(--color-gold);
    color: var(--color-navy-deep);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-gold);
}


/* ============================================================
   16. WHATSAPP WIDGET
   Standard WA colours preserved — brand requirement
   ============================================================ */
.et-wa-widget {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 1020;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.et-wa-fab {
    position: relative;
    width: var(--wa-fab-size, 58px);
    height: var(--wa-fab-size, 58px);
    border-radius: 50%;
    background: #25d366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37,211,102,0.45);
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    order: 2;
}
.et-wa-fab:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 10px 35px rgba(37,211,102,0.55);
}

.suv-wa-fab-icon {
    font-size: 1.6rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.suv-wa-badge {
    position: absolute;
    top: -2px; right: -2px;
    width: 20px; height: 20px;
    background: var(--color-error, #c0392b);
    border-radius: 50%;
    font-family: var(--font-primary);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-white);
    transition: opacity 0.25s;
}
.suv-wa-badge.badge-hidden { opacity: 0; pointer-events: none; }

.et-wa-pulse {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.5);
    animation: et-wa-pulse-anim 2.2s ease-out infinite;
    pointer-events: none;
}
@keyframes et-wa-pulse-anim {
    0%   { transform: scale(1);   opacity: 0.8; }
    70%  { transform: scale(1.4); opacity: 0;   }
    100% { transform: scale(1.4); opacity: 0;   }
}

/* WA Popup */
.et-wa-popup {
    order: 1;
    width: var(--wa-popup-width, 320px);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 16px 50px rgba(30,58,95,0.25),
                0 4px 12px rgba(30,58,95,0.14);
    margin-bottom: var(--spacing-3);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transform-origin: bottom right;
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.et-wa-popup.wa-popup-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.et-wa-header {
    background: #075e54;
    padding: var(--spacing-3) var(--spacing-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.suv-wa-agent {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}
.suv-wa-agent-avatar {
    position: relative;
    flex-shrink: 0;
}
.et-wa-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--color-white);
    padding: 2px;
}
.suv-wa-online-dot {
    position: absolute;
    bottom: 1px; right: 1px;
    width: 11px; height: 11px;
    background: #4caf50;
    border-radius: 50%;
    border: 2px solid #075e54;
}

.suv-wa-agent-name {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.90rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.1;
}
.suv-wa-agent-status {
    display: flex;
    align-items: center;
    gap: 5px;
}
.suv-wa-status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4caf50;
    flex-shrink: 0;
    animation: et-status-pulse 2s ease infinite;
}
@keyframes et-status-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}
#suv-wa-status-text {
    font-family: var(--font-primary);
    font-size: 0.70rem;
    color: rgba(255,255,255,0.75);
}

.et-wa-close {
    background: rgba(255,255,255,0.14);
    border: none;
    border-radius: 50%;
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-white);
    font-size: 0.75rem;
    transition: background var(--transition-fast);
}
.et-wa-close:hover { background: rgba(255,255,255,0.25); }

.et-wa-body {
    background: #e5ddd5;
    padding: var(--spacing-4);
    min-height: 120px;
}
.suv-wa-date-chip {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 0.65rem;
    color: rgba(0,0,0,0.45);
    background: rgba(255,255,255,0.70);
    border-radius: var(--radius-full);
    padding: 2px 10px;
    margin: 0 auto var(--spacing-3);
    display: flex;
    justify-content: center;
    width: fit-content;
}
.et-wa-bubble {
    display: inline-block;
    background: var(--color-white);
    border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
    padding: var(--spacing-3);
    font-family: var(--font-primary);
    font-size: 0.82rem;
    color: #333;
    line-height: var(--leading-relaxed);
    max-width: 90%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.12);
}
.suv-wa-msg-time {
    display: block;
    font-size: 0.62rem;
    color: rgba(0,0,0,0.40);
    margin-top: 4px;
    padding-left: 2px;
}

.et-wa-replies {
    padding: var(--spacing-3);
    background: var(--color-white);
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}
.suv-wa-qr-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-3);
    background: none;
    border: 1px solid #25d366;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.77rem;
    font-weight: 500;
    color: #075e54;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
    width: 100%;
}
.suv-wa-qr-btn i { font-size: 0.73rem; color: #25d366; flex-shrink: 0; }
.suv-wa-qr-btn:hover { background: #25d366; color: var(--color-white); }
.suv-wa-qr-btn:hover i { color: var(--color-white); }

.et-wa-input-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3);
    background: var(--color-white);
    border-top: 1px solid #e0e0e0;
}
.et-wa-input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: var(--radius-full);
    padding: var(--spacing-2) var(--spacing-3);
    font-family: var(--font-primary);
    font-size: 0.82rem;
    color: #333;
    outline: none;
    transition: border-color var(--transition-fast);
    min-width: 0;
}
.et-wa-input:focus { border-color: #25d366; }
.et-wa-input::placeholder { color: #aaa; }
.et-wa-send {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #25d366;
    border: none;
    color: var(--color-white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}
.et-wa-send:hover { background: #128c7e; transform: scale(1.08); }


/* ============================================================
   17. RESPONSIVE
   ============================================================ */

/* 1400px: tighten columns */
@media (max-width: 1400px) {
    .et-footer-grid {
        grid-template-columns: 1.8fr 1fr 1.5fr 1.2fr;
        gap: var(--spacing-6);
    }
}

/* 1200px: 2-col, brand spans full */
@media (max-width: 1200px) {
    .et-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-8);
    }
    .et-col-brand {
        grid-column: 1 / -1;
    }
    .et-footer-desc { max-width: 100%; }
    .et-stats-row { max-width: 480px; }
}

/* 768px: single column */
@media (max-width: 768px) {
    .et-footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    .et-footer-body { padding: var(--spacing-10) 0 var(--spacing-6); }
    .et-footer-container { padding: 0 var(--spacing-4); }
    .et-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--spacing-3);
    }
    .et-wa-popup { width: 290px; }
    .et-back-top { bottom: 94px; right: 16px; }
    .et-wa-widget { bottom: 20px; right: 16px; }
}

/* 480px */
@media (max-width: 480px) {
    .et-stat-sep { display: none; }
    .et-stat { flex: 0 0 40%; }
    .et-stats-row { flex-wrap: wrap; gap: var(--spacing-3); }
    .et-legal-links { justify-content: center; }
}


/* ============================================================
   BACKWARD COMPAT — legacy class names still resolve
   ============================================================ */
.erazen-footer            { }
.footer-gold-divider       { }
.footer-body               { }
.footer-container          { }
.footer-grid               { }
.footer-col-title          { }
.footer-logo-wrap          { }
.footer-logo-img           { }
.footer-brand-text         { }
.footer-brand-name         { }
.footer-brand-tagline      { }
.footer-description        { }
.footer-stats-row          { }
.footer-stat               { }
.fstat-num                 { }
.fstat-suffix              { }
.fstat-label               { }
.footer-stat-sep           { }
.footer-contact-cards      { }
.footer-contact-card       { }
.footer-address-card       { }
.fcc-icon                  { }
.footer-socials            { }
.footer-social-icon        { }
.footer-social-youtube     { }
.footer-nav-list           { }
.footer-nav-link           { }
.footer-nav-compact        { }
.footer-tour-category      { }
.ftc-label                 { }
.footer-view-all-tours     { }
.footer-hours-card         { }
.footer-trust-section      { }
.footer-trust-title        { }
.footer-trust-badges       { }
.footer-trust-badge        { }
.footer-newsletter         { }
.footer-newsletter-title   { }
.footer-newsletter-sub     { }
.fn-input-wrap             { }
.fn-input                  { }
.fn-submit-btn             { }
.fn-success                { }
.footer-bottom-bar         { }
.footer-bottom-inner       { }
.footer-copyright          { }
.footer-dev-link           { }
.footer-legal-links        { }
.footer-legal-link         { }
.footer-legal-sep          { }
.footer-back-top           { }
.suv-wa-widget             { }
.suv-wa-fab                { }
.suv-wa-fab-icon           { }
.suv-wa-badge              { }
.suv-wa-pulse              { }
.suv-wa-popup              { }
.suv-wa-popup-header       { }
.suv-wa-agent              { }
.suv-wa-agent-avatar       { }
.suv-wa-avatar-img         { }
.suv-wa-online-dot         { }
.suv-wa-agent-name         { }
.suv-wa-agent-status       { }
.suv-wa-status-dot         { }
.suv-wa-close              { }
.suv-wa-body               { }
.suv-wa-date-chip          { }
.suv-wa-message            { }
.suv-wa-msg-in             { }
.suv-wa-bubble             { }
.suv-wa-msg-time           { }
.suv-wa-quick-replies      { }
.suv-wa-qr-btn             { }
.suv-wa-input-row          { }
.suv-wa-input              { }
.suv-wa-send-btn           { }
