/* =========================================
   HOLA AMIGOS - Design System & Styles
   ========================================= */

/* ===== CSS Custom Properties ===== */
:root {
    /* Primary Colors - Mountain/Adventure Theme */
    --green-900: #0a2e1a;
    --green-800: #0d4a2b;
    --green-700: #116b3e;
    --green-600: #158c51;
    --green-500: #1a9e5c;
    --green-400: #2db872;
    --green-300: #5cd69a;
    --green-200: #a0e8c4;
    --green-100: #d4f5e4;
    --green-50: #eefbf4;

    /* Accent - Amber/Gold */
    --amber-500: #fbbf33;
    --amber-400: #fcd054;
    --amber-300: #fde088;
    --amber-600: #e5a914;
    --amber-700: #c48d0c;

    /* Neutrals */
    --charcoal: #1a1a2e;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;

    /* Functional */
    --danger: #dc3545;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

    /* Spacing */
    --section-py: 100px;
    --container-px: 20px;

    /* Borders & Radii */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(26, 158, 92, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Base Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

ul { list-style: none; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--green-500); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-700); }

/* ===== Utility Classes ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.text-accent {
    color: var(--green-500);
}

.text-accent-light {
    color: var(--amber-500);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-base);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 158, 92, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 158, 92, 0.5);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--green-700);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    font-size: var(--text-lg);
    padding: 16px 36px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-call {
    background: var(--white);
    color: var(--green-700);
    border-color: var(--white);
}

.btn-call:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-email {
    background: transparent;
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.btn-email:hover {
    background: var(--white);
    color: var(--green-700);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Section Styling ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: var(--green-100);
    color: var(--green-700);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: 16px;
    font-weight: 800;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    line-height: 1.8;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar.scrolled .nav-link { color: var(--gray-800); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--green-500); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition-base);
}

.navbar.scrolled .nav-logo img {
    border-color: var(--green-500);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: var(--text-sm);
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

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

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.navbar.scrolled .hamburger span {
    background: var(--gray-800);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 48px;
    overflow: hidden;
    gap: 0;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 46, 26, 0.7) 0%,
        rgba(10, 46, 26, 0.5) 40%,
        rgba(10, 46, 26, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    color: var(--amber-500);
    font-size: var(--text-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title-line {
    display: block;
    font-size: var(--text-6xl);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: var(--text-lg);
    max-width: 650px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--white);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 32px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 20px 40px;
    margin-top: 32px;
    width: fit-content;
    align-items: center;
}

.hero-stat {
    text-align: center;
    color: var(--white);
    min-width: 80px;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--amber-500);
    line-height: 1;
}

.hero-stat-plus {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--amber-500);
}

.hero-stat-icon {
    font-size: var(--text-2xl);
    color: var(--amber-500);
    display: block;
    margin-bottom: 4px;
}

.hero-stat-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: var(--text-xs);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--amber-500);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== TORN EDGE DIVIDERS ===== */
.torn-edge {
    position: relative;
    height: 60px;
    margin-top: -30px;
    z-index: 10;
}

.torn-edge-white {
    background: var(--white);
    clip-path: polygon(
        0% 45%, 2% 40%, 5% 50%, 8% 35%, 12% 48%,
        15% 30%, 18% 45%, 22% 38%, 25% 50%, 28% 35%,
        32% 48%, 35% 30%, 38% 42%, 42% 50%, 45% 35%,
        48% 45%, 52% 38%, 55% 50%, 58% 32%, 62% 48%,
        65% 38%, 68% 50%, 72% 35%, 75% 45%, 78% 38%,
        82% 50%, 85% 35%, 88% 48%, 92% 38%, 95% 50%,
        98% 40%, 100% 45%, 100% 100%, 0% 100%
    );
}

.torn-edge-green {
    background: var(--green-800);
    clip-path: polygon(
        0% 45%, 3% 38%, 6% 50%, 9% 32%, 13% 48%,
        16% 35%, 19% 50%, 23% 38%, 26% 48%, 29% 35%,
        33% 50%, 36% 32%, 39% 45%, 43% 50%, 46% 35%,
        49% 42%, 53% 50%, 56% 38%, 59% 48%, 63% 32%,
        66% 45%, 69% 50%, 73% 38%, 76% 48%, 79% 35%,
        83% 50%, 86% 38%, 89% 48%, 93% 35%, 96% 50%,
        99% 42%, 100% 45%, 100% 100%, 0% 100%
    );
}

.torn-edge-white-from-green {
    background: var(--white);
    clip-path: polygon(
        0% 50%, 4% 38%, 7% 48%, 11% 32%, 14% 45%,
        18% 38%, 21% 50%, 25% 35%, 28% 48%, 31% 38%,
        35% 50%, 38% 30%, 41% 45%, 44% 50%, 48% 35%,
        51% 48%, 54% 38%, 58% 50%, 61% 32%, 64% 48%,
        68% 38%, 71% 50%, 74% 35%, 78% 45%, 81% 38%,
        84% 50%, 88% 32%, 91% 48%, 94% 38%, 97% 48%,
        100% 42%, 100% 100%, 0% 100%
    );
}

.torn-edge-green-2 {
    background: var(--green-700);
    clip-path: polygon(
        0% 48%, 3% 35%, 7% 50%, 10% 38%, 14% 48%,
        17% 30%, 20% 45%, 24% 50%, 27% 35%, 31% 48%,
        34% 38%, 37% 50%, 41% 32%, 44% 45%, 47% 50%,
        51% 38%, 54% 48%, 57% 32%, 61% 50%, 64% 38%,
        67% 48%, 71% 35%, 74% 50%, 77% 38%, 81% 48%,
        84% 32%, 87% 45%, 91% 50%, 94% 38%, 97% 48%,
        100% 40%, 100% 100%, 0% 100%
    );
}

.torn-edge-white-from-green-2 {
    background: var(--white);
    clip-path: polygon(
        0% 42%, 4% 50%, 7% 35%, 11% 48%, 14% 38%,
        18% 50%, 21% 32%, 25% 48%, 28% 38%, 31% 50%,
        35% 35%, 38% 48%, 41% 38%, 44% 50%, 48% 32%,
        51% 45%, 54% 50%, 58% 38%, 61% 48%, 64% 35%,
        68% 50%, 71% 38%, 74% 48%, 78% 32%, 81% 50%,
        84% 38%, 88% 48%, 91% 35%, 94% 50%, 97% 38%,
        100% 45%, 100% 100%, 0% 100%
    );
}

/* ===== SERVICES ===== */
.services {
    padding: var(--section-py) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    position: relative;
}

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

.service-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 46, 26, 0.6));
}

.service-card-content {
    padding: 28px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: var(--text-xl);
    margin-bottom: 16px;
    margin-top: -44px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.service-card-content h3 {
    font-size: var(--text-xl);
    margin-bottom: 10px;
}

.service-card-content p {
    color: var(--gray-600);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-500);
    font-weight: 600;
    font-size: var(--text-sm);
    font-family: var(--font-heading);
}

.service-link:hover {
    color: var(--green-700);
    gap: 10px;
}

/* ===== TREKS ===== */
.treks {
    padding: var(--section-py) 0 80px;
    background: var(--green-800);
    color: var(--white);
}

.treks .section-tag {
    background: rgba(255,255,255,0.1);
    color: var(--amber-500);
}

.treks .section-title {
    color: var(--white);
}

.treks .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.treks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    margin-bottom: 50px;
}

.trek-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.trek-card-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
    min-height: 660px;
}

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

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

.trek-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 46, 26, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: all var(--transition-base);
}

.trek-card:hover .trek-card-overlay {
    background: linear-gradient(180deg, transparent 10%, rgba(10, 46, 26, 0.95));
}

.trek-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trek-hard { background: #ff6b35; color: var(--white); }
.trek-extreme { background: var(--danger); color: var(--white); }
.trek-moderate { background: var(--amber-500); color: var(--charcoal); }
.trek-easy { background: var(--green-400); color: var(--white); }

.trek-card-overlay h3 {
    color: var(--white);
    font-size: var(--text-xl);
    margin-bottom: 8px;
}

.trek-card-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.trek-card:hover .trek-card-overlay p {
    max-height: 100px;
}

.trek-book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--amber-500);
    font-weight: 600;
    font-size: var(--text-sm);
    font-family: var(--font-heading);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.trek-card:hover .trek-book {
    opacity: 1;
    transform: translateY(0);
}

.trek-book:hover {
    color: var(--amber-300);
}

/* Trek Tags List */
.treks-list {
    text-align: center;
}

.treks-list h3 {
    color: var(--white);
    font-size: var(--text-xl);
    margin-bottom: 20px;
}

.treks-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.trek-tag {
    padding: 6px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.8);
    font-family: var(--font-heading);
    transition: all var(--transition-base);
}

.trek-tag:hover {
    background: var(--amber-500);
    color: var(--charcoal);
    border-color: var(--amber-500);
}

/* ===== ABOUT ===== */
.about {
    padding: var(--section-py) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-frame {
    position: absolute;
    inset: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: calc(var(--radius-lg) - 8px);
    pointer-events: none;
}

.about-badges {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.about-badge {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--green-50);
    border: 1px solid var(--green-200);
    border-radius: var(--radius-md);
}

.about-badge i {
    font-size: var(--text-2xl);
    color: var(--green-500);
}

.about-badge span {
    font-size: var(--text-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--charcoal);
}

.about-badge small {
    font-weight: 400;
    color: var(--gray-600);
    display: block;
    font-size: var(--text-xs);
}

.about-role {
    color: var(--green-600);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    margin-bottom: 20px;
    font-style: italic;
}

.about-text {
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-certs {
    margin-top: 28px;
    padding: 24px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}

.about-certs h4 {
    font-size: var(--text-lg);
    margin-bottom: 16px;
    color: var(--charcoal);
}

.cert-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cert-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-500);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    flex-shrink: 0;
    margin-top: 2px;
}

.cert-item strong {
    display: block;
    font-size: var(--text-sm);
    color: var(--charcoal);
}

.cert-item span {
    display: block;
    font-size: var(--text-xs);
    color: var(--gray-600);
}

.about-skills {
    margin-top: 24px;
}

.about-skills h4 {
    font-size: var(--text-lg);
    margin-bottom: 14px;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skills-tags span {
    padding: 6px 14px;
    background: var(--green-100);
    color: var(--green-700);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
    font-family: var(--font-heading);
    transition: var(--transition-base);
}

.skills-tags span:hover {
    background: var(--green-500);
    color: var(--white);
}

/* ===== STATS PARALLAX ===== */
.stats-parallax {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -50px 0;
    z-index: 0;
}

.parallax-bg img {
    width: 100%;
    height: calc(100% + 100px);
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 46, 26, 0.85);
    z-index: 1;
}

.stats-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 180px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--amber-500);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--amber-500);
}

.stat-label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: var(--text-sm);
    font-family: var(--font-heading);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== EXPERIENCE TIMELINE ===== */
.experience {
    padding: var(--section-py) 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--green-300), var(--green-700));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 60px;
}

.timeline-left { left: 0; text-align: right; }
.timeline-right { left: 50%; }

.timeline-item::before {
    content: '';
    position: absolute;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--green-500);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--green-200);
    z-index: 2;
}

.timeline-left::before { right: -8px; }
.timeline-right::before { left: -8px; }

.timeline-content {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.timeline-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.timeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
    color: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    font-size: var(--text-lg);
}

.timeline-content h3 {
    font-size: var(--text-xl);
    margin-bottom: 4px;
}

.timeline-role {
    display: inline-block;
    font-size: var(--text-sm);
    color: var(--green-600);
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: 14px;
}

.timeline-highlights {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.timeline-left .timeline-highlights { justify-content: flex-end; }

.timeline-highlights span {
    padding: 4px 12px;
    background: var(--green-50);
    color: var(--green-700);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
    font-family: var(--font-heading);
}

/* ===== ATHLETIC ===== */
.athletic {
    padding: var(--section-py) 0;
    background: var(--gray-100);
}

.athletic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.athletic-card {
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-slow);
}

.athletic-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-300);
}

.athletic-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-100), var(--green-200));
    color: var(--green-600);
    border-radius: 50%;
    font-size: var(--text-2xl);
    margin: 0 auto 20px;
    transition: all var(--transition-base);
}

.athletic-card:hover .athletic-icon {
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
    color: var(--white);
    transform: scale(1.1);
}

.athletic-card h3 {
    font-size: var(--text-lg);
    margin-bottom: 10px;
}

.athletic-card p {
    color: var(--gray-600);
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--white);
}

.testimonials-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar { display: none; }

.testimonial-card {
    min-width: 380px;
    max-width: 380px;
    scroll-snap-align: start;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

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

.testimonial-stars {
    margin-bottom: 16px;
    color: var(--amber-500);
    font-size: var(--text-sm);
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: var(--text-sm);
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    font-size: var(--text-4xl);
    color: var(--green-400);
}

.testimonial-author strong {
    display: block;
    font-size: var(--text-sm);
    color: var(--charcoal);
    font-family: var(--font-heading);
}

.testimonial-author span {
    font-size: var(--text-xs);
    color: var(--gray-600);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-base);
}

.testimonial-dots .dot.active {
    background: var(--green-500);
    width: 28px;
    border-radius: 5px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-700), var(--green-900));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 51, 0.08) 0%, transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.cta-content { position: relative; z-index: 2; }

.cta-content .section-tag {
    background: rgba(255,255,255,0.1);
    color: var(--amber-500);
}

.cta-title {
    color: var(--white);
    font-size: var(--text-4xl);
    margin-bottom: 20px;
}

.cta-text {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 36px;
    font-size: var(--text-lg);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    padding: var(--section-py) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info p {
    color: var(--gray-600);
    margin-top: 12px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    color: var(--green-600);
    border-radius: var(--radius-md);
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: var(--text-sm);
    color: var(--charcoal);
    font-family: var(--font-heading);
}

.contact-item a {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.contact-item a:hover {
    color: var(--green-500);
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 50%;
    font-size: var(--text-lg);
    transition: all var(--transition-base);
}

.contact-socials a:hover {
    background: var(--green-500);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-form h3 {
    font-size: var(--text-xl);
    margin-bottom: 24px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--gray-800);
    transition: all var(--transition-base);
    outline: none;
}

.form-group label {
    position: absolute;
    top: 14px;
    left: 18px;
    font-size: var(--text-base);
    color: var(--gray-500);
    pointer-events: none;
    transition: all var(--transition-base);
    background: transparent;
    padding: 0 4px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(26, 158, 92, 0.15);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: var(--text-xs);
    color: var(--green-600);
    background: var(--gray-100);
}

.form-group select + label {
    top: -8px;
    font-size: var(--text-xs);
    color: var(--green-600);
    background: var(--gray-100);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding-top: 0;
    position: relative;
}

.footer-wave {
    color: var(--charcoal);
    margin-bottom: -2px;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

.footer .container {
    padding-top: 40px;
    padding-bottom: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}

.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
    border: 2px solid var(--green-500);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
    font-size: var(--text-sm);
    margin-bottom: 10px;
}

.footer-desc {
    font-size: var(--text-sm);
    line-height: 1.7;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--white);
    font-size: var(--text-base);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--amber-500);
}

.footer-links li,
.footer-services li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a,
.footer-contact a {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    transition: var(--transition-base);
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover {
    color: var(--amber-500);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--green-400);
    width: 16px;
    flex-shrink: 0;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.footer-socials a:hover {
    background: var(--green-500);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.4);
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all var(--transition-base);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--charcoal);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-family: var(--font-heading);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 68px;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0.15); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
}

/* ===== REVEAL ANIMATION (initial state for GSAP) ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-stats {
        gap: 30px;
        padding: 20px 32px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-py: 80px;
    }

    .section-title { font-size: var(--text-3xl); }

    .hero-title-line { font-size: var(--text-5xl); }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .treks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trek-card-large {
        grid-column: 1 / -1;
        min-height: 400px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper img { height: 400px; }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .athletic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before { left: 20px; }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline-left { text-align: left; }
    .timeline-right { left: 0; }

    .timeline-left::before,
    .timeline-right::before {
        left: 12px;
        right: auto;
    }

    .timeline-left .timeline-highlights { justify-content: flex-start; }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 16px 24px;
    }

    .scroll-indicator { display: none; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
    }

    .nav-links.active { right: 0; }

    .nav-links .nav-link {
        color: var(--gray-800);
        font-size: var(--text-lg);
    }

    .nav-cta { display: none; }

    .hamburger { display: flex; }

    .hero-title-line { font-size: var(--text-4xl); }

    .hero { padding: 100px 20px 40px; }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .services-grid { grid-template-columns: 1fr; }

    .treks-grid { grid-template-columns: 1fr; }

    .trek-card-large { min-height: 350px; }
    .trek-card { height: 280px; }

    .stats-content {
        gap: 30px;
    }

    .stat-number { font-size: var(--text-4xl); }

    .athletic-grid { grid-template-columns: 1fr; }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
    }

    .cta-title { font-size: var(--text-3xl); }
    .cta-buttons { flex-direction: column; align-items: center; }

    .footer-grid { grid-template-columns: 1fr; }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title-line { font-size: var(--text-3xl); }
    .section-title { font-size: var(--text-2xl); }

    .container { padding: 0 16px; }

    .about-badges { flex-direction: column; }
    .about-image-wrapper img { height: 300px; }

    .contact-form-wrapper { padding: 24px; }
}

/* ===== CLIENT IMAGE OPTIMIZATIONS ===== */
/* Fine-tune focal points for real client photos */

/* Service cards - portrait photos used in landscape containers */
#service-treks .service-card-img img {
    object-position: center 30%;
}

#service-travel .service-card-img img {
    object-position: center 25%;
}

#service-group .service-card-img img {
    object-position: center top;
}

#service-training .service-card-img img {
    object-position: center center;
}

/* Trek Cards - optimize focal points */
#trek-kalsubai img {
    object-position: center 40%;
}

#trek-amk img {
    object-position: center 20%;
}

#trek-waterfall img {
    object-position: center 30%;
}

#trek-secret-waterfall img {
    object-position: center 35%;
}

#trek-infinity-pool img {
    object-position: center 60%;
}

/* About Section portrait - show face prominently */
.about-image-wrapper img {
    object-position: center 15%;
}

/* Parallax - wide mountain panorama */
.parallax-bg img {
    object-position: center 60%;
}

/* Mobile adjustments for client portrait images */
@media (max-width: 768px) {
    #service-treks .service-card-img img,
    #service-travel .service-card-img img,
    #service-group .service-card-img img {
        object-position: center 20%;
    }

    #trek-amk img {
        object-position: center 30%;
    }

    .about-image-wrapper img {
        object-position: center 10%;
    }
}

@media (max-width: 576px) {
    .about-image-wrapper img {
        object-position: center 12%;
    }

    .service-card-img { height: 200px; }
}

/* ===== Coming Soon Trek Badge ===== */
.trek-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.4);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    cursor: default;
    pointer-events: none;
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.2); }
    50% { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

/* ===== Photo Gallery Section ===== */
.gallery {
    padding: 80px 0 60px;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 12px;
    margin-top: 48px;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

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

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay span {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* Gallery focal points - ensure faces stay visible */
#trek-garbett img,
.gallery-item:nth-child(1) img { object-position: center 35%; }
.gallery-item:nth-child(2) img { object-position: center 25%; }  /* jungle/Snehal face */
.gallery-item:nth-child(3) img { object-position: center 45%; }  /* snow / Snehal */
.gallery-item:nth-child(4) img { object-position: center 40%; }  /* sunset */
.gallery-item:nth-child(5) img { object-position: center 50%; }  /* mountain */
.gallery-item:nth-child(6) img { object-position: center 20%; }  /* AMK face */
.gallery-item:nth-child(7) img { object-position: center 35%; }  /* Sandhan */
.gallery-item:nth-child(8) img { object-position: center 30%; }  /* waterfall */
.gallery-item:nth-child(9) img { object-position: center 40%; }  /* Kalsubai */

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item-wide { grid-column: span 2; }
    .gallery-item-tall { grid-row: span 2; }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .gallery-item-wide,
    .gallery-item-tall { grid-column: 1; grid-row: span 1; }
    .gallery { padding: 48px 0 32px; }
}

/* ===== SERVICES ACCORDION ===== */
.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--green-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 60px;
}

.svc-item {
    border-bottom: 1px solid var(--green-100);
    background: var(--white);
    transition: background var(--transition-base);
}
.svc-item:last-child { border-bottom: none; }

.svc-item.is-open {
    background: var(--green-50);
}

.svc-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: background var(--transition-base);
}
.svc-header:hover { background: var(--green-50); }

.svc-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.svc-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.svc-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--green-500);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.svc-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 4px;
    font-family: var(--font-heading);
}

.svc-tagline {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0;
}

.svc-arrow {
    color: var(--green-600);
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.svc-item.is-open .svc-arrow { transform: rotate(180deg); }

/* Accordion Body */
.svc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-item.is-open .svc-body { max-height: 800px; }

.svc-body-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    padding: 0 32px 32px;
}

.svc-img-col img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.svc-content-col {
    padding: 0 0 0 32px;
}

.svc-content-col h4 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--green-800);
    margin-bottom: 12px;
    font-weight: 700;
}

.svc-content-col p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: var(--text-base);
}

.svc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

.svc-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--gray-700);
    line-height: 1.5;
}
.svc-list li i {
    color: var(--green-500);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 12px;
}

.svc-cta { margin-top: 4px; }

/* Services Summary */
.svc-summary {
    text-align: center;
    background: linear-gradient(135deg, var(--green-800), var(--green-700));
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    color: var(--white);
}
.svc-summary h3 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}
.svc-summary p {
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin: 0 auto 16px;
    line-height: 1.8;
    font-size: var(--text-lg);
}
.svc-summary-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--amber-400) !important;
    font-size: var(--text-xl) !important;
    letter-spacing: 1px;
    margin-bottom: 28px !important;
}
.svc-summary .btn-primary {
    background: var(--amber-500);
    color: var(--charcoal);
    border-color: var(--amber-500);
}
.svc-summary .btn-primary:hover {
    background: var(--amber-400);
    transform: translateY(-3px);
}

/* ===== TREK ENQUIRE BUTTON ===== */
.trek-enquire {
    background: rgba(251, 191, 51, 0.15) !important;
    color: var(--amber-400) !important;
    border: 1px solid var(--amber-400) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-full) !important;
    font-size: var(--text-sm) !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all var(--transition-base) !important;
    cursor: pointer !important;
    text-decoration: none !important;
}
.trek-enquire:hover {
    background: var(--amber-500) !important;
    color: var(--charcoal) !important;
    border-color: var(--amber-500) !important;
    transform: translateY(-2px) !important;
}

/* ===== ABOUT STORY SECTION ===== */
.about-story {
    margin-bottom: 32px;
}

.story-heading {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--green-700);
    margin: 24px 0 8px;
    padding-left: 14px;
    border-left: 3px solid var(--amber-500);
}
.story-heading:first-child { margin-top: 0; }

.story-quote {
    border-left: 4px solid var(--green-500);
    background: var(--green-50);
    padding: 16px 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--green-800);
    font-style: italic;
    font-size: var(--text-lg);
    margin: 20px 0 0;
    font-family: var(--font-serif);
    line-height: 1.6;
}

/* ===== RESPONSIVE - Services Accordion ===== */
@media (max-width: 992px) {
    .svc-body-inner {
        grid-template-columns: 1fr;
    }
    .svc-content-col {
        padding: 20px 0 0;
    }
    .svc-img-col img { height: 220px; }
    .svc-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .svc-header { padding: 18px 20px; }
    .svc-body-inner { padding: 0 20px 24px; }
    .svc-title { font-size: var(--text-lg); }
    .svc-icon { width: 44px; height: 44px; font-size: 16px; }
    .svc-summary { padding: 36px 24px; }
    .svc-summary h3 { font-size: var(--text-2xl); }
}

/* ===== SERVICE CARDS GRID ===== */
.svc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.svc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--green-100);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.svc-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.svc-card:hover .svc-card-img img { transform: scale(1.06); }

.svc-card-num {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0,0,0,0.55);
    color: var(--amber-400);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
}

.svc-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.svc-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 4px;
}

.svc-card-tagline {
    font-size: var(--text-sm);
    color: var(--green-600);
    font-weight: 600;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.svc-card-desc {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 14px;
    flex: 1;
}

.svc-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.svc-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.5;
}
.svc-card-list li i {
    color: var(--green-500);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 11px;
}

.svc-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    color: var(--white);
    padding: 11px 20px;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    align-self: flex-start;
    margin-top: auto;
}
.svc-card-btn:hover {
    background: linear-gradient(135deg, var(--green-600), var(--green-400));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 140, 81, 0.35);
    color: var(--white);
}

/* Responsive svc-cards-grid */
@media (max-width: 1024px) {
    .svc-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
    .svc-cards-grid { grid-template-columns: 1fr; gap: 18px; }
    .svc-card-img { height: 180px; }
}

