/* =============================================================== */
/*  ETHAN TRAVEL AGENCY — Premium Design System v3.0              */
/*  Palette: Deep Navy (#002244) + Gold (#C9A84C) + Ivory         */
/*  Fonts:   Cormorant (headings) · Montserrat (body)              */
/*  Style:   Liquid Glass · Scroll Storytelling                    */
/*  Note:    Google Fonts loaded via <link> in HTML for perf.      */
/* =============================================================== */

/* =============== DESIGN TOKENS =============== */
:root {
    --navy:        #002244;
    --navy-deep:   #001530;
    --navy-mid:    #003366;
    --navy-light:  #0055A4;
    --gold:        #C9A84C;
    --gold-light:  #E2C97A;
    --gold-dim:    rgba(201,168,76,0.18);
    --ivory:       #FAF8F3;
    --ivory-dark:  #F0ECE3;
    --white:       #FFFFFF;
    --text-dark:   #0C0A09;
    --text-mid:    #3D3628;
    --text-muted:  #6B6358;

    --glass-white: rgba(255,255,255,0.10);
    --glass-navy:  rgba(0,21,48,0.65);
    --glass-blur:  blur(18px);
    --glass-border:rgba(255,255,255,0.18);

    --shadow-sm:   0 4px 16px rgba(0,34,68,0.08);
    --shadow-md:   0 12px 32px rgba(0,34,68,0.14);
    --shadow-lg:   0 24px 64px rgba(0,34,68,0.20);
    --shadow-gold: 0 0 40px rgba(201,168,76,0.25);

    --radius-sm:   12px;
    --radius-md:   20px;
    --radius-lg:   28px;
    --radius-pill: 999px;

    --space-xs:    8px;
    --space-sm:    16px;
    --space-md:    32px;
    --space-lg:    64px;
    --space-xl:    96px;

    --ease-out:    cubic-bezier(0.25,0.8,0.25,1);
    --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
    --t-fast:      0.20s;
    --t-mid:       0.40s;
    --t-slow:      0.70s;
    --transition:  all var(--t-mid) var(--ease-out);
}

/* =============== RESET & BASE =============== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant', serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
}

p  { font-weight: 400; font-size: 1.02rem; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =============== SECTION TITLES =============== */
.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.2rem;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
    height: 1px;
    background: var(--gold);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}
.section-title h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-style: italic;
}
.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0.9rem auto 0;
    border-radius: 2px;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}

/* =============== BUTTONS =============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.82rem 2rem;
    border-radius: var(--radius-pill);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.35) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--t-fast) ease;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy));
    color: var(--white);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy-deep);
    transform: translateY(-2px);
}

.w-100 { width: 100%; }

/* =============== PARTICLE CANVAS =============== */
#particle-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.40;
}

/* =============== NAVBAR =============== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.6rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: padding var(--t-mid) var(--ease-out),
                background var(--t-mid) var(--ease-out),
                box-shadow var(--t-mid) var(--ease-out);
}

#navbar.scrolled {
    background: var(--glass-navy);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 1rem 5%;
    box-shadow: 0 8px 32px rgba(0,21,48,0.35);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    transition: opacity var(--t-mid) ease;
    cursor: pointer;
}
.logo:hover { opacity: 0.88; }

/* Icon emblem */
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(201,168,76,0.65);
    background: rgba(201,168,76,0.10);
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
}
.logo-icon i {
    color: var(--gold);
    font-size: 0.95rem;
    transform: rotate(-35deg);
    display: block;
    line-height: 1;
}
.logo:hover .logo-icon {
    background: rgba(201,168,76,0.22);
    border-color: var(--gold);
    box-shadow: 0 0 16px rgba(201,168,76,0.35);
}

/* Text block */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}
.logo-name {
    font-family: 'Cormorant', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
    line-height: 1;
}
.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    gap: 2.4rem;
    align-items: center;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255,255,255,0.88);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color var(--t-fast) ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--t-mid) var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    margin-left: 0.8rem;
    padding: 0.55rem 1.4rem !important;
    font-size: 0.78rem !important;
    border: 1.5px solid rgba(201,168,76,0.60);
    color: var(--gold) !important;
    border-radius: var(--radius-pill);
}
.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--navy-deep) !important;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 1001;
}

