/* ==========================================================================
   PINTO CEYLON TRAVELS — MODERN SRI LANKA TOURISM DESIGN SYSTEM
   ========================================================================== */

/* ---------------------------------------------------------
   1. CSS VARIABLES & DESIGN TOKENS
   --------------------------------------------------------- */
:root {
    /* Sri Lankan Inspired Color Palette */
    --color-primary: #0b2822;         /* Deep Forest Emerald */
    --color-primary-light: #16463d;   /* Rich Emerald */
    --color-primary-dark: #061713;    /* Midnight Jungle */
    
    --color-accent: #d4af37;          /* Warm Ceylon Gold */
    --color-accent-hover: #b89326;    /* Deep Gold */
    --color-accent-light: #f7e8b6;    /* Champagne Gold */
    
    --color-ocean: #0c4a60;           /* Indian Ocean Teal */
    --color-ocean-light: #1b7396;     /* Tropical Sea */
    
    --color-sand: #f8f6f0;            /* Warm Ceylon Sand */
    --color-sand-dark: #ede8dc;       /* Earth Dune */
    
    --color-dark: #111417;            /* Charcoal / Obsidian */
    --color-dark-surface: #181d21;    /* Slate Card Surface */
    
    --color-surface: #ffffff;
    --color-surface-trans: rgba(255, 255, 255, 0.85);
    
    --color-text-main: #2b333a;       /* Body Text */
    --color-text-light: #637381;      /* Secondary/Muted Text */
    --color-text-white: #ffffff;
    --color-text-gold: #e2be4a;

    --color-border: rgba(11, 40, 34, 0.1);
    --color-border-light: rgba(255, 255, 255, 0.15);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-subheading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    /* Transitions & Curves */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.25s ease;
    --transition-normal: 0.4s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);

    /* Shadows */
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 12px 36px rgba(11, 40, 34, 0.12);
    --shadow-elevated: 0 24px 60px rgba(11, 40, 34, 0.2);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);

    /* Border Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Spacing & Heights */
    --nav-height: 90px;
    --nav-height-scrolled: 72px;
}

/* ---------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLES
   --------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-sand);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: clamp(1.15rem, 1.8vw, 1.5rem); }

p {
    margin-bottom: 1.25rem;
    font-weight: 400;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* Utility Containers */
.site-container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1.25rem, 4vw, 3rem);
    padding-right: clamp(1.25rem, 4vw, 3rem);
}

.site-container-narrow {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1.25rem, 4vw, 2.5rem);
    padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

.section-padding {
    padding-top: clamp(4.5rem, 8vw, 8rem);
    padding-bottom: clamp(4.5rem, 8vw, 8rem);
}

/* Accessibility Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 10px 20px;
    z-index: 99999;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: top 0.3s ease;
}
.skip-link:focus {
    top: 20px;
}

/* ---------------------------------------------------------
   3. BUTTONS & BADGES
   --------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.95rem 1.95rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
}

.btn-emerald {
    background-color: var(--color-primary);
    color: #ffffff;
    border: 1px solid var(--color-primary);
}

.btn-emerald:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
}

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

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

.btn-outline-dark:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-primary-glass {
    background: rgba(212, 175, 55, 0.9);
    color: var(--color-primary);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.btn-primary-glass:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-sm {
    padding: 0.65rem 1.35rem;
    font-size: 0.88rem;
}

.btn-lg {
    padding: 1.15rem 2.4rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.15);
    color: #937213;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.badge-tag.tag-gold {
    background: var(--color-accent);
    color: var(--color-primary);
    border: none;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent-hover);
    margin-bottom: 0.75rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: var(--color-accent);
}

.section-heading-block {
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading-block.text-center {
    text-align: center;
}

.section-heading-block.text-center .section-label::before {
    display: none;
}

.section-heading-block p.section-subtext {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: var(--color-text-light);
    max-width: 680px;
    margin-top: 0.85rem;
}

.section-heading-block.text-center p.section-subtext {
    margin-left: auto;
    margin-right: auto;
}

/* ---------------------------------------------------------
   4. NAVIGATION BAR (GLASSMORPHIC & STICKY)
   --------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    background: linear-gradient(180deg, rgba(6, 23, 19, 0.8) 0%, rgba(6, 23, 19, 0.3) 60%, rgba(6, 23, 19, 0) 100%);
    padding: 1.25rem 0;
}

.site-header.header-scrolled {
    background: rgba(11, 40, 34, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 0.75rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    z-index: 10;
}

.brand-logo-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.brand-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-fallback-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #ffffff;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    color: var(--color-accent);
    line-height: 1.1;
    margin-top: 2px;
}

/* Desktop Nav Links */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2.2rem);
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    padding: 0;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2.5px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-drawer.active {
    visibility: visible;
    opacity: 1;
}

.mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 23, 19, 0.85);
    backdrop-filter: blur(10px);
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(85vw, 380px);
    background: var(--color-primary-dark);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out-expo);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-drawer.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-close {
    font-size: 1.6rem;
    color: #ffffff;
    padding: 0.25rem;
}

.mobile-nav-links {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mobile-nav-link i {
    width: 24px;
    color: var(--color-accent);
    font-size: 1.15rem;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateX(6px);
}

.mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------------------------------------------------------
   5. CINEMATIC HERO SECTION
   --------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
    box-sizing: border-box;
}

.hero-background-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.video-a {
    opacity: 1;
}

.video-b {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 23, 19, 0.65) 0%,
        rgba(6, 23, 19, 0.45) 40%,
        rgba(6, 23, 19, 0.75) 80%,
        rgba(6, 23, 19, 0.95) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.45rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6.5vw, 5.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.25rem;
    text-align: center;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    width: 100%;
}

.hero-subtitle {
    font-family: var(--font-subheading);
    font-size: clamp(1.4rem, 2.8vw, 2.1rem);
    font-weight: 500;
    font-style: italic;
    color: var(--color-accent-light);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    text-align: center;
    width: 100%;
}

.hero-description {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.7;
    width: 100%;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Page Inner Hero */
.page-hero {
    position: relative;
    padding: calc(var(--nav-height) + 4rem) 0 4.5rem;
    background-color: var(--color-primary-dark);
    color: #ffffff;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 23, 19, 0.7) 0%, rgba(6, 23, 19, 0.95) 100%);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ---------------------------------------------------------
   6. CINEMATIC SCROLLYTELLING SECTION
   --------------------------------------------------------- */
.scrolly-journey-section {
    position: relative;
    background: var(--color-dark);
    color: #ffffff;
}

.scrolly-container {
    position: relative;
}

.scrolly-story-slide {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3);
}

.scrolly-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.scrolly-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 1.2s ease-out;
}

.scrolly-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(6, 23, 19, 0.4) 0%, rgba(6, 23, 19, 0.85) 90%);
    z-index: 2;
}

.scrolly-content-card {
    position: relative;
    z-index: 5;
    max-width: 680px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.5rem);
    background: rgba(11, 40, 34, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.story-counter {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.story-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #ffffff;
    margin-bottom: 1rem;
}

.story-quote {
    font-family: var(--font-subheading);
    font-size: 1.45rem;
    font-style: italic;
    color: var(--color-accent-light);
    margin-bottom: 1rem;
}

.story-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

/* ---------------------------------------------------------
   7. DESTINATIONS SECTION
   --------------------------------------------------------- */
.destinations-section {
    background-color: var(--color-sand);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.75rem;
}

.destination-card {
    position: relative;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.destination-card:hover .destination-img {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(6, 23, 19, 0.1) 0%, 
        rgba(6, 23, 19, 0.4) 40%, 
        rgba(6, 23, 19, 0.9) 100%);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: #ffffff;
    z-index: 2;
}

.destination-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.4rem;
    display: block;
}

.destination-title {
    font-size: 1.85rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.destination-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.destination-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-arrow {
    transform: translateX(6px);
}

/* ---------------------------------------------------------
   8. TOUR PACKAGES
   --------------------------------------------------------- */
.packages-section {
    background-color: #ffffff;
}

.package-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.filter-btn {
    padding: 0.7rem 1.6rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-sand);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    background: var(--color-sand-dark);
    border-color: var(--color-primary);
}

.filter-btn.active {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-subtle);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
    gap: 2.25rem;
}

.package-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), opacity 0.4s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
}

.package-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.package-card:hover .package-card-img {
    transform: scale(1.07);
}

.package-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.package-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0.85rem;
}

.package-duration {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--color-primary);
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #f59e0b;
    font-weight: 700;
}

.package-title {
    font-size: 1.45rem;
    color: var(--color-primary);
    margin-bottom: 0.85rem;
    line-height: 1.3;
}

.package-title a:hover {
    color: var(--color-accent-hover);
}

.package-description {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.package-highlights-list {
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.package-highlights-list li {
    font-size: 0.85rem;
    color: var(--color-text-main);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.package-highlights-list li i {
    color: var(--color-accent);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}

/* ---------------------------------------------------------
   9. PACKAGE DETAIL PAGE
   --------------------------------------------------------- */
.package-detail-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    padding: calc(var(--nav-height) + 2rem) 0 4rem;
}

.package-detail-hero .hero-overlay {
    background: linear-gradient(180deg, 
        rgba(6, 23, 19, 0.4) 0%, 
        rgba(6, 23, 19, 0.75) 60%, 
        rgba(6, 23, 19, 0.98) 100%);
}

.package-detail-header-content {
    position: relative;
    z-index: 5;
}

.package-detail-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
}

.meta-pill i {
    color: var(--color-accent);
}

.package-detail-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.package-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3.5rem;
    align-items: start;
}

/* Highlights Grid */
.highlights-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0 3.5rem;
}

.highlight-item {
    background: var(--color-sand);
    border: 1px solid var(--color-border);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform var(--transition-fast);
}

.highlight-item:hover {
    transform: translateY(-3px);
    background: #ffffff;
    box-shadow: var(--shadow-subtle);
}

.highlight-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.highlight-text {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.45;
}

/* Day-by-Day Timeline */
.itinerary-timeline {
    position: relative;
    padding-left: 2.5rem;
    margin: 2.5rem 0 3.5rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 25px;
    left: 15px;
    width: 2.5px;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-primary) 100%);
    border-radius: 2px;
}

.timeline-step {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border: 3px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.timeline-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-subtle);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.timeline-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-medium);
}

.timeline-header {
    margin-bottom: 0.85rem;
}

.timeline-day-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent-hover);
    margin-bottom: 0.3rem;
}

.timeline-title {
    font-size: 1.35rem;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
}

.timeline-route {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-ocean);
    background: rgba(12, 74, 96, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
}

.timeline-desc {
    font-size: 0.95rem;
    color: var(--color-text-main);
    line-height: 1.65;
    margin-top: 0.85rem;
}

.timeline-stay {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--color-border);
    font-size: 0.85rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-stay i {
    color: var(--color-accent);
}

/* Inclusions & Exclusions */
.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
}

.inclusions-box {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.inclusions-box.included {
    border-top: 4px solid var(--color-accent);
}

.inclusions-box.excluded {
    border-top: 4px solid #ef4444;
}

.inclusions-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.inclusions-list li {
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.inclusions-box.included li i {
    color: #10b981;
    margin-top: 4px;
}

.inclusions-box.excluded li i {
    color: #ef4444;
    margin-top: 4px;
}

/* Sticky Booking Sidebar */
.package-booking-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-medium);
}

.price-lead-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    font-weight: 600;
}

.price-sub {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.sidebar-features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.8rem;
}

.sidebar-feature-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.92rem;
    color: var(--color-text-main);
}

.sidebar-feature-row i {
    color: var(--color-accent);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* ---------------------------------------------------------
   10. WHY TRAVEL WITH PINTO CEYLON TRAVELS
   --------------------------------------------------------- */
.why-us-section {
    background: var(--color-primary);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

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

.why-us-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: transform var(--transition-normal), background var(--transition-normal);
}

.why-us-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
}

.why-us-icon-circle {
    width: 68px;
    height: 68px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1.5px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--color-accent);
}

.why-us-card:hover .why-us-icon-circle {
    background: var(--color-accent);
    color: var(--color-primary);
}

.why-us-card-title {
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.why-us-card-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ---------------------------------------------------------
   11. ABOUT US PAGE
   --------------------------------------------------------- */
.about-story-section {
    background: var(--color-sand);
}

.about-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-split-row:last-child {
    margin-bottom: 0;
}

.about-split-row.reverse {
    direction: rtl;
}

.about-split-row.reverse > * {
    direction: ltr;
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    height: 480px;
}

.about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge-floating {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(11, 40, 34, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-accent);
    color: #ffffff;
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.badge-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.stats-bar-section {
    background: var(--color-primary-dark);
    color: #ffffff;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item-label {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

/* ---------------------------------------------------------
   12. GALLERY PAGE & LIGHTBOX
   --------------------------------------------------------- */
.gallery-section {
    background: var(--color-sand);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    cursor: pointer;
}

.gallery-card.tall {
    grid-row: span 2;
    height: 660px;
}

.gallery-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.gallery-card:hover .gallery-card-img {
    transform: scale(1.08);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(11, 40, 34, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #ffffff;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-caption {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.gallery-category-pill {
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(6, 23, 19, 0.95);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img-wrapper {
    max-width: 100%;
    max-height: 80vh;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-caption-text {
    margin-top: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.lightbox-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    color: #ffffff;
    font-size: 2rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.lightbox-close-btn:hover {
    color: var(--color-accent);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-nav-btn:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* ---------------------------------------------------------
   13. REVIEWS & TESTIMONIALS
   --------------------------------------------------------- */
.reviews-section {
    background: var(--color-sand);
}

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

.review-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
}

.review-quote-icon {
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.25);
    line-height: 1;
    margin-bottom: 1rem;
}

.review-stars {
    color: #f59e0b;
    display: flex;
    gap: 0.3rem;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.98rem;
    color: var(--color-text-main);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-style: italic;
}

.review-author-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.review-author-origin {
    font-size: 0.82rem;
    color: var(--color-text-light);
}

.review-tour-tag {
    font-size: 0.78rem;
    color: var(--color-ocean);
    font-weight: 600;
    margin-top: 2px;
}

/* ---------------------------------------------------------
   14. CONTACT PAGE
   --------------------------------------------------------- */
.contact-section {
    background: var(--color-sand);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-panel {
    background: var(--color-primary);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-elevated);
}

.contact-info-title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-info-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.contact-item-text p, .contact-item-text a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item-text a:hover {
    color: var(--color-accent);
}

.contact-form-panel {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.75rem;
    box-shadow: var(--shadow-medium);
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.9rem 1.25rem;
    background: var(--color-sand);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-main);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-alert {
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-alert.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-alert.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ---------------------------------------------------------
   15. CTA BANNER
   --------------------------------------------------------- */
.cta-banner-section {
    position: relative;
    padding: clamp(6rem, 10vw, 10rem) 0;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(6, 23, 19, 0.75) 0%, 
        rgba(6, 23, 19, 0.88) 100%);
    z-index: 2;
}

.cta-banner-content {
    position: relative;
    z-index: 5;
    max-width: 820px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.cta-desc {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* ---------------------------------------------------------
   16. FOOTER
   --------------------------------------------------------- */
.site-footer {
    background: var(--color-primary-dark);
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    padding: clamp(4.5rem, 7vw, 6.5rem) 0 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.footer-description {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--color-accent);
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.footer-contact-list li i {
    color: var(--color-accent);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact-list a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-legal-links a:hover {
    color: var(--color-accent);
}

.footer-legal-links .sep {
    color: rgba(255, 255, 255, 0.3);
}

/* ---------------------------------------------------------
   17. FLOATING ACTION BUTTONS (WHATSAPP & REVIEWS)
   --------------------------------------------------------- */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 990;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip, .floating-btn-tooltip {
    position: absolute;
    right: 70px;
    background: var(--color-primary-dark);
    color: #ffffff;
    padding: 0.45rem 0.95rem;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-whatsapp:hover .whatsapp-tooltip,
.floating-review-btn:hover .floating-btn-tooltip {
    opacity: 1;
}

/* Floating Review Button Above WhatsApp */
.floating-review-btn {
    position: fixed;
    bottom: calc(2rem + 70px);
    right: 2.2rem;
    width: 52px;
    height: 52px;
    background: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
    z-index: 990;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-fast);
    border: 2px solid #ffffff;
}

.floating-review-btn:hover {
    transform: scale(1.1);
    background: var(--color-accent-hover);
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.65);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-accent);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* ---------------------------------------------------------
   18. GUEST REVIEW POPUP MODAL / TAB
   --------------------------------------------------------- */
.review-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(6, 23, 19, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.review-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.review-modal-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    padding: clamp(2rem, 4vw, 3rem);
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-border);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.4s var(--ease-out-expo);
}

.review-modal-backdrop.active .review-modal-card {
    transform: translateY(0) scale(1);
}

.review-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-sand);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.review-modal-close:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.review-modal-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1.5px solid var(--color-accent);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 0.75rem;
}

/* Stars Picker */
.stars-picker {
    display: inline-flex;
    gap: 0.4rem;
}

.star-pick {
    font-size: 1.6rem;
    color: #cbd5e1;
    padding: 0.2rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.star-pick:hover {
    transform: scale(1.2);
}

.star-pick.active {
    color: #f59e0b;
}

/* ---------------------------------------------------------
   19. RESPONSIVE BREAKPOINTS
   --------------------------------------------------------- */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .package-detail-layout {
        grid-template-columns: 1fr;
    }
    .package-booking-sidebar {
        position: static;
    }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .about-split-row, .about-split-row.reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        direction: ltr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .destinations-grid, .packages-grid, .reviews-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .form-group-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
    .floating-review-btn {
        bottom: calc(1.5rem + 64px);
        right: 1.5rem;
        width: 46px;
        height: 46px;
        font-size: 1.15rem;
    }
    .floating-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }
}

/* ---------------------------------------------------------
   20. SEO FAQ ACCORDION STYLES
   --------------------------------------------------------- */
.faq-section {
    background-color: var(--color-sand);
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-subtle);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.35rem 1.75rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    font-size: 0.95rem;
    color: var(--color-accent);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.75rem;
    color: var(--color-text-main);
    font-size: 1.02rem;
    line-height: 1.75;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.75rem 1.5rem 1.75rem;
}

/* ---------------------------------------------------------
   21. REDUCED MOTION ACCESSIBILITY
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

