/* ============================================
   ROOT — LIGHT TOURISM THEME
   ============================================ */
:root {
    --bg:               #ffffff;
    --bg-warm:          #faf8f5;
    --bg-cream:         #f5f0ea;
    --surface:          #ffffff;
    --border:           #e8e4de;
    --border-light:     #f0ece6;

    --coral:            #e06040;
    --coral-hover:      #cc4e30;
    --coral-light:      #fdf0ec;
    --green:            #2d8a6e;
    --green-light:      #eaf5f1;
    --gold:             #c4943a;
    --gold-light:       #fdf6ea;
    --teal:             #1a7a6a;
    --teal-light:       #e8f3ef;

    --text-heading:     #1c1917;
    --text-body:        #44403c;
    --text-muted:       #a8a29e;
    --text-on-dark:     #ffffff;
    --text-on-coral:    #ffffff;

    --font-display:     'Playfair Display', Georgia, serif;
    --font-body:        'Source Serif 4', Georgia, serif;
    --font-mono:        'DM Mono', 'Courier New', monospace;

    --section-pad:      100px;
    --container-max:    1200px;

    --radius:           8px;
    --radius-lg:        14px;
    --shadow-sm:        0 1px 3px rgba(0,0,0,0.04);
    --shadow:           0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:        0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg:        0 10px 40px rgba(0,0,0,0.10);
    --shadow-hover:     0 8px 30px rgba(0,0,0,0.12);
    --transition:       0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-heading);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   SECTION HELPERS
   ============================================ */
.section-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    display: inline-block;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-heading);
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-coral {
    background: var(--coral);
    color: var(--text-on-coral);
    box-shadow: 0 2px 8px rgba(224,96,64,0.25);
}
.btn-coral:hover {
    background: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224,96,64,0.35);
}

.btn-outline {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(6px);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.25);
    border-color: #fff;
}

.btn-primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 2px 8px rgba(45,138,110,0.25);
}
.btn-primary:hover {
    background: #237a5e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,138,110,0.3);
}

.btn-white {
    background: #fff;
    color: var(--coral);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 1px 0 var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    z-index: 1001;
    transition: color var(--transition);
}
.site-header.scrolled .nav-logo { color: var(--text-heading); }

.nav-logo-icon {
    color: var(--coral);
    font-size: 1.3rem;
}

.nav-logo-text strong {
    color: var(--coral);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255,255,50,0.8);
    transition: color var(--transition);
    position: relative;
}
.site-header.scrolled .nav-links a { color: var(--text-body); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: width var(--transition);
}
.nav-links a:hover { color: #fff; }
.site-header.scrolled .nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    padding: 10px 24px;
    font-size: 0.8rem;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--text-heading); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.mobile-nav.active { opacity: 1; pointer-events: all; }

.mobile-nav-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-heading);
}
.mobile-nav-link:hover { color: var(--green); }
.mobile-nav-cta { margin-top: 12px; display: inline-block; }
/* ============================================
   OUTBOUND TOURS — HOMEPAGE
   Uses same .exp-grid / .exp-card as experiences
   ============================================ */
.outbound {
    padding: var(--section-pad) 0;
    background: var(--bg);
}

.outbound-header {
    text-align: center;
    margin-bottom: 60px;
}
.outbound-header .section-subtitle { margin: 0 auto; }

/* Badge on top-left of cards */
.exp-card-badge-top {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    background: var(--coral);
    color: #fff;
    pointer-events: none;
}
.exp-card-badge-top.green {
    background: var(--green);
}
.exp-card-badge-top.gold {
    background: var(--gold);
}

/* CTA below cards */
.outbound-cta {
    text-align: center;
    margin-top: 48px;
}
.outbound-cta-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}
/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.30) 0%,
        rgba(10,10,10,0.50) 45%,
        rgba(10,10,10,0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 130px;
    padding-bottom: 80px;
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 22px;
    color: #fff;
}

.hero-title em {
    font-style: italic;
    color: var(--coral);
}

.hero-desc {
    font-size: 1.12rem;
    color: rgba(255,255,255,0.78);
    max-width: 540px;
    margin-bottom: 34px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-trust-item .icon {
    font-size: 1.1rem;
    color: var(--gold);
}
.hero-trust-item .text {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
}
.hero-trust-item .text strong {
    color: #fff;
    font-weight: 400;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hero-scroll span {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.scroll-line {
    width: 1px; height: 36px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 100%;
    background: var(--coral);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: var(--section-pad) 0;
    background: var(--bg);
}

.hiw-header {
    text-align: center;
    margin-bottom: 60px;
}
.hiw-header .section-subtitle { margin: 0 auto; }

.hiw-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hiw-step {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-warm);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}
.hiw-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--green);
}