/* Mobile backdrop */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,15,30,0.65);
    z-index: 998;
    backdrop-filter: blur(4px);
}
.nav-backdrop.active { display: block; }

/* =============== HERO SECTION =============== */
.hero {
    min-height: 100vh;
    padding-top: 6rem;
    padding-bottom: 12rem; /* space for scroll and stats */
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    z-index: -2;
    transform: scale(1.08);
    animation: heroPan 28s infinite alternate ease-in-out;
    filter: brightness(0.80) saturate(1.15);
    will-change: transform;
}
@keyframes heroPan {
    0%   { transform: scale(1.08) translate(0, 0); }
    50%  { transform: scale(1.13) translate(-18px, 8px); }
    100% { transform: scale(1.10) translate(12px, -10px); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(0,21,48,0.70) 0%, transparent 65%),
        linear-gradient(180deg,
            rgba(0,21,48,0.25) 0%,
            rgba(0,21,48,0.15) 35%,
            rgba(0,21,48,0.82) 100%);
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0,21,48,0.55) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.2rem;
    padding: 0.5rem 1.8rem;
    border: 1px solid rgba(201,168,76,0.55);
    border-radius: var(--radius-pill);
    background: rgba(201,168,76,0.10);
    backdrop-filter: blur(8px);
    letter-spacing: 0.22em;
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    animation: badgePulse 3.5s ease-in-out infinite alternate;
}
@keyframes badgePulse {
    0%   { box-shadow: 0 0 8px rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.40); }
    100% { box-shadow: 0 0 28px rgba(201,168,76,0.50); border-color: rgba(201,168,76,0.90); }
}

.hero h1 {
    font-family: 'Cormorant', serif;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.01em;
    line-height: 1.25;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 0.5rem;
    color: var(--white);
}

.hero-divider {
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.2rem auto 1.5rem;
    animation: dividerGlow 3s ease-in-out infinite alternate;
}
@keyframes dividerGlow {
    0%   { width: 50px; opacity: 0.5; }
    100% { width: 120px; opacity: 1; box-shadow: 0 0 12px rgba(201,168,76,0.6); }
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.22rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Glass CTA */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 3rem;
    border-radius: var(--radius-pill);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
    transition: all var(--t-mid) var(--ease-spring);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.btn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(0,34,68,0.20));
    opacity: 0;
    transition: opacity var(--t-mid) ease;
}
.btn-hero:hover {
    border-color: rgba(201,168,76,0.90);
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(201,168,76,0.30);
}
.btn-hero:hover::before { opacity: 1; }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 8.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.50);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    z-index: 2;
    animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll .scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, rgba(201,168,76,0.8), transparent);
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* Stats bar at bottom of hero */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 21, 48, 0.85) 0%, rgba(0, 21, 48, 0.4) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(201,168,76,0.25);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 1.4rem 5%;
}

.hero-stat {
    text-align: center;
    padding: 0.5rem 1rem;
}
.hero-stat + .hero-stat {
    border-left: 1px solid rgba(201,168,76,0.15);
}
.hero-stat-num {
    font-family: 'Cormorant', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.hero-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-family: 'Montserrat', sans-serif;
    margin-top: 0.3rem;
    display: block;
}

/* =============== DESTINATIONS =============== */
.destinations {
    padding: var(--space-xl) 2rem;
    background: var(--ivory);
    position: relative;
}
.destinations::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(201,168,76,0.04) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(0,34,68,0.04) 0%, transparent 45%);
    pointer-events: none;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 2.4rem;
    position: relative;
}

/* Card with 3D readiness */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--t-mid) var(--ease-out),
                transform var(--t-mid) var(--ease-out);
    will-change: transform, box-shadow;
    border: 1px solid rgba(0,34,68,0.06);
    position: relative;
}
.card:hover {
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    border-color: rgba(201,168,76,0.20);
}

