/* ============================================================
   TOURZA LANKA TRAVEL — Main Stylesheet
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Palette: Deep Navy, Warm Cream, Antique Gold
   ============================================================ */

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

:root {
    --navy:       #0d1b2a;
    --navy-mid:   #1a2d42;
    --navy-light: #243b55;
    --gold:       #c9a84c;
    --gold-light: #e2c07a;
    --gold-pale:  #f5e9c8;
    --cream:      #faf7f0;
    --white:      #ffffff;
    --text:       #2c3e50;
    --text-light: #6b7c93;
    --text-muted: #9baab8;
    --border:     rgba(201,168,76,0.2);
    --glass:      rgba(255,255,255,0.07);
    --glass-border: rgba(255,255,255,0.12);
    --shadow-sm:  0 2px 12px rgba(13,27,42,0.08);
    --shadow-md:  0 8px 32px rgba(13,27,42,0.12);
    --shadow-lg:  0 20px 60px rgba(13,27,42,0.18);
    --shadow-gold:0 8px 32px rgba(201,168,76,0.25);
    --radius-sm:  6px;
    --radius-md:  14px;
    --radius-lg:  24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    --nav-height:   80px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-body); }

/* --- PRELOADER --- */
/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* --- TYPOGRAPHY --- */
.display-title {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.section-label::before {
    content: '';
    display: block;
    width: 30px; height: 1px;
    background: var(--gold);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 540px;
    line-height: 1.8;
}

/* --- CONTAINER --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-header { margin-bottom: 3.5rem; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #a07d35);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.45);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--white);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    color: var(--gold-light);
}

.btn-outline-dark {
    background: transparent;
    border: 1.5px solid var(--navy);
    color: var(--navy);
}
.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1rem; }

/* ============================================================
   NAVIGATION — Fully Responsive Modern Header
   ============================================================ */

/* ── Header bar ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    height: var(--nav-height);
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(201,168,76,0.18);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.site-header.scrolled {
    background: rgba(13,27,42,0.96);
    border-bottom-color: rgba(201,168,76,0.25);
    box-shadow: 0 4px 32px rgba(0,0,0,0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

/* ── Wrapper ── */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 1rem;
}

/* ── Logo ── */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--navy);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.35s ease;
}
.site-header.scrolled .nav-logo { color: var(--white); }
.logo-star { color: var(--gold); font-size: 0.9rem; line-height: 1; }

/* ── Desktop nav list ── */
.main-nav { display: flex; align-items: center; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(13,27,42,0.72);
    border-radius: 6px;
    position: relative;
    transition: color 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}
.nav-link-icon { font-size: 0.75rem; opacity: 0.7; }
.site-header.scrolled .nav-link { color: rgba(255,255,255,0.78); }
.nav-link:hover { color: var(--gold); background: rgba(201,168,76,0.06); }
.site-header.scrolled .nav-link:hover { color: var(--gold); background: rgba(201,168,76,0.1); }
.nav-link.active { color: var(--gold); font-weight: 600; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.25s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 1.5rem); }

/* ── Dropdown caret ── */
.dropdown-caret {
    font-size: 0.6rem;
    margin-left: 0.1rem;
    transition: transform 0.25s ease;
}
.has-dropdown:hover .dropdown-caret { transform: rotate(180deg); }
.has-dropdown { position: relative; }