.hiw-step-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 14px;
    line-height: 1;
}

.hiw-step-content h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text-heading);
}

.hiw-step-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   EXPERIENCES
   ============================================ */
.experiences {
    padding: var(--section-pad) 0;
    background: var(--bg-warm);
}

.exp-header {
    text-align: center;
    margin-bottom: 60px;
}
.exp-header .section-subtitle { margin: 0 auto; }

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.exp-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    display: block;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.exp-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.exp-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.exp-card:hover img { transform: scale(1.08); }

.exp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.12) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}
.exp-card-icon { font-size: 1.8rem; margin-bottom: 10px; }
.exp-card-overlay h3 { font-size: 1.2rem; margin-bottom: 6px; color: #fff; }
.exp-card-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.72); line-height: 1.5; }

.exp-arrow {
    position: absolute;
    top: 18px; right: 18px;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: all var(--transition);
}
.exp-card:hover .exp-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   ITINERARIES — WRAPPING GRID (NO SCROLLBAR)
   ============================================ */
.itineraries {
    padding: var(--section-pad) 0;
    background: var(--bg);
}

.itin-header {
    text-align: center;
    margin-bottom: 48px;
}
.itin-header .section-subtitle { margin: 0 auto; }

.itin-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
}

.itin-card {
    display: block;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    flex: 1 1 280px;
    max-width: 340px;
    min-width: 260px;
}
.itin-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
    border-color: var(--green);
}

.itin-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.itin-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.itin-card:hover .itin-card-img img { transform: scale(1.05); }

.itin-card-badge {
    position: absolute;
    top: 10px; right: 10px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--green);
    letter-spacing: 0.04em;
}

.itin-card-body { padding: 18px 20px; }

.itin-card-region {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 6px;
}

.itin-card-body h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-heading);
    line-height: 1.3;
}

.itin-card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}
.itin-card-highlights span {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--green-light);
    color: var(--green);
}

.itin-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}
.itin-card-price {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}
.itin-card-price strong { color: var(--text-heading); font-weight: 400; }

.itin-card-link {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: var(--green);
    letter-spacing: 0.04em;
}

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations {
    padding: var(--section-pad) 0;
    background: var(--bg-warm);
}

.dest-header {
    text-align: center;
    margin-bottom: 60px;
}
.dest-header .section-subtitle { margin: 0 auto; }

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.dest-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.dest-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.06); }

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
}
.dest-card-overlay h3 { font-size: 1.2rem; margin-bottom: 4px; color: #fff; }
.dest-card-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.68); margin-bottom: 8px; }
.dest-card-count {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 0.06em;
}

/* ============================================
   DESIGN MY TRIP (FORM)
   ============================================ */
.design-trip {
    padding: var(--section-pad) 0;
    background: var(--bg);
}

.design-trip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.design-trip-info .section-title { text-align: left; }
.design-trip-info .section-subtitle { margin-bottom: 30px; }

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.benefits-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.benefit-icon {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}
.benefits-list li span {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.6;
}
.benefits-list li strong { color: var(--text-heading); }

/* Form */
.design-form-wrapper {
    background: var(--surface);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.design-form-wrapper h3 {
    font-size: 1.35rem;
    margin-bottom: 26px;
    color: var(--text-heading);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--bg-warm);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-heading);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #c5c0b8; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-light);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a8a29e' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.form-group textarea { min-height: 90px; resize: vertical; }

/* Interest Pills */
.interest-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.interest-pill { display: none !important; }
.interest-pills label {
    font-family: var(--font-mono) !important;
    font-size: 0.72rem !important;
    padding: 7px 15px;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-muted) !important;
    margin-bottom: 0 !important;
    background: var(--bg);
}
.interest-pills label:hover {
    border-color: var(--green);
    color: var(--green) !important;
    background: var(--green-light);
}
.interest-pill:checked + label {
    background: var(--green);
    border-color: var(--green);
    color: #fff !important;
}

.form-note {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: var(--section-pad) 0;
    background: var(--green);
}

.why-header { text-align: center; margin-bottom: 60px; }
.why-header .section-label { color: rgba(255,255,255,0.6); }
.why-header .section-title { color: #fff; }
.why-header .section-subtitle { color: rgba(255,255,255,0.7); margin: 0 auto; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    transition: all var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-4px);
}

.why-card-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: #fff; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--section-pad) 0;
    background: var(--bg-warm);
}