.card-img-container {
    position: relative;
    height: 255px;
    overflow: hidden;
}
.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}
.card:hover .card-img-container img {
    transform: scale(1.09);
}
.card-img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,21,48,0.55) 100%);
    pointer-events: none;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,21,48,0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gold-light);
    padding: 0.38rem 1rem;
    border-radius: var(--radius-pill);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    border: 1px solid rgba(201,168,76,0.35);
    z-index: 1;
}

/* Replaced .card-price with .card-badge in HTML */
.card-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,21,48,0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gold-light);
    padding: 0.38rem 1rem;
    border-radius: var(--radius-pill);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    border: 1px solid rgba(201,168,76,0.35);
    z-index: 1;
}

.card-content {
    padding: 1.6rem;
}
.card-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.card-content h3 {
    font-family: 'Cormorant', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.7rem;
    font-style: italic;
}
.card-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.4rem;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,34,68,0.07);
    padding-top: 1.1rem;
}
.card-footer span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--navy-light);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* Shine on hover */
.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity var(--t-fast) ease;
    pointer-events: none;
    z-index: 2;
}
.card:hover::before { opacity: 1; }

/* =============== ABOUT SECTION =============== */
.about {
    padding: var(--space-xl) 2rem;
    background: var(--navy-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.about::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,85,164,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.about-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.about .section-title h2 {
    color: var(--white);
}
.about .section-title h2::after {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about-text p {
    color: rgba(255,255,255,0.78);
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 1.6rem;
    font-weight: 300;
}
.about-text p strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* =============== SERVICES =============== */
.services {
    padding: var(--space-xl) 0;
    background: var(--ivory-dark);
    position: relative;
    overflow: hidden;
}
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top left, rgba(0,34,68,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(201,168,76,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
}

.service-box {
    background: var(--white);
    padding: 2.8rem 2.2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,34,68,0.07);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.service-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--t-mid) ease;
}
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,0.20);
}
.service-box:hover::before { opacity: 1; }

.service-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,34,68,0.06), rgba(201,168,76,0.10));
    margin-bottom: 1.6rem;
    transition: var(--transition);
    border: 1px solid rgba(201,168,76,0.15);
}
.service-box:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-color: transparent;
}

.service-icon {
    font-size: 1.8rem;
    color: var(--navy);
    transition: color var(--t-mid) ease;
}
.service-box:hover .service-icon { color: var(--gold); }

.service-box h3 {
    font-family: 'Cormorant', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.8rem;
}
.service-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* =============== TESTIMONIALS =============== */
.testimonials {
    padding: var(--space-xl) 2rem;
    background: var(--ivory);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: var(--white);
    padding: 2.6rem 2.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,34,68,0.06);
    overflow: hidden;
}
.testimonial-card::before {
    content: '\201C';
    font-family: 'Cormorant', serif;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 0.2rem; left: 1.2rem;
    line-height: 1;
    pointer-events: none;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,168,76,0.20);
}
.stars {
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}
.testimonial-card p {
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1.6rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}
.testimonial-card h4 {
    font-family: 'Cormorant', serif;
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
}

/* =============== CONTACT =============== */
.contact {
    padding: var(--space-xl) 2rem;
    background: var(--ivory-dark);
}
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    overflow: hidden;
    border: 1px solid rgba(0,34,68,0.06);
}
.contact-info {
    background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
    color: var(--white);
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
}
.contact-info::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.contact-info h2 {
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 1rem;
}
.contact-info > p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 2.4rem;
    font-size: 0.97rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    position: relative;
}
.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.97rem;
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
}
.contact-details li i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.30);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.contact-details li:hover i {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}

.contact-form { padding: 3.5rem 3rem; }
.form-group { margin-bottom: 1.6rem; }
.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1.5px solid rgba(0,34,68,0.12);
    border-radius: var(--radius-sm);
    background: var(--ivory);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #075E54, #128C7E);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition);
    width: 100%;
    border: none;
    cursor: pointer;
}
.btn-whatsapp i { font-size: 1.25rem; }
.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(7,94,84,0.40);
}