/* ── Dropdown panel ── */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: rgba(10,20,36,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 14px;
    min-width: 240px;
    padding: 0.6rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
    z-index: 100;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
/* Arrow pip on dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px; left: 50%;
    transform: translateX(-50%);
    width: 12px; height: 6px;
    background: rgba(10,20,36,0.97);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.7rem 0.875rem;
    border-radius: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 0.86rem;
    transition: background 0.2s ease, color 0.2s ease;
}
.dropdown-item:hover { background: rgba(201,168,76,0.12); color: var(--white); }
.dd-icon {
    width: 34px; height: 34px;
    background: rgba(201,168,76,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.dropdown-item:hover .dd-icon { background: rgba(201,168,76,0.22); }
.dropdown-item strong { display: block; font-size: 0.875rem; font-weight: 600; color: inherit; }
.dropdown-item small { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 0.1rem; }
.dropdown-item:hover small { color: rgba(255,255,255,0.6); }

/* ── Right side actions ── */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.nav-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.nav-book-btn:hover {
    background: #d4a940;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.35);
    color: var(--navy);
}

/* ── Hamburger toggle (mobile only) ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px; height: 42px;
    background: rgba(13,27,42,0.06);
    border: 1px solid rgba(13,27,42,0.1);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.site-header.scrolled .nav-toggle {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}
.nav-toggle:hover { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.3); }
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}
.site-header.scrolled .nav-toggle span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Backdrop ── */
.nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 800;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-backdrop.open { opacity: 1; visibility: visible; }

/* ── Mobile Drawer ── */
.mobile-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 88vw);
    height: 100dvh;
    background: var(--navy);
    z-index: 850;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}
.mobile-drawer.open { right: 0; }

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.mobile-drawer-header .nav-logo { color: var(--white); font-size: 1.3rem; }

.drawer-close {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}
.drawer-close:hover { background: rgba(239,68,68,0.2); color: #f87171; border-color: rgba(239,68,68,0.3); }

.mobile-nav {
    padding: 1.25rem 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    font-size: 0.975rem;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}
.mobile-nav-link i { width: 18px; text-align: center; color: var(--gold); font-size: 0.85rem; }
.mobile-nav-link:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.mobile-nav-link.active { background: rgba(201,168,76,0.12); color: var(--gold); font-weight: 600; }

.mobile-nav-group { display: flex; flex-direction: column; }
.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-dropdown-toggle > span { display: flex; align-items: center; gap: 0.875rem; }
.mobile-caret { font-size: 0.65rem; color: rgba(255,255,255,0.4); transition: transform 0.25s ease; }
.mobile-dropdown-toggle.open .mobile-caret { transform: rotate(180deg); }
.mobile-dropdown-toggle.open { color: var(--white); }

.mobile-submenu {
    display: none;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.4rem 0 0.4rem 1rem;
    margin-left: 1rem;
    border-left: 2px solid rgba(201,168,76,0.2);
}
.mobile-submenu.open { display: flex; }
.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.875rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s ease;
}
.mobile-sub-link i { color: var(--gold); font-size: 0.8rem; width: 16px; text-align: center; }
.mobile-sub-link:hover { background: rgba(255,255,255,0.06); color: var(--white); }

.mobile-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: auto;
    padding: 1rem;
    background: var(--gold);
    color: var(--navy);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, transform 0.2s ease;
}
.mobile-book-btn:hover { background: #d4a940; transform: translateY(-1px); color: var(--navy); }

/* ── Responsive breakpoints ── */
@media (max-width: 900px) {
    .nav-link-icon { display: none; }
}
@media (max-width: 768px) {
    .main-nav { display: none; } /* hide desktop nav on mobile */
    .nav-book-btn { display: none; } /* hide on mobile — in drawer instead */
    .nav-toggle { display: flex; }
}
@media (max-width: 400px) {
    .nav-wrapper { padding: 0 1rem; }
    .nav-logo { font-size: 1.2rem; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--navy);
}

.hero-slider {
    position: absolute;
    inset: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 8s ease;
}
.hero-slide.active img { transform: scale(1); }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13,27,42,0.75) 0%,
        rgba(13,27,42,0.4) 60%,
        rgba(13,27,42,0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 2rem;
    margin-left: max(2rem, calc(50vw - 620px));
}

.hero-label {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 0.8s ease both;
}
.hero-label::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--gold);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s 0.15s ease both;
}
.hero-headline em {
    font-style: italic;
    color: var(--gold-light);
}
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.8em;
    background: var(--gold);
    margin-left: 4px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100% { opacity:1 } 50% { opacity:0 } }

.hero-subtext {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.45s ease both;
}