.testi-header { text-align: center; margin-bottom: 48px; }
.testi-header .section-subtitle { margin: 0 auto; }

.testi-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
}

.testi-card {
    background: var(--surface);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 26px;
    flex: 1 1 300px;
    max-width: 350px;
    transition: all var(--transition);
}
.testi-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.testi-stars { font-size: 0.95rem; color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: 0.92rem; color: var(--text-body); line-height: 1.7; margin-bottom: 22px; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testi-author-name { font-family: var(--font-display); font-size: 0.92rem; font-weight: 600; color: var(--text-heading); }
.testi-author-from { font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================
   BLOG
   ============================================ */
.blog {
    padding: var(--section-pad) 0;
    background: var(--bg);
}

.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.blog-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}
.blog-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--green);
}

.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body { padding: 18px 20px; }
.blog-card-tag {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px;
}
.blog-card-body h3 { font-size: 1rem; line-height: 1.4; margin-bottom: 12px; color: var(--text-heading); }
.blog-card-meta { display: flex; gap: 14px; font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-muted); }

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: var(--section-pad) 0;
    background: var(--bg-warm);
}

.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header .section-subtitle { margin: 0 auto; }

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item:hover, .faq-item.active {
    box-shadow: var(--shadow);
    border-color: var(--green);
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    color: var(--text-heading);
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--green);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 22px 18px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--section-pad) 0;
    background: var(--bg);
}

.contact > .container > .reveal:first-child {
    text-align: center;
    margin-bottom: 48px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-item { display: flex; gap: 14px; margin-bottom: 26px; }
.contact-item-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
}
.contact-item-value { font-size: 0.92rem; color: var(--text-heading); line-height: 1.6; }
.contact-item-value a { color: var(--green); }
.contact-item-value a:hover { text-decoration: underline; }

.contact-social { display: flex; gap: 10px; margin-top: 8px; }
.contact-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: all var(--transition);
}
.contact-social a:hover { border-color: var(--green); color: var(--green); }

.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 340px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
}
.map-placeholder-inner {
    width: 100%; height: 100%; min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}
.map-icon { font-size: 2.8rem; margin-bottom: 10px; opacity: 0.35; }

/* ============================================
   FOOTER (Dark — contrasts with light body)
   ============================================ */
.site-footer {
    padding: 72px 0 0;
    background: #1c1917;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 44px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    margin: 14px 0 18px;
    max-width: 260px;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.footer-social { display: flex; gap: 8px; }
.footer-social a {
    font-size: 0.58rem;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--coral); color: var(--coral); }

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 18px;
}
.footer-col a {
    display: block;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.5);
    padding: 3px 0;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--coral); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
}
.footer-bottom-links a:hover { color: var(--coral); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 22px; right: 22px;
    width: 54px; height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
    z-index: 900;
    transition: all var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(37,211,102,0.4);
}

/* ============================================
   PAGE HERO (Sub-pages)
   ============================================ */
.page-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.30) 50%, rgba(10,10,10,0.10) 100%);
}
.page-hero-content { position: relative; z-index: 1; padding: 110px 0 56px; }
.page-hero-title { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 700; color: #fff; margin-bottom: 14px; }
.page-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 600px; line-height: 1.7; }

/* Sub-page header solid */
.sub-page .site-header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
    padding: 10px 0;
}
.sub-page .site-header .nav-logo { color: var(--text-heading); }
.sub-page .site-header .nav-links a { color: var(--text-body); }
.sub-page .site-header .nav-links a:hover { color: var(--green); }
.sub-page .site-header .nav-toggle span { background: var(--text-heading); }

/* ============================================
   EXP DETAIL PAGES
   ============================================ */
.exp-detail-intro { padding: var(--section-pad) 0; background: var(--bg); }

.exp-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}
.exp-detail-text h2 { font-size: 1.9rem; margin-bottom: 22px; color: var(--text-heading); }
.exp-detail-text p { font-size: 0.98rem; color: var(--text-body); margin-bottom: 14px; line-height: 1.8; }

.exp-detail-highlights {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: 30px;
}
.exp-detail-highlights h3 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 18px;
}
.exp-detail-highlights ul { display: flex; flex-direction: column; gap: 10px; }
.exp-detail-highlights li {
    font-size: 0.92rem;
    color: var(--text-body);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}
.exp-detail-highlights li::before {
    content: '→';
    position: absolute; left: 0;
    color: var(--green);
}

.exp-detail-experiences { padding: var(--section-pad) 0; background: var(--bg-warm); }