/* =============== FOOTER =============== */
footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.55);
    padding: 5rem 0 0;
    border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.2rem;
}
/* Reuse .logo-icon and .logo-text — override colors for footer dark bg */
.footer-logo .logo-name {
    color: var(--white);
}
.footer-logo .logo-icon {
    border-color: rgba(201,168,76,0.50);
}
.footer-col p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.50);
}
.footer-col h3 {
    font-family: 'Cormorant', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-col h3 a { color: inherit; }
.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.6rem;
}
.footer-col ul li { margin-bottom: 0.9rem; }
.footer-col ul li a,
.footer-col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-col ul li a:hover,
.footer-col a:hover {
    color: var(--gold);
    padding-left: 6px;
}
.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: rgba(255,255,255,0.70);
    font-size: 1rem;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-deep);
    transform: translateY(-4px) scale(1.1);
}
.footer-bottom {
    text-align: center;
    padding: 1.8rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { opacity: 0.8; }

/* =============== SCROLL ANIMATIONS =============== */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s var(--ease-out) forwards;
}
.fade-in {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { animation-delay: 0.15s; transition-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; transition-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; transition-delay: 0.45s; }
.delay-4 { animation-delay: 0.60s; transition-delay: 0.60s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .hero-bg { animation: none; transform: scale(1.05); }
}

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

@media screen and (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
    .contact-card { grid-template-columns: 1fr 1.2fr; }
    .hero-stats { padding: 1.2rem 3%; }
}

@media screen and (max-width: 900px) {
    .contact-card { grid-template-columns: 1fr; }
    .contact-info { padding: 2.8rem 2rem; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .contact-form { padding: 2.5rem 2rem; }
    .hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
    .section-title h2 { font-size: 2.2rem; }
}

@media screen and (max-width: 768px) {
    .hamburger { display: block; z-index: 1001; }
    #navbar { padding: 1.1rem 5%; }
    #navbar.scrolled { padding: 0.9rem 5%; }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 75%;
        max-width: 320px;
        background: var(--navy-deep);
        border-left: 1px solid rgba(201,168,76,0.15);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.2rem;
        transition: right 0.38s var(--ease-out);
        box-shadow: -8px 0 40px rgba(0,0,0,0.3);
        z-index: 999;
    }
    .nav-links.active { right: 0; }
    .nav-links a { color: rgba(255,255,255,0.88); font-size: 1.1rem; padding: 0.5rem 1.2rem; }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta { display: none; }
    .logo { font-size: 1.35rem; }

    .hero h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
    .hero-subtitle { font-size: 0.97rem; }
    .btn-hero { padding: 0.95rem 2.2rem; font-size: 0.82rem; }
    .hero-scroll { bottom: 5rem; }
    .hero-stats { padding: 1rem 3%; gap: 0; }
    .hero-stat-num { font-size: 1.7rem; }
    .hero-stat-label { font-size: 0.58rem; }

    .destinations, .testimonials, .contact { padding: 4rem 1.2rem; }
    .about { padding: 4rem 1.2rem; }
    .services { padding: 4rem 0; }
    .services .container { padding: 0 1.2rem; }

    .cards-grid { grid-template-columns: 1fr; gap: 1.4rem; max-width: 480px; margin-inline: auto; }
    .card-img-container { height: 220px; }
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .contact-info, .contact-form { padding: 2rem 1.5rem; }

    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-logo, .social-links { justify-content: center; }
    .footer-col ul li a:hover, .footer-col a:hover { padding-left: 0; }

    .section-title h2 { font-size: 1.9rem; }
    .section-title { margin-bottom: 2.4rem; }
}

@media screen and (max-width: 480px) {
    html { font-size: 15px; }
    .hero-badge { display: none; }
    .hero h1 { font-size: clamp(1.9rem, 10vw, 2.7rem); }
    .hero-stats { display: none; }
    .hero-scroll { display: none; }
    .cards-grid { max-width: 100%; }
    .card-img-container { height: 200px; }
    .section-title h2 { font-size: 1.65rem; }
    footer { padding: 3rem 0 0; }
}