/* =========================================
   Base & Variables
   ========================================= */
   :root {
    /* Color Palette */
    --primary: #1E3A8A; /* Mountain Blue */
    --primary-light: #3B82F6; /* Sky Blue */
    --secondary: #0EA5E9; /* Sky Blue Accent */
    --secondary-light: #38BDF8; /* Lighter Sky Blue Accent */
    --dark: #0F172A;
    --darker: #0B0F19;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --text-main: #334155;
    --text-muted: #64748B;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-bg-dark: rgba(15, 23, 42, 0.7);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions & Shadows */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.text-primary { color: var(--primary); }
.text-danger { color: #EF4444; }
.bg-light { background-color: var(--white); }

/* =========================================
   Typography & Utilities
   ========================================= */
.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.text-center .section-subtitle::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.5rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline.dark {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline.dark:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-light);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-text:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.btn-text:hover::after {
    width: 100%;
}

.btn-text {
    position: relative;
}

/* =========================================
   Animations
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease-out;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* =========================================
   Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

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

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* For parallax effect slightly */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    padding-top: 80px; /* Offset for navbar */
}

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
    background-image: linear-gradient(to right, var(--secondary), var(--white));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.stat-num i {
    color: var(--secondary);
}

.stat-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   About Section
   ========================================= */
.about {
    padding: 6rem 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white); /* Fallback */
    background: rgba(255, 255, 255, 0.85);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
}

.about-text {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--dark);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* =========================================
   Why Choose Us
   ========================================= */
.why-us {
    padding: 6rem 0;
    background-color: var(--light);
}

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

.why-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transition: var(--transition);
    z-index: -1;
    opacity: 0.05;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
    height: 100%;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--secondary);
    transform: rotateY(180deg);
}

.why-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.why-card p {
    color: var(--text-muted);
}

/* =========================================
   Interactive Story Map
   ========================================= */
.story-map-section {
    padding: 6rem 0;
    background-color: var(--darker);
    color: var(--light);
    position: relative;
}

.story-map-section .section-title,
.story-map-section .section-subtitle,
.story-map-section .section-desc {
    color: var(--white);
}

.story-map-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
}

/* Left Column: Story */
.story-content {
    position: relative;
    padding-bottom: 50vh; /* space to scroll past the last item */
}

.story-progress-bar {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    z-index: 1;
}

.story-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--secondary);
    border-radius: 2px;
    transition: height 0.1s ease-out;
}

.story-card {
    position: relative;
    padding-left: 60px;
    margin-bottom: 6rem;
    opacity: 0.3;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
}

.story-card::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 30px;
    width: 18px;
    height: 18px;
    background: var(--darker);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: var(--transition);
    z-index: 2;
}

.story-card.active {
    opacity: 1;
    transform: translateY(0);
}

.story-card.active::before {
    background: var(--secondary);
    border-color: var(--white);
    box-shadow: 0 0 15px var(--secondary);
}

.story-card-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.story-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.elevation-badge, .time-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.elevation-badge { color: var(--secondary-light); }
.time-badge { color: rgba(255, 255, 255, 0.7); }

.story-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.story-card h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.story-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-pill {
    background: rgba(14, 165, 233, 0.15);
    color: var(--secondary-light);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Right Column: Sticky Map */
.story-map-container {
    position: sticky;
    top: 100px;
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.interactive-map-wrapper {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1E293B 0%, #0F172A 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5), 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
}

.abstract-topo-map {
    width: 100%;
    height: 100%;
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: 0 0;
}

/* Map Path Animation */
#hike-route-active {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 1s ease-out;
}

/* Map Markers */
.map-marker {
    opacity: 0.4;
    transition: all 0.5s ease;
}

.map-marker.active {
    opacity: 1;
}

.map-marker.active .marker-pulse {
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    transform-origin: center;
}

.map-marker.visited {
    opacity: 0.8;
}

.map-marker.visited .marker-core {
    fill: var(--secondary-light);
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.marker-glow {
    animation: pulse-glow 3s infinite alternate;
    transform-origin: center;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.3); opacity: 0.6; }
}

.marker-label {
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    transition: opacity 0.3s;
    opacity: 0;
}

.map-marker.active .marker-label,
.map-marker.visited .marker-label {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .story-map-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-map-container {
        position: relative;
        top: 0;
        height: 400px;
        margin-bottom: 2rem;
        order: -1; /* Map on top in mobile */
    }
    
    .story-content {
        padding-bottom: 2rem;
    }
    
    .interactive-map-wrapper {
        border-radius: 16px;
    }
}

/* =========================================
   Packages Section
   ========================================= */
.packages {
    padding: 6rem 0;
    background-color: var(--white);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.package-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.package-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 600;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.package-mepo h4, .package-highlights h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.package-mepo ul {
    margin-bottom: 1.5rem;
}

.package-mepo li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    color: var(--text-muted);
}

.package-mepo li span:last-child {
    font-weight: 700;
    color: var(--dark);
}

.package-highlights ul {
    margin-bottom: 2rem;
}

.package-highlights li {
    padding: 0.35rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-highlights li i {
    color: var(--secondary);
}

.premium-card {
    border: 2px solid var(--primary-light);
    transform: scale(1.02);
}

.premium-card:hover {
    transform: scale(1.02) translateY(-10px);
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.package-content .btn {
    margin-top: auto;
}

/* =========================================
   Gallery Section
   ========================================= */
.gallery {
    padding: 6rem 0;
    background-color: var(--light);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

/* Make some items span multiple columns/rows for masonry effect */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-category {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    transform: translateY(20px);
    transition: var(--transition);
    display: block;
}

.gallery-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.05s;
}

.gallery-item:hover .gallery-category,
.gallery-item:hover .gallery-count {
    transform: translateY(0);
}

/* =========================================
   Testimonials
   ========================================= */
.testimonials {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.testimonial-card {
    background: var(--light);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: rgba(30, 58, 138, 0.05);
    font-family: serif;
    line-height: 1;
}

.stars {
    color: #FBBF24;
    margin-bottom: 1rem;
}

.testi-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    position: relative;
    padding: 8rem 0;
    text-align: center;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
}

.cta-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.cta-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* =========================================
   Contact Section
   ========================================= */
.contact {
    padding: 6rem 0;
    background-color: var(--light);
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-item:hover .contact-icon {
    background: var(--primary);
    color: var(--white);
}

.contact-item:first-child .contact-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-item:first-child:hover .contact-icon {
    background: #25D366;
    color: var(--white);
}

.contact-text {
    text-align: left;
}

.contact-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--darker);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand h3 span {
    color: var(--secondary);
}

.footer-tagline {
    font-style: italic;
    font-size: 1.1rem;
}

.footer h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

/* =========================================
   Floating Utilities
   ========================================= */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: var(--white);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================
   Modals
   ========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--text-muted);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--danger);
}

.modal-header {
    padding: 2rem 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.modal-header h2 {
    font-size: 1.75rem;
    color: var(--dark);
}

.modal-body {
    padding: 2rem 2.5rem;
}

.modal-footer {
    padding: 1.5rem 2.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: flex-end;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.detail-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-list {
    margin-left: 0;
}

.detail-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.detail-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
}

/* Timeline */
.timeline {
    margin-top: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(59, 130, 246, 0.2);
}

.timeline-day {
    position: relative;
    margin-bottom: 1rem;
}

.timeline-day h4 {
    background: var(--primary-light);
    color: var(--white);
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-left: -10px;
}

.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-light);
}

.timeline-item .time {
    font-weight: 600;
    color: var(--primary);
    width: 120px;
    font-size: 0.9rem;
}

.timeline-item .desc {
    color: var(--text-main);
    flex: 1;
    font-size: 0.95rem;
}

.terms-box {
    background: rgba(14, 165, 233, 0.05);
    border-left: 4px solid var(--secondary);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1rem;
}

.terms-box p {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.8;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border-radius: 5px;
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {transform: translate(-50%, -50%) scale(0.9)}
    to {transform: translate(-50%, -50%) scale(1)}
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

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

#lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#lightbox-category {
    color: #ccc;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

#lightbox-counter {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3010;
    pointer-events: none;
}

.lightbox-btn {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.lightbox-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
    }
    
    .nav-menu.active { right: 0; }
    
    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .nav-link { font-size: 1.25rem; }
    
    .nav-cta { display: none; }
    
    .hero-title { font-size: 2.75rem; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .hero-actions { flex-direction: column; }
    
    .section-title { font-size: 2rem; }
    
    .package-grid { grid-template-columns: 1fr; }
    
    .cta-title { font-size: 2.25rem; }
    .cta-actions { flex-direction: column; }
    
    .contact-card { padding: 2rem; }
    .contact-item { width: 100%; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.25rem; }
    .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .modal-content { width: 95%; margin: 10% auto; }
    .modal-header, .modal-body, .modal-footer { padding: 1.5rem; }
    .timeline-item .time { width: 100%; margin-bottom: 0.25rem; }
}