.exp-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.exp-list-card {
    padding: 28px;
    background: var(--surface);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.exp-list-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--green);
}
.exp-list-icon { font-size: 1.8rem; margin-bottom: 14px; }
.exp-list-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text-heading); }
.exp-list-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* Day list */
.exp-detail-itinerary,
.trip-itinerary { padding: var(--section-pad) 0; background: var(--bg); }

.itin-day-list { max-width: 780px; margin: 0 auto; }

.itin-day {
    display: flex;
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border-light);
}
.itin-day:last-child { border-bottom: none; }

.itin-day-num {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--green);
    min-width: 46px;
    padding-top: 4px;
    flex-shrink: 0;
}
.itin-day-content h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--text-heading); }
.itin-day-content p { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; }
.itin-day-hotel {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--gold);
    margin-top: 6px;
}

.itin-cta { text-align: center; padding-top: 44px; }
.itin-cta p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 18px; }

.exp-detail-faq { padding: var(--section-pad) 0; background: var(--bg-warm); }

/* Page CTA */
.page-cta { padding: var(--section-pad) 0; background: var(--bg); }

.page-cta-inner {
    text-align: center;
    padding: 60px 44px;
    background: var(--green);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.page-cta-inner::before {
    content: '';
    position: absolute;
    top: -60%; right: -15%;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.page-cta-inner h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; color: #fff; position: relative; }
.page-cta-inner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 26px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.page-cta-inner .btn { background: #fff; color: var(--green); }
.page-cta-inner .btn:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.15); transform: translateY(-2px); }

/* ============================================
   TRIP PAGES
   ============================================ */
.trip-overview { padding: 44px 0; background: var(--bg); border-bottom: 1px solid var(--border-light); }
.trip-overview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.trip-overview-card {
    text-align: center;
    padding: 22px 14px;
    background: var(--bg-warm);
    border-radius: var(--radius);
}
.trip-overview-icon { font-size: 1.4rem; margin-bottom: 6px; }
.trip-overview-card strong {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
}
.trip-overview-card span { font-size: 0.95rem; color: var(--text-heading); }

.trip-highlights { padding: var(--section-pad) 0; background: var(--bg-warm); }
.trip-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 880px;
    margin: 0 auto;
}
.trip-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-body);
    padding: 12px 16px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}
.trip-highlight-item span { color: var(--green); font-weight: 600; }

.trip-pricing { padding: var(--section-pad) 0; background: var(--bg-warm); }
.trip-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 940px;
    margin: 0 auto;
}
.trip-pricing-card {
    padding: 30px;
    background: var(--surface);
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}
.trip-pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.trip-pricing-card.featured {
    border-color: var(--green);
    box-shadow: 0 8px 28px rgba(45,138,110,0.12);
    position: relative;
}
.trip-pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 20px;
}
.trip-pricing-card h3 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
}
.trip-pricing-amount {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 22px;
}
.trip-pricing-amount span { font-size: 0.88rem; font-weight: 400; color: var(--text-muted); }
.trip-pricing-card ul { text-align: left; display: flex; flex-direction: column; gap: 8px; }
.trip-pricing-card li {
    font-size: 0.86rem;
    color: var(--text-body);
    padding-left: 20px;
    position: relative;
}
.trip-pricing-card li::before { content: '✓'; position: absolute; left: 0; color: var(--green); }
.trip-pricing-note { text-align: center; font-size: 0.86rem; color: var(--text-muted); margin-top: 22px; }

/* ============================================
   DESTINATION PAGES
   ============================================ */
.dest-detail-intro { padding: var(--section-pad) 0; background: var(--bg); }
.dest-detail-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: start; }
.dest-detail-text h2 { font-size: 1.9rem; margin-bottom: 22px; color: var(--text-heading); }
.dest-detail-text p { font-size: 0.98rem; color: var(--text-body); margin-bottom: 14px; line-height: 1.8; }

.dest-detail-practical {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: 30px;
}
.dest-detail-practical h3 {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 22px;
}
.dest-practical-item { padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.dest-practical-item:last-child { border-bottom: none; }
.dest-practical-item strong {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 3px;
    font-weight: 400;
}
.dest-practical-item span { font-size: 0.88rem; color: var(--text-heading); }

.dest-experiences { padding: var(--section-pad) 0; background: var(--bg-warm); }
.dest-experience-list { max-width: 780px; margin: 0 auto; }
.dest-experience-item { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--border-light); }
.dest-experience-item:last-child { border-bottom: none; }
.dest-experience-num { font-family: var(--font-mono); font-size: 0.75rem; color: var(--green); min-width: 28px; padding-top: 4px; flex-shrink: 0; }
.dest-experience-content h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--text-heading); }
.dest-experience-content p { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; }