.hero-stats {
    position: absolute;
    bottom: 3rem;
    right: max(2rem, calc(50vw - 620px));
    z-index: 2;
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s 0.6s ease both;
}
.hero-stat {
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(16px);
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold-light);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    margin-top: 0.3rem;
}

/* Slider Dots */
.hero-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 0.75rem;
}
.hero-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.hero-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 3px;
}

/* Slider Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--white);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: var(--transition);
    font-size: 0.9rem;
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); }
.hero-arrow-prev { left: 2rem; }
.hero-arrow-next { right: 2rem; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeInUp 1s 1s ease both;
}
.scroll-indicator-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 1.5s ease infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   CATEGORIES STRIP (below hero)
   ============================================================ */
.categories-strip {
    background: var(--navy);
    padding: 0;
}
.categories-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1240px;
    margin: 0 auto;
}
.cat-strip-item {
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}
.cat-strip-item:last-child { border-right: none; }
.cat-strip-item:hover { background: rgba(201,168,76,0.08); }
.cat-strip-icon {
    width: 54px; height: 54px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.cat-strip-item:hover .cat-strip-icon {
    background: var(--gold);
    color: var(--navy);
}
.cat-strip-text h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.2rem;
}
.cat-strip-text p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================================
   FEATURED TOURS
   ============================================================ */
.featured-tours { background: var(--cream); }

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.tour-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.08); }

.tour-card-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
}
.tour-card-featured {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(13,27,42,0.8);
    backdrop-filter: blur(8px);
    color: var(--gold-light);
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(201,168,76,0.3);
}

.tour-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.6) 0%, transparent 60%);
}

.tour-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tour-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.875rem;
    flex-wrap: wrap;
}
.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-light);
}
.tour-meta-item i { color: var(--gold); }

.tour-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}
.tour-card-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
}
.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.tour-price {
    display: flex;
    flex-direction: column;
}
.tour-price-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.tour-price-amount {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
}
.tour-price-amount span { font-size: 0.9rem; color: var(--text-light); font-family: var(--font-body); }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations-section { background: var(--white); }

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.destinations-grid .dest-card:first-child {
    grid-row: span 2;
}

.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    min-height: 260px;
}
.dest-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    position: absolute; inset: 0;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.8) 0%, rgba(13,27,42,0.1) 60%);
    transition: var(--transition);
}
.dest-card:hover .dest-card-overlay {
    background: linear-gradient(to top, rgba(13,27,42,0.9) 0%, rgba(13,27,42,0.2) 60%);
}
.dest-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.75rem;
    transform: translateY(10px);
    transition: var(--transition);
}
.dest-card:hover .dest-card-content { transform: translateY(0); }
.dest-card-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.dest-card-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}
.dest-card:hover .dest-card-desc {
    opacity: 1;
    transform: translateY(0);
}
.dest-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-light);
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: 0;
    transition: var(--transition);
}
.dest-card:hover .dest-card-arrow { opacity: 1; }

/* ============================================================
   EXPERIENCE BAND
   ============================================================ */
.experience-band {
    background: var(--navy);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.experience-band::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.experience-band .section-title { color: var(--white); }
.experience-band .section-subtitle { color: rgba(255,255,255,0.6); }

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.experience-item {
    padding: 2.5rem 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.experience-item:hover {
    background: rgba(201,168,76,0.1);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-4px);
}
.experience-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.experience-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.experience-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--cream); overflow: hidden; }

.testimonials-slider-wrap { position: relative; }
.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
    min-width: calc(50% - 0.75rem);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    flex-shrink: 0;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem; right: 2rem;
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--gold-pale);
    line-height: 1;
}
.testimonial-stars { margin-bottom: 1.25rem; }
.testimonial-stars i { color: var(--gold); font-size: 0.875rem; }
.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}
.testimonial-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.15rem;
}
.testimonial-meta i { color: var(--gold); }

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}
.testimonial-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: var(--transition);
    font-size: 0.85rem;
}
.testimonial-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}
.testimonial-dots-wrap { display: flex; gap: 0.5rem; }
.t-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.t-dot.active {
    background: var(--navy);
    width: 20px;
    border-radius: 3px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: var(--nav-height);
}
.page-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2f4a 100%);
}
.page-hero-bg.has-image { background: none; }
.page-hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    transition: transform 8s ease;
}
.page-hero:hover .page-hero-img { transform: scale(1.0); }
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13,27,42,0.78) 0%,
        rgba(13,27,42,0.55) 50%,
        rgba(13,27,42,0.65) 100%
    );
}
.page-hero-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 10% 80%, rgba(201,168,76,0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(201,168,76,0.07) 0%, transparent 40%);
    pointer-events: none;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.25rem;
    letter-spacing: 0.03em;
}
.page-hero-breadcrumb a {
    color: var(--gold-light);
    transition: color 0.2s;
}
.page-hero-breadcrumb a:hover { color: var(--white); }
.page-hero-breadcrumb i { font-size: 0.55rem; opacity: 0.6; }
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.page-hero-title em { color: var(--gold-light); font-style: italic; }
.page-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.68);
    max-width: 520px;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* ============================================================
   TOUR CATEGORY TABS
   ============================================================ */
.tour-filter-bar {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding: 0;
    position: sticky;
    top: var(--nav-height);
    z-index: 100;
}
.tour-filter-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 0.25rem;
}
.filter-tab {
    padding: 1.2rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}
.filter-tab:hover { color: var(--navy); }
.filter-tab.active {
    color: var(--navy);
    border-bottom-color: var(--gold);
}
.filter-tab i { color: var(--gold); }

/* ============================================================
   SINGLE TOUR
   ============================================================ */
.single-tour { padding: 4rem 0 6rem; }
.single-tour-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}

.tour-gallery { margin-bottom: 2.5rem; }
.tour-gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    margin-bottom: 1rem;
}
.tour-gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.tour-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
.gallery-thumb {
    height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.65;
    transition: var(--transition);
    border: 2px solid transparent;
}
.gallery-thumb.active, .gallery-thumb:hover {
    opacity: 1;
    border-color: var(--gold);
}
.gallery-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.tour-section { margin-bottom: 2.5rem; }
.tour-section-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.tour-full-desc { color: var(--text); line-height: 1.9; }

.itinerary-list { display: flex; flex-direction: column; gap: 1rem; }
.itinerary-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold);
}
.itinerary-day {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    min-width: 50px;
    padding-top: 2px;
}
.itinerary-text { font-size: 0.9rem; color: var(--text); line-height: 1.6; }

/* Sticky Booking Card */
.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
}
.booking-card-price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.booking-card-price span {
    font-size: 1.1rem;
    color: var(--text-light);
    font-family: var(--font-body);
}
.booking-card-per {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}
.booking-details { margin-bottom: 1.75rem; }
.booking-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.875rem;
}
.booking-detail-label {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.booking-detail-label i { color: var(--gold); width: 16px; }
.booking-detail-value { font-weight: 500; color: var(--navy); }
.booking-card-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.booking-card-note i { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { background: var(--cream); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 520px;
}
.about-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.about-img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 160px; height: 160px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--navy);
    box-shadow: 0 8px 40px rgba(201,168,76,0.4);
}
.about-img-badge-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1;
}
.about-img-badge-text { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; }

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.mv-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
}
.mv-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.mv-card h3 i { color: var(--gold); }
.mv-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}
.team-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
    width: 100px; height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--gold-pale);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.team-role { font-size: 0.8rem; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.team-bio { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; margin-top: 1rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}
.contact-info { background: var(--navy); border-radius: var(--radius-lg); padding: 3rem 2.5rem; }
.contact-info-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}
.contact-info-sub { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 2.5rem; }
.contact-info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}
.contact-info-icon {
    width: 46px; height: 46px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.contact-info-text h4 { color: var(--white); font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-info-text p, .contact-info-text a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.contact-info-text a:hover { color: var(--gold-light); }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}
.contact-form-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.contact-form-sub { color: var(--text-light); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }

.form-success {
    background: rgba(39,174,96,0.1);
    border: 1px solid rgba(39,174,96,0.3);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    color: #27ae60;
    font-size: 0.9rem;
    display: none;
    margin-top: 1rem;
}

.map-section { background: var(--white); padding: 0; }
.map-container {
    height: 440px;
    filter: grayscale(20%);
    border-top: 4px solid var(--gold);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   DESTINATIONS PAGE GRID
   ============================================================ */
.destinations-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}
.dest-full-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.dest-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dest-full-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.dest-full-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.dest-full-card:hover .dest-full-img img { transform: scale(1.08); }
.dest-full-body { padding: 1.5rem; }
.dest-full-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.dest-full-desc { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); }
.footer-top { padding: 5rem 0 4rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.footer-tagline {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-about { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 1.75rem; }

.social-links { display: flex; gap: 0.75rem; }
.social-links a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-list li {
    display: flex;
    gap: 0.875rem;
    margin-bottom: 1rem;
}
.footer-contact-list i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
    width: 14px;
}
.footer-contact-list span, .footer-contact-list a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer-contact-list a:hover { color: var(--gold-light); }

.footer-newsletter { margin-top: 1.75rem; }
.footer-newsletter p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.newsletter-form {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}
.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.85rem;
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
    padding: 0.75rem 1.25rem;
    background: var(--gold);
    border: none;
    color: var(--navy);
    cursor: pointer;
    font-size: 0.875rem;
    transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 500;
    transform: translateY(10px);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--navy);
    color: var(--gold);
    transform: translateY(-3px);
}

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

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-ready .reveal {
    opacity: 0;
    transform: translateY(30px);
}
.js-ready .reveal.visible {
    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; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 1rem; }
.w-100 { width: 100%; }

.placeholder-img {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 3rem;
    width: 100%; height: 100%;
}

/* Alert / Flash */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.alert-success { background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.3); color: #27ae60; }
.alert-error   { background: rgba(231,76,60,0.1);  border: 1px solid rgba(231,76,60,0.3);  color: #e74c3c; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .destinations-grid .dest-card:first-child { grid-row: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .single-tour-layout { grid-template-columns: 1fr; }
    .booking-card { position: static; }
}

@media (max-width: 768px) {
    :root { --nav-height: 68px; }

    /* --- Page layout --- */
    .hero-stats { display: none; }
    .hero-headline { font-size: clamp(2.2rem, 9vw, 3.5rem); }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: .75rem; }

    .categories-strip-inner { grid-template-columns: 1fr; }
    .cat-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }

    .tours-grid { grid-template-columns: 1fr; }
    .destinations-grid { grid-template-columns: 1fr; }
    .destinations-full-grid { grid-template-columns: 1fr; }

    .about-grid, .contact-layout { grid-template-columns: 1fr; }
    .about-img-badge { right: 0; bottom: -1rem; width: 130px; height: 130px; }

    .mv-grid, .team-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }

    .testimonial-card { min-width: 100%; }
    .hero-arrow { display: none; }
    .section { padding: 4rem 0; }

    .tour-gallery-main { height: 300px; }
    .tour-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }

    .single-tour-layout { grid-template-columns: 1fr; }
    .single-tour-sidebar { position: static; width: 100%; }

    .page-hero { height: 300px; }
    .page-hero-title { font-size: clamp(2rem, 8vw, 3rem); }
}

@media (max-width: 480px) {
    .hero { min-height: 560px; }
    .page-hero { height: 260px; }
    .hero-dots { bottom: 1.5rem; }
    .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .experience-grid { grid-template-columns: 1fr 1fr; }
    .booking-card { padding: 1.5rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .nav-wrapper { padding: 0 1.5rem; }
    .nav-link { padding: 0.45rem 0.65rem; font-size: 0.82rem; }
    .nav-book-btn { padding: 0.55rem 1rem; font-size: 0.82rem; }
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

