/* =============================================
   CURATE VIAJANDO LLC — MILDRED COLON
   Travel Agent Website · Nelson.travel style
   ============================================= */

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Montserrat', sans-serif;
    color: #2a2a2a;
    background: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s; }

/* ----- CSS VARIABLES ----- */
:root {
    --navy:       #1a2637;
    --navy-mid:   #1f2d40;
    --navy-light: #243347;
    --gold:       #b8955a;
    --gold-hover: #c9a66b;
    --sage:       #7a9e8c;
    --sage-light: #dde8e4;
    --cream:      #faf7f2;
    --cream-dark: #ede8de;
    --linen:      #f2ede5;
    --text:       #2c2824;
    --text-mid:   #6a5f54;
    --text-light: #9a8f84;
    --white:      #ffffff;
    --border:     rgba(44,40,36,0.1);
    --shadow:     0 2px 16px rgba(44,40,36,0.07);
    --shadow-lg:  0 8px 40px rgba(44,40,36,0.12);
    --radius:     2px;
    --radius-lg:  6px;
    --ease:       0.3s ease;
    --max-w:      1200px;
    --pad-sec:    100px;
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { color: var(--text-mid); line-height: 1.8; }

.section-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.75rem;
}
.section-label.light { color: rgba(255,255,255,0.7); }
.section-title { margin-bottom: 1.25rem; }
.section-title.light { color: var(--white); }
.section-text { max-width: 560px; }

/* Decorative heading rule */
.section-tag {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}
.section-tag::after {
    content: '';
    flex: 1;
    max-width: 48px;
    height: 1px;
    background: var(--sage);
    display: inline-block;
}
.section-tag.light::after { background: rgba(255,255,255,0.35); }

/* ----- LAYOUT HELPERS ----- */
.section-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}
section { padding: var(--pad-sec) 0; }
.bg-navy  { background: var(--navy); }
.bg-cream { background: var(--cream); }

/* ----- BUTTONS ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--ease);
    white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,165,90,0.4); }

.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-2px); }

.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-light-outline { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.8); backdrop-filter: blur(4px); }
.btn-light-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); font-size: 0.68rem; padding: 0.45rem 1rem; border-radius: var(--radius); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn-xs  { padding: 0.4rem 0.9rem; font-size: 0.65rem; }
.btn-lg  { padding: 1rem 2.5rem; font-size: 0.78rem; }
.btn-full { width: 100%; justify-content: center; }

/* ----- HEADER ----- */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
    padding: 1.5rem 0;
}
#site-header.scrolled {
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0,0,0,0.09), 0 4px 16px rgba(44,40,36,0.07);
    padding: 0.9rem 0;
}
#site-header.scrolled .logo-main { color: var(--text); }
#site-header.scrolled .logo-sub  { color: var(--sage); }
#site-header.scrolled .main-nav a { color: var(--text-mid); }
#site-header.scrolled .main-nav a:hover { color: var(--gold); }
#site-header.scrolled .nav-contact-btn { background: var(--navy) !important; color: var(--white) !important; }
#site-header.scrolled .nav-contact-btn:hover { background: var(--navy-mid) !important; }
#site-header.scrolled .header-contact-btn { border-color: var(--navy); color: var(--navy); }
#site-header.scrolled .header-contact-btn:hover { background: var(--navy); color: var(--white); }
#site-header.scrolled .mobile-menu-btn span { background: var(--text); }
.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    position: relative;
}
.logo { flex-shrink: 0; }
.logo-main {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}
.logo-sub {
    display: block;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.main-nav a {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}
.main-nav a:hover { color: var(--gold); }
.nav-contact-btn {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius);
}
.nav-contact-btn:hover { background: var(--gold-hover) !important; color: var(--navy) !important; }
/* ----- HEADER RIGHT: logo + animated contact btn ----- */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-shrink: 0;
}
.header-contact-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    height: 36px;
    min-width: 118px;
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}
.header-contact-btn:hover { background: var(--gold); color: var(--navy); }
.header-contact-btn:active { transform: scale(0.96); }
.hcb-default,
.hcb-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.hcb-default { transform: translateY(0); }
.hcb-hover   { transform: translateY(110%); }
.header-contact-btn:hover .hcb-default { transform: translateY(-110%); }
.header-contact-btn:hover .hcb-hover   { transform: translateY(0); }
.header-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.header-logo-img {
    height: 56px;
    width: auto;
    display: block;
    transition: opacity var(--ease), transform var(--ease);
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.18));
}
.header-logo-link:hover .header-logo-img {
    opacity: 0.88;
    transform: scale(1.05);
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--ease);
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ----- HERO ----- */
#hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* === Animated nano banner background === */
.hero-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hbb-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        #0d1b2a 0%,
        #1a3040 30%,
        #0f2233 60%,
        #1a2637 100%
    );
}

/* Sliding destination photo panels */
.hbb-panels {
    position: absolute;
    inset: 0;
    display: flex;
}
.hbb-panel {
    flex: 1;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    animation: panelBreath 16s ease-in-out infinite;
    transition: opacity 0.5s ease;
}
.hbb-panel:nth-child(2) { animation-delay: 4s; }
.hbb-panel:nth-child(3) { animation-delay: 8s; }
.hbb-panel:nth-child(4) { animation-delay: 12s; }
.hbb-panel span { display: none; }

@keyframes panelBreath {
    0%, 100% { opacity: 0.18; transform: scale(1); }
    25%       { opacity: 0.32; transform: scale(1.04); }
    50%       { opacity: 0.22; transform: scale(1); }
}

/* Floating glowing orbs */
.hbb-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 20s ease-in-out infinite;
}
.hbb-orb-1 {
    width: 420px; height: 420px;
    background: rgba(122,158,140,0.18);
    top: -120px; left: -80px;
    animation-duration: 22s;
}
.hbb-orb-2 {
    width: 300px; height: 300px;
    background: rgba(184,149,90,0.15);
    bottom: -60px; right: 10%;
    animation-duration: 18s;
    animation-delay: -7s;
}
.hbb-orb-3 {
    width: 260px; height: 260px;
    background: rgba(26,80,140,0.2);
    top: 30%; right: -60px;
    animation-duration: 25s;
    animation-delay: -12s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -40px) scale(1.08); }
    66%       { transform: translate(-20px, 30px) scale(0.94); }
}

/* Dark overlay on top of panels */
.hbb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13,27,42,0.55) 0%,
        rgba(13,27,42,0.38) 40%,
        rgba(13,27,42,0.72) 100%
    );
}

/* Remove old hero-bg/img styles (kept for reference, no longer used) */
.hero-bg { position: absolute; inset: 0; overflow: hidden; }

/* Hero slideshow */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transform: scale(1) translateX(0);
    transition: opacity 1.8s ease-in-out, transform 2s ease-in-out;
}
.hero-slide img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-slide.active {
    opacity: 1;
    animation: slideZoom 12s ease-out forwards;
}
@keyframes slideZoom {
    from { transform: scale(1.1) translateX(1.5%); }
    to   { transform: scale(1) translateX(-0.5%); }
}

/* Destination label badge on slide change */
.hero-slide-label {
    position: absolute;
    bottom: 5.5rem;
    right: 2rem;
    z-index: 3;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 0.6s ease;
}
.hero-slide-label.visible { opacity: 1; }

/* Slide progress dots */
.hero-dots {
    position: absolute;
    bottom: 2.5rem;
    right: 2rem;
    z-index: 3;
    display: flex;
    gap: 6px;
}
.hero-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26,38,55,0.22) 0%,
        rgba(26,38,55,0.55) 48%,
        rgba(26,38,55,0.78) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 0 2rem;
    color: var(--white);
    margin-top: 80px;
}
.hero-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.hero-title {
    color: var(--white);
    font-size: clamp(3.8rem, 8vw, 7rem);
    line-height: 1.05;
    margin-bottom: 0.6rem;
    text-shadow: 0 4px 32px rgba(0,0,0,0.3);
    justify-content: center;
    text-align: center;
    letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: rgba(255,255,255,0.88);
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3em;
}
.hero-tagline em {
    display: contents;
    color: var(--gold);
    font-style: italic;
}
.tl-word {
    display: inline-block;
    transform: translateX(-200vw);
}
.tl-from-right {
    transform: translateX(200vw);
}
.tl-word.tl-animate {
    animation: tlFlyIn 4.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.tl-from-right.tl-animate {
    animation: tlFlyInRight 4.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes tlFlyIn {
    from { transform: translateX(-200vw); }
    to   { transform: translateX(0); }
}
@keyframes tlFlyInRight {
    from { transform: translateX(200vw); }
    to   { transform: translateX(0); }
}
.hero-tagline em .tl-word { color: var(--gold); }
.hero-title-sub {
    font-size: 0.22em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    vertical-align: middle;
    margin-left: 0.5em;
    white-space: nowrap;
    display: inline;
}
.hero-brand {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.78;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.hero-languages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.76rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.05em;
}
.lang-divider { opacity: 0.4; }
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.7);
    animation: bounce 2.5s infinite;
    transition: color var(--ease);
}
.hero-scroll svg { width: 32px; height: 32px; }
.hero-scroll:hover { color: var(--gold); }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}

/* ----- TRUST BAR ----- */
#trust-bar { background: var(--white); border-bottom: 1px solid var(--border); }

/* Destination trio photo strip */
.dest-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 240px;
}
.dest-trio-tile {
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.5s ease;
}
.dest-trio-tile > img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.dest-trio-tile:hover { transform: scale(1.015); z-index: 1; }
.dest-trio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,20,20,0.72) 0%, rgba(20,20,20,0.15) 60%, transparent 100%);
    transition: background 0.4s ease;
}
.dest-trio-tile:hover .dest-trio-overlay {
    background: linear-gradient(to top, rgba(20,20,20,0.82) 0%, rgba(20,20,20,0.25) 60%, transparent 100%);
}
.dest-trio-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem 1.75rem;
    color: var(--white);
}
.dest-trio-region {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
    padding: 0.2rem 0.65rem;
    border: 1px solid rgba(184,149,90,0.5);
    border-radius: 100px;
}
.dest-trio-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin: 0.3rem 0 0.25rem;
    line-height: 1.2;
}
.dest-trio-content p {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    line-height: 1.4;
    margin: 0;
}

/* Dividing line between photo strip and badges */
.trust-badges {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.15rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid var(--border);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.4rem 1.75rem;
}
.trust-item strong { display: block; font-size: 0.72rem; font-weight: 700; color: var(--text); }
.trust-item span   { display: block; font-size: 0.6rem; color: var(--text-light); margin-top: 1px; }
.trust-icon { font-size: 1.2rem; }
.trust-sep { width: 1px; height: 26px; background: rgba(0,0,0,0.1); }

/* ----- ABOUT ----- */
#about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 5rem;
    align-items: start;
    padding-top: 0;
}
.about-image-col { position: sticky; top: 120px; }
.about-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}
.about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-img-frame:hover img { transform: scale(1.04); }
.about-badge-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.25rem 1.4rem;
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border: 1px solid var(--cream-dark);
    border-left: 3px solid var(--sage);
}
.badge-agency-name {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--sage);
    text-transform: uppercase;
}
.badge-network-name {
    font-size: 0.76rem;
    color: var(--text-mid);
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

/* Compact certifications under photo */
.about-certs-strip {
    margin-top: 1rem;
    padding: 1.2rem 1.4rem 1rem;
    background: var(--navy);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}
.about-certs-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--sage));
}
.about-certs-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.85;
}
.about-certs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1rem;
    margin-bottom: 0.9rem;
}
.acg-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.acg-dot {
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 0.35rem;
    opacity: 0.85;
}
.acg-name {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    margin-bottom: 0.15rem;
}
.acg-tier {
    display: inline-block;
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage);
    line-height: 1;
}
.acg-also {
    font-size: 0.63rem;
    color: rgba(255,255,255,0.38);
    font-style: italic;
    line-height: 1.5;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.about-text-col { padding-top: 0.5rem; }
.about-text-col p { margin-bottom: 1.25rem; font-size: 1rem; }
.about-adventures { margin: 1.5rem 0; }
.adventures-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 0.7rem;
}
.adventure-tags { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.adventure-tags span {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--linen);
    border-radius: var(--radius);
    border: 1px solid var(--cream-dark);
}
.stat { text-align: center; }
.stat-n {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--sage);
    line-height: 1;
}
.stat-l {
    display: block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-top: 0.25rem;
}
.about-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ----- DEALS (dark section) ----- */
#deals {
    padding: var(--pad-sec) 0;
    background-color: var(--cream);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='80'%3E%3Cg fill='%237a9e8c' opacity='0.12'%3E%3Cellipse cx='21' cy='46' rx='8' ry='13' transform='rotate(-18 21 46)'/%3E%3Cellipse cx='39' cy='46' rx='8' ry='13' transform='rotate(18 39 46)'/%3E%3Cellipse cx='30' cy='28' rx='6' ry='10'/%3E%3Cellipse cx='30' cy='16' rx='4' ry='7'/%3E%3Ccircle cx='30' cy='9' r='3'/%3E%3Crect x='29' y='46' width='2' height='22' rx='1'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 80px;
}
.section-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}
.section-sub-light {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-top: 0.5rem;
}
.deals-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 0.6rem 1.4rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--white);
    color: var(--text-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--ease);
}
.tab-btn:hover, .tab-btn.active {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    min-height: 200px;
}
.deal-card {
    background: linear-gradient(155deg, #064e6b 0%, #0b8fa8 55%, #12b5cc 100%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(6,78,107,0.35);
    transition: transform var(--ease), box-shadow var(--ease);
}
.deal-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(6,78,107,0.55); }
.deal-card-img { position: relative; height: 175px; overflow: hidden; }
.deal-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.deal-card:hover .deal-card-img img { transform: scale(1.06); }
.deal-badge {
    position: absolute;
    top: 0.9rem; left: 0.9rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    text-transform: uppercase;
}
.deal-card-body { padding: 1.2rem 1.25rem; }
.deal-line {
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.deal-offer {
    font-size: 0.85rem;
    color: #ffffff;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.deal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    background: rgba(0,0,0,0.15);
    transition: all var(--ease);
}
.deal-link:hover { background: var(--gold); color: var(--navy); }
.deals-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    padding: 4rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}
.deals-footer-row {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
.deals-note {
    font-size: 0.8rem;
    color: var(--text-light);
    max-width: 580px;
    line-height: 1.7;
}

/* ----- DESTINATIONS ----- */
#destinations { background: var(--white); }
#destinations .section-center { margin-bottom: 2.5rem; }
.dest-track {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
}
.dest-track::-webkit-scrollbar { display: none; }
.dest-card {
    position: relative;
    flex: 0 0 190px;
    height: 290px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform var(--ease);
}
.dest-card:hover { transform: scale(1.025); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover img { transform: scale(1.06); }
.dest-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,38,55,0.88) 0%, transparent 52%);
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.dest-cat {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}
.dest-info h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.45rem; }
.dest-link {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    opacity: 0;
    transform: translateY(6px);
    transition: all var(--ease);
}
.dest-card:hover .dest-link { opacity: 1; transform: translateY(0); color: var(--gold); }
.dest-controls {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.75rem;
}
.dest-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dest-arrow:hover { background: var(--gold); color: var(--navy); }

/* ----- CERTIFICATIONS ----- */
#certifications { padding: var(--pad-sec) 0; }
.certs-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 5rem;
    align-items: start;
}
.certs-text { padding-top: 0.5rem; }
.certs-text p { margin-bottom: 2rem; }
.certs-list { display: flex; flex-direction: column; gap: 0.9rem; }
.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow);
    transition: transform var(--ease);
}
.cert-item:hover { transform: translateX(4px); }
.cert-item.cert-plus { border-left-color: var(--sage); }
.cert-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.cert-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.2rem;
}
.cert-item span { font-size: 0.76rem; color: var(--text-mid); line-height: 1.55; }

/* ----- CTA BAND ----- */
#cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 4rem 0;
}
.cta-band-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.cta-band-text h2 { color: var(--white); font-size: 2rem; margin-bottom: 0.5rem; }
.cta-band-text p  { color: rgba(255,255,255,0.68); }
.cta-band-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ----- CONTACT ----- */
#contact { background: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}
.contact-info { padding-top: 0.5rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 0.85rem; margin: 1.75rem 0; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    background: var(--cream);
    border-radius: var(--radius);
    transition: background var(--ease);
}
.contact-item:hover { background: var(--cream-dark); }
.ci-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 0.2rem;
}
.contact-item span { font-size: 0.82rem; color: var(--text-mid); word-break: break-all; }
.contact-item-book {
    border: 1.5px solid var(--gold);
    background: rgba(184,149,90,0.07);
}
.contact-item-book:hover { background: rgba(184,149,90,0.15); }
.contact-item-book strong { color: var(--gold); }
.contact-item-book span { color: var(--text); }

/* Social media links in contact */
.social-links { margin-top: 1.5rem; }
.social-label {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.85rem;
}
.social-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius);
    font-size: 0.76rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--ease), box-shadow var(--ease), opacity var(--ease);
    letter-spacing: 0.02em;
}
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); opacity: 0.92; }

.social-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}
.social-tiktok {
    background: #010101;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}
.contact-form-box {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.contact-form-box form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.72rem 1rem;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius);
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    transition: border-color var(--ease);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(122,158,140,0.15); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-status {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.84rem;
    display: none;
    margin-top: 0.5rem;
}
.form-status.success { background: #d4edda; color: #155724; display: block; }
.form-status.error   { background: #f8d7da; color: #721c24; display: block; }
.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-mid);
    margin-top: 0.6rem;
    line-height: 1.4;
}
.btn-gold.btn-full { font-size: 1rem; padding: 0.9rem 1.5rem; letter-spacing: 0.02em; }

/* ----- FOOTER ----- */
#site-footer { background: var(--navy); }
.footer-top {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 4rem;
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo .logo-main { color: var(--white); font-size: 1.4rem; }
.footer-logo .logo-sub  { color: var(--gold); }
.footer-bio { font-size: 0.83rem; color: rgba(255,255,255,0.52); line-height: 1.78; margin-bottom: 1.5rem; }
.footer-contacts { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-contacts a { font-size: 0.8rem; color: rgba(255,255,255,0.6); transition: color var(--ease); }
.footer-contacts a:hover { color: var(--gold); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.footer-col a {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.52);
    margin-bottom: 0.55rem;
    transition: color var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.38); }
.footer-bottom a { color: rgba(255,255,255,0.52); transition: color var(--ease); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.footer-legal span { color: rgba(255,255,255,0.2); }
.footer-legal-btn {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.52);
    cursor: pointer;
    transition: color var(--ease);
}
.footer-legal-btn:hover { color: var(--gold); }

/* ----- WHY MILDRED ----- */
#why-mildred {
    background-color: var(--cream);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='80'%3E%3Cg fill='%237a9e8c' opacity='0.08'%3E%3Cellipse cx='21' cy='46' rx='8' ry='13' transform='rotate(-18 21 46)'/%3E%3Cellipse cx='39' cy='46' rx='8' ry='13' transform='rotate(18 39 46)'/%3E%3Cellipse cx='30' cy='28' rx='6' ry='10'/%3E%3Cellipse cx='30' cy='16' rx='4' ry='7'/%3E%3Ccircle cx='30' cy='9' r='3'/%3E%3Crect x='29' y='46' width='2' height='22' rx='1'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 80px;
}
.why-header { margin-bottom: 3.5rem; }
.why-header .section-text { color: var(--text-mid); margin: 0 auto; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.why-card {
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    border-bottom: 3px solid transparent;
    transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.why-card:hover {
    border-bottom-color: var(--sage);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.why-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}
.why-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
    color: var(--text);
}
.why-card p { font-size: 0.88rem; line-height: 1.75; }

/* ----- TESTIMONIALS ----- */
#testimonials {
    padding: var(--pad-sec) 0;
    background-color: var(--linen);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='80'%3E%3Cg fill='%23b8955a' opacity='0.07'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='%23b8955a' stroke-width='1.2' opacity='0.15'/%3E%3Ccircle cx='30' cy='30' r='13' fill='none' stroke='%23b8955a' stroke-width='1' opacity='0.12'/%3E%3Ccircle cx='30' cy='30' r='5' opacity='0.1'/%3E%3Ccircle cx='30' cy='11' r='3' opacity='0.08'/%3E%3Ccircle cx='30' cy='49' r='3' opacity='0.08'/%3E%3Ccircle cx='11' cy='30' r='3' opacity='0.08'/%3E%3Ccircle cx='49' cy='30' r='3' opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 80px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: transform var(--ease), box-shadow var(--ease);
}
.testi-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.testi-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.testi-quote {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.82;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.testi-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--sage-light);
    color: var(--sage);
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.82rem; color: var(--text); font-family: 'Montserrat', sans-serif; }
.testi-author span   { display: block; font-size: 0.68rem; color: var(--text-light); margin-top: 2px; }
.testi-avoya-link {
    text-align: center;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.testi-avoya-link p { font-size: 0.85rem; color: var(--text-light); }

/* ----- FLOATING WHATSAPP BUTTON ----- */
#whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    background: #25d366;
    color: #fff;
    border-radius: 100px;
    padding: 0.8rem 1.3rem 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 28px rgba(37,211,102,0.4);
    transition: transform var(--ease), box-shadow var(--ease), bottom 0.45s ease;
    text-decoration: none;
}
#whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
#whatsapp-float svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ----- BACK TO TOP ----- */
#back-to-top {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    z-index: 900;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--ease), transform var(--ease), background var(--ease), bottom 0.45s ease;
    pointer-events: none;
}
#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
#back-to-top:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
#back-to-top svg { width: 18px; height: 18px; }

/* ----- SOCIAL ICONS IN FOOTER ----- */
.footer-social {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55);
    transition: all var(--ease);
    flex-shrink: 0;
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}
.footer-social svg { width: 15px; height: 15px; }

/* ----- DEAL SKELETON LOADING ----- */
.deal-skeleton {
    background: linear-gradient(155deg, #064e6b 0%, #0b8fa8 55%, #12b5cc 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(6,78,107,0.25);
}
.skel-img { height: 175px; background: rgba(0,0,0,0.2); }

/* ─── Deals live-sync status bar ─────────────────────────── */
.deals-sync-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    color: var(--navy);
    opacity: 0.72;
    padding: 0 0 14px;
    transition: opacity 0.4s;
}
.deals-sync-bar a { color: var(--gold); text-decoration: none; font-weight: 600; }
.deals-sync-bar a:hover { text-decoration: underline; }
.sync-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #aaa;
    flex-shrink: 0;
}
.sync-dot.live   { background: var(--gold); box-shadow: 0 0 0 3px rgba(184,149,90,0.30); }
.sync-dot.cached { background: var(--gold); }
[data-state="syncing"] .sync-dot { background: #aaa; animation: pulse 1s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.skel-body { padding: 1.2rem 1.25rem; }
.skel-line {
    height: 10px;
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 0.75rem;
    animation: shimmer 1.4s infinite;
}
.skel-line.w-40 { width: 40%; }
.skel-line.w-90 { width: 90%; }
.skel-line.w-70 { width: 70%; }
.skel-line.btn  { width: 38%; height: 28px; margin-top: 0.5rem; }
@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1; }
}

/* Why/Testimonials responsive is handled in the main RESPONSIVE block below */

/* ----- DEAL CARD ENHANCEMENTS ----- */
.deal-price-tag {
    position: absolute;
    bottom: 0.9rem; right: 0.9rem;
    background: rgba(26,38,55,0.92);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}
.deal-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.deal-stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.deal-rating-num {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--white);
}
.deal-review-count {
    font-size: 0.66rem;
    color: rgba(255,255,255,0.80);
}
.deal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 0.85rem;
}
.deal-meta-item {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.90);
    white-space: nowrap;
}
.deal-activity {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.55rem 0.75rem;
    background: rgba(0,0,0,0.18);
    border-radius: var(--radius);
    border: 1px dashed rgba(255,255,255,0.18);
    margin-bottom: 1rem;
    font-size: 0.7rem;
}
.deal-activity-carts {
    color: #ffffff;
}
.deal-activity-carts strong {
    color: var(--gold);
}
.deal-activity-booked {
    color: #ffffff;
}
.deal-activity-booked strong {
    color: #ffd166;
}

/* ----- LIVE ACTIVITY BAR ----- */
#live-activity-bar {
    margin-bottom: 1.75rem;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.activity-bar-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.25rem;
    flex-wrap: wrap;
}
.activity-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4444;
    animation: pulse-glow 1.5s infinite;
    flex-shrink: 0;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,68,68,0.6); }
    50%      { box-shadow: 0 0 0 6px rgba(255,68,68,0); }
}
.activity-label {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #ff4444;
    background: rgba(255,68,68,0.12);
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    flex-shrink: 0;
}
.activity-stat {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.6);
}
.activity-stat strong {
    color: var(--white);
    font-weight: 700;
}
.activity-divider {
    color: rgba(255,255,255,0.2);
    font-size: 0.65rem;
}

/* ----- TOAST NOTIFICATION ----- */
#activity-toast {
    position: fixed;
    bottom: 6.5rem;
    left: 2rem;
    z-index: 950;
    max-width: 340px;
    width: 100%;
    opacity: 0;
    transform: translateX(-30px) translateY(10px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}
#activity-toast.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
    pointer-events: auto;
}
.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.12);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 0.9rem 1rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.toast-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.toast-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
    min-width: 0;
}
.toast-info strong {
    font-size: 0.76rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}
.toast-info span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}
.toast-info em {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
}
.toast-info small {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.35);
    margin-top: 0.1rem;
}
.toast-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.35);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    transition: color var(--ease);
}
.toast-close:hover { color: var(--white); }

/* ----- COUNTER POP ANIMATION ----- */
.counter-pop {
    animation: counter-pop-anim 0.4s ease;
}
@keyframes counter-pop-anim {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.3); color: var(--gold); }
    100% { transform: scale(1); }
}

/* ----- FADE IN ANIMATION ----- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE — COMPLETE MOBILE SYSTEM
   Tested breakpoints: 1100px / 768px / 480px / 360px
   ============================================= */

/* ----- TAP HIGHLIGHT ----- */
a, button { -webkit-tap-highlight-color: transparent; }

/* ----- TABLET (≤ 1100px) ----- */
@media (max-width: 1100px) {
    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-col { position: static; max-width: 440px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }

    /* Certifications */
    .certs-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-links { display: none; }

    /* Why grid */
    .why-grid { grid-template-columns: repeat(2, 1fr); }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Dest track — fix the calc() formula breaking below 1232px */
    .dest-track { padding-left: 2rem; padding-right: 2rem; }
}

/* ----- MOBILE (≤ 768px) ----- */
@media (max-width: 768px) {
    :root { --pad-sec: 60px; }

    /* --- Header --- */
    .header-inner { justify-content: space-between; position: relative; }
    .mobile-menu-btn { display: flex; }
    .logo-main { font-size: 1.15rem; }
    .header-contact-btn { display: none; }
    .header-logo-img { height: 46px; }

    /* Mobile nav overlay */
    .main-nav {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        padding-top: env(safe-area-inset-top, 0);   /* notch phones */
        transform: none;   /* reset desktop absolute centering */
    }
    .main-nav.open { display: flex; }
    .main-nav a {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.85);
        padding: 0.6rem 1.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .nav-contact-btn {
        background: var(--gold) !important;
        color: var(--navy) !important;
        border-radius: var(--radius);
    }
    /* Hamburger must stay on top of the overlay */
    .mobile-menu-btn { z-index: 1100; position: relative; }

    /* --- Hero --- */
    #hero {
        height: 100dvh;           /* respects mobile browser chrome */
        min-height: 580px;
    }
    .hero-content { margin-top: 60px; padding: 0 1.5rem; }
    .hero-title { font-size: clamp(2.1rem, 8vw, 3.2rem); }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
    .hero-ctas .btn { justify-content: center; width: 100%; min-height: 52px; }

    /* --- Trust bar --- */
    .dest-trio { height: 180px; }
    .dest-trio-content h3 { font-size: 1rem; }
    .dest-trio-content p { display: none; }
    .trust-badges {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0.85rem 1.25rem;
        -webkit-overflow-scrolling: touch;
        gap: 0;
    }
    .trust-sep { display: none; }
    .trust-item { padding: 0.4rem 1.1rem; flex-shrink: 0; }

    /* --- About --- */
    .about-image-col { position: static !important; }   /* override sticky */
    .about-ctas { flex-direction: column; }
    .about-ctas .btn { justify-content: center; min-height: 48px; }

    /* --- Destinations --- */
    .dest-track {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        touch-action: pan-x;  /* better swipe feel */
    }
    /* Always show the link on touch (no hover state) */
    .dest-link {
        opacity: 1 !important;
        transform: none !important;
        color: var(--gold) !important;
    }
    .dest-card { flex: 0 0 240px; height: 340px; }
    .dest-controls { justify-content: center; }
    .dest-arrow { min-width: 48px; min-height: 48px; }

    /* --- Deals tabs --- */
    .deals-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.25rem;
        gap: 0.4rem;
    }
    .deals-tabs::-webkit-scrollbar { display: none; }
    .tab-btn { flex-shrink: 0; min-height: 44px; }

    /* --- Contact form --- */
    .form-row { grid-template-columns: 1fr; }
    .contact-form-box { padding: 1.5rem 1.25rem; }

    /* --- CTA Band --- */
    .cta-band-inner { flex-direction: column; text-align: center; }
    .cta-band-btns { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
    .cta-band-btns .btn { justify-content: center; width: 100%; min-height: 52px; }

    /* --- Footer --- */
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
    .footer-top { padding: 3rem 1.5rem 2rem; }
    .footer-social { justify-content: flex-start; }
}

/* ----- SMALL MOBILE (≤ 480px) ----- */
@media (max-width: 480px) {
    /* Tighter section padding */
    .section-wrap { padding: 0 1.25rem; }

    /* Stats 2-col stays, looks fine */
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; padding: 1.25rem; }
    .stat-n { font-size: 2rem; }

    /* Deal cards full width */
    .deals-grid { grid-template-columns: 1fr; }

    /* Hero */
    .hero-title { font-size: clamp(1.9rem, 10vw, 2.6rem); }
    .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.18em; }

    /* Logo */
    .logo-main { font-size: 1.05rem; }
    .logo-sub { display: none; }
    .header-logo-img { height: 38px; }

    /* Why grid 1-col */
    .why-grid { grid-template-columns: 1fr; }

    /* Testimonials padding */
    .testi-card { padding: 1.25rem; }

    /* Footer */
    .footer-bio { font-size: 0.8rem; }

    /* Fix header inner gap */
    .header-inner { gap: 0.5rem; }

    /* Dest cards slightly wider on small phones */
    .dest-card { flex: 0 0 220px; height: 310px; }

    /* Contact form box — remove border-radius on very small screens */
    .contact-form-box { border-radius: var(--radius); padding: 1.25rem 1rem; }

    /* WhatsApp — icon only */
    #whatsapp-float span { display: none; }
    #whatsapp-float { padding: 0.9rem; border-radius: 50%; }
    #back-to-top { bottom: 6.5rem; }

    /* Activity bar wraps nicely */
    .activity-bar-inner { gap: 0.4rem 0.6rem; padding: 0.6rem 0.9rem; }
    .activity-divider { display: none; }
    .activity-stat { font-size: 0.68rem; }

    /* Toast smaller on mobile */
    #activity-toast { left: 0.75rem; right: 0.75rem; max-width: none; bottom: 5.5rem; }

    /* Deal activity row wraps */
    .deal-activity { flex-direction: column; gap: 0.3rem; font-size: 0.65rem; }
}

/* ----- VERY SMALL (≤ 360px) ----- */
@media (max-width: 360px) {
    .section-wrap { padding: 0 1rem; }
    .hero-content { padding: 0 1rem; }
    .hero-title { font-size: 1.85rem; }
    .trust-item { padding: 0.4rem 0.85rem; }
    .trust-item strong { font-size: 0.68rem; }
    .btn { padding: 0.8rem 1.4rem; }
    .btn-lg { padding: 0.85rem 1.5rem; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ----- iOS: PREVENT FORM ZOOM (font-size must be ≥ 16px on inputs) ----- */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;   /* 16px — prevents iOS Safari from zooming on focus */
    }
}

/* ----- TOUCH DEVICES: Remove hover-only effects that break on touch ----- */
@media (hover: none) {
    .dest-link { opacity: 1 !important; transform: none !important; color: var(--gold) !important; }
    .why-card:hover { transform: none; box-shadow: none; }
    .deal-card:hover { transform: none; }
    .cert-item:hover { transform: none; }
}

/* =============================================
   PERFORMANCE & ACCESSIBILITY OPTIMIZATIONS
   ============================================= */

/* content-visibility: render below-fold sections only when near viewport.
   contain-intrinsic-size reserves approximate space to prevent scroll jumps. */
#deals, #destinations, #testimonials, #cta-band, #contact, #site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 0 700px;
}

/* Slow / save-data network: hide heavy visual extras */
.perf-slow .hero-waves,
.perf-save .hero-waves { display: none; }
.perf-slow .hero-slide:not(.active),
.perf-save .hero-slide:not(.active) { display: none; }
/* Reduce shadow complexity on slow devices */
.perf-slow .deal-card,
.perf-save .deal-card { box-shadow: none; }

/* Reduced motion: disable all animations & transitions for users who opt out */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    html { scroll-behavior: auto; }
    /* Hero: instant crossfade, no Ken Burns zoom/pan */
    .hero-slide { transition: opacity 0.3s ease; }
    .hero-slide.active { animation: none; transform: scale(1) translateX(0); }
    /* Hide decorative waves */
    .hero-wave-1, .hero-wave-2, .hero-waves { display: none; }
    /* Remove card lift effects */
    .deal-card:hover,
    .testi-card:hover,
    .dest-card:hover { transform: none; }
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 3000;
    background: var(--navy);
    border-top: 2px solid var(--gold);
    padding: 1.1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.4);
    transform: translateY(100%);
    transition: transform 0.45s ease;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-text {
    flex: 1;
    min-width: 260px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
}
.cookie-text strong { color: var(--white); }
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.cookie-btns { display: flex; gap: 0.65rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-accept {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 0.55rem 1.4rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--ease);
}
.cookie-accept:hover { background: var(--gold-hover); }
.cookie-decline {
    background: transparent;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.55rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--ease);
}
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }
@media (max-width: 600px) {
    #cookie-banner { padding: 1rem 1.25rem; }
    .cookie-btns { width: 100%; }
    .cookie-accept, .cookie-decline { flex: 1; justify-content: center; text-align: center; min-height: 44px; }
}

/* Push floating buttons above the cookie banner when it's visible */
body:has(#cookie-banner.visible) #whatsapp-float { bottom: calc(84px + 2rem); }
body:has(#cookie-banner.visible) #back-to-top   { bottom: calc(84px + 5.5rem); }
@media (max-width: 600px) {
    body:has(#cookie-banner.visible) #whatsapp-float { bottom: calc(140px + 1rem); }
    body:has(#cookie-banner.visible) #back-to-top   { display: none; }
}

/* =============================================
   LEGAL MODALS (T&C, Privacy Policy)
   ============================================= */
.legal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,16,26,0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.legal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.legal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 780px;
    width: 100%;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateY(28px);
    transition: transform 0.35s ease;
    box-shadow: 0 28px 80px rgba(0,0,0,0.55);
}
.legal-overlay.open .legal-card { transform: translateY(0); }
.legal-card-header {
    background: var(--navy);
    padding: 1.4rem 2rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.legal-card-header h2 {
    color: var(--white);
    font-size: 1.25rem;
    margin: 0;
}
.legal-card-header span {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.25rem;
    display: block;
}
.legal-close {
    background: rgba(255,255,255,0.12);
    border: none;
    border-radius: 50%;
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--ease);
}
.legal-close:hover { background: rgba(255,255,255,0.25); }
.legal-close svg { width: 15px; height: 15px; stroke: #fff; }
.legal-body {
    overflow-y: auto;
    padding: 2rem;
    flex: 1;
}
.legal-body h3 {
    font-size: 0.9rem;
    color: var(--navy);
    margin: 1.5rem 0 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.legal-body h3:first-child { margin-top: 0; }
.legal-body p {
    font-size: 0.83rem;
    color: var(--text-mid);
    line-height: 1.78;
    margin-bottom: 0.75rem;
}
.legal-body ul {
    padding-left: 1.2rem;
    margin-bottom: 0.75rem;
}
.legal-body ul li {
    font-size: 0.83rem;
    color: var(--text-mid);
    line-height: 1.78;
    margin-bottom: 0.3rem;
}
.legal-footer {
    padding: 1rem 2rem 1.25rem;
    border-top: 1px solid var(--cream-dark);
    text-align: center;
    flex-shrink: 0;
}
.legal-footer p {
    font-size: 0.72rem;
    color: var(--text-light);
}
@media (max-width: 640px) {
    .legal-overlay { padding: 0; align-items: flex-end; }
    .legal-card { border-radius: var(--radius-lg) var(--radius-lg) 0 0; max-height: 92vh; }
    .legal-body { padding: 1.4rem 1.25rem; }
    .legal-card-header { padding: 1.1rem 1.25rem; }
}

/* =============================================
   EXIT WARNING MODAL
   ============================================= */
#exit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,16,26,0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 3500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
#exit-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.exit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 460px;
    width: 100%;
    padding: 2.25rem 2rem 2rem;
    text-align: center;
    transform: scale(0.94);
    transition: transform 0.28s ease;
    box-shadow: 0 24px 70px rgba(0,0,0,0.5);
}
#exit-overlay.open .exit-card { transform: scale(1); }
.exit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.exit-card h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 0.65rem;
}
.exit-card p {
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 0.4rem;
}
.exit-dest {
    display: inline-block;
    font-size: 0.72rem;
    color: var(--text-light);
    background: var(--cream);
    border-radius: var(--radius);
    padding: 0.3rem 0.85rem;
    margin: 0.65rem 0 1.5rem;
    word-break: break-all;
    max-width: 100%;
}
.exit-btns {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.exit-continue {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--ease);
}
.exit-continue:hover { background: var(--navy-mid); }
.exit-cancel {
    background: transparent;
    color: var(--text-mid);
    border: 1.5px solid var(--border);
    padding: 0.75rem 1.4rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--ease);
}
.exit-cancel:hover { border-color: var(--navy); color: var(--navy); }

/* =============================================
   HERO WAVE ANIMATION
   ============================================= */
.hero-waves {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 110px;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}
.hero-wave {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
}
.hero-wave-1 { animation: waveScroll 9s linear infinite; opacity: 0.55; }
.hero-wave-2 { animation: waveScroll 14s linear infinite reverse; opacity: 0.3; }
.hero-wave-3 { animation: waveScroll 6s linear infinite; opacity: 0.2; }
@keyframes waveScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Hero image — subtle float like a ship on water */
.hero-img {
    animation: heroFloat 9s ease-in-out infinite;
    transform-origin: center bottom;
}
@keyframes heroFloat {
    0%, 100% { transform: scale(1.06) translateY(0px); }
    50%       { transform: scale(1.06) translateY(-10px); }
}
/* Keep scroll arrow above waves */
.hero-scroll { z-index: 4; }

/* =============================================
   BOOKING INQUIRY MODAL
   ============================================= */
.booking-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 16, 26, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.booking-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 680px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(32px);
    transition: transform 0.35s ease;
    box-shadow: 0 28px 80px rgba(0,0,0,0.55);
}
.booking-overlay.open .booking-card { transform: translateY(0); }
.booking-close {
    position: absolute;
    top: 0.9rem; right: 0.9rem;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background var(--ease);
}
.booking-close:hover { background: rgba(255,255,255,0.3); }
.booking-close svg { width: 15px; height: 15px; stroke: #fff; }
/* Deal preview header inside modal */
.booking-deal-preview {
    display: flex;
    gap: 1.2rem;
    background: var(--navy);
    padding: 1.4rem 1.6rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    align-items: center;
}
.booking-deal-img {
    width: 110px; height: 74px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
}
.booking-deal-info { flex: 1; min-width: 0; }
.booking-deal-line {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}
.booking-deal-offer {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.45;
    margin-bottom: 0.5rem;
}
.booking-deal-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.booking-deal-meta span {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.08);
    padding: 0.15rem 0.55rem;
    border-radius: 100px;
}
.booking-deal-meta span:empty { display: none; }
/* Form area */
.booking-form-section { padding: 1.75rem 2rem 2rem; }
.booking-form-section h3 {
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
}
.booking-subtitle {
    font-size: 0.84rem;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
    line-height: 1.65;
}
.booking-direct-link {
    text-align: center;
    font-size: 0.76rem;
    color: var(--text-light);
    margin-top: 1rem;
}
.booking-direct-link a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
/* deal-book-btn inherits .deal-link look but is a <button> */
button.deal-link {
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    width: 100%;
}
/* Booking modal responsive */
@media (max-width: 640px) {
    .booking-deal-preview { flex-direction: column; gap: 0.9rem; }
    .booking-deal-img { width: 100%; height: 140px; }
    .booking-form-section { padding: 1.4rem 1.25rem 1.5rem; }
    .booking-overlay { padding: 0; align-items: flex-end; }
    .booking-card { border-radius: var(--radius-lg) var(--radius-lg) 0 0; max-height: 96vh; }
}