.dest-related-itins { padding: var(--section-pad) 0; background: var(--bg); }
.dest-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 680px; margin: 0 auto; }
.dest-related-card {
    display: block;
    padding: 26px;
    background: var(--bg-warm);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.dest-related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--green); }
.dest-related-card h3 { font-size: 1.1rem; margin-bottom: 4px; color: var(--text-heading); }
.dest-related-card p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 10px; }
.dest-related-card span { font-family: var(--font-mono); font-size: 0.76rem; color: var(--green); }
.dest-custom-note { text-align: center; font-size: 0.88rem; color: var(--text-muted); margin-top: 22px; }

/* ============================================
   BLOG ARTICLES
   ============================================ */
.blog-article-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.blog-article-hero-content { position: relative; z-index: 1; padding: 110px 0 56px; }
.blog-article-meta {
    display: flex;
    gap: 18px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    margin-top: 10px;
}

.blog-article-body { padding: var(--section-pad) 0; background: var(--bg); }
.blog-article-content { max-width: 700px; margin: 0 auto; }
.blog-article-content h2 { font-size: 1.7rem; margin: 44px 0 18px; color: var(--text-heading); }
.blog-article-content h3 { font-size: 1.25rem; margin: 30px 0 10px; color: var(--text-heading); }
.blog-article-content p { font-size: 1rem; color: var(--text-body); margin-bottom: 18px; line-height: 1.8; }

.blog-lead {
    font-size: 1.15rem !important;
    color: var(--text-heading) !important;
    border-left: 3px solid var(--green);
    padding-left: 22px;
    margin-bottom: 30px !important;
}

.blog-article-content ul,
.blog-article-content ol { margin: 0 0 22px 22px; }
.blog-article-content li {
    font-size: 0.98rem;
    color: var(--text-body);
    margin-bottom: 8px;
    padding-left: 12px;
    position: relative;
    line-height: 1.7;
}
.blog-article-content ul li { list-style: none; }
.blog-article-content ul li::before {
    content: '→';
    position: absolute;
    left: -18px;
    color: var(--green);
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
    font-size: 0.9rem;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.blog-table th {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    text-align: left;
    padding: 12px 16px;
    background: var(--bg-warm);
}
.blog-table td {
    padding: 10px 16px;
    color: var(--text-body);
    border-bottom: 1px solid var(--border-light);
}

.blog-cta-box {
    margin: 44px 0;
    padding: 34px;
    background: var(--green-light);
    border: 1px solid rgba(45,138,110,0.15);
    border-radius: var(--radius-lg);
    text-align: center;
}
.blog-cta-box h3 { margin-bottom: 10px; color: var(--text-heading); }
.blog-cta-box p { color: var(--text-body) !important; margin-bottom: 18px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hiw-steps { grid-template-columns: repeat(2, 1fr); }
    .exp-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .design-trip-grid { grid-template-columns: 1fr; gap: 44px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .exp-detail-grid { grid-template-columns: 1fr; gap: 36px; }
    .dest-detail-grid { grid-template-columns: 1fr; gap: 36px; }
    .trip-overview-grid { grid-template-columns: repeat(2, 1fr); }
    .trip-pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
    .exp-list-grid { grid-template-columns: repeat(2, 1fr); }
    .trip-highlights-grid { grid-template-columns: repeat(2, 1fr); }

    .itin-card { flex: 1 1 calc(50% - 11px); max-width: none; }
    .testi-card { flex: 1 1 calc(50% - 11px); max-width: none; }
}

@media (max-width: 768px) {
    :root { --section-pad: 72px; }

    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .hero-content { padding-top: 100px; }
    .hero-title { font-size: 2.3rem; }
    .hero-actions { flex-direction: column; }
    .hero-trust { flex-direction: column; gap: 14px; }

    .hiw-steps { grid-template-columns: 1fr; }
    .exp-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .exp-list-grid { grid-template-columns: 1fr; }

    .itin-card { flex: 1 1 100%; max-width: none; }
    .testi-card { flex: 1 1 100%; max-width: none; }

    .form-row { grid-template-columns: 1fr; }
    .design-form-wrapper { padding: 22px; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    .trip-overview-grid { grid-template-columns: 1fr 1fr; }
    .trip-highlights-grid { grid-template-columns: 1fr; }
    .dest-related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .trip-overview-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SUBTLE TEXTURE
   ============================================ */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}