/* --- ALPS BRAND VARIABLES --- */
:root {
    --alps-blue: #0f6ebe;        /* From your old code / logo */
    --alps-navy: #001c33;        /* Deep brand navy */
    --alps-green: #82c66f;       /* Brand green from old code / tagline */
    --alps-text: #093459;
    
    /* Premium Airy Backgrounds */
    --bg-light: #ffffff;
    --bg-mid: #f0f4f8;
    --bg-dark: #e1e8ed;
    --particle-color: rgba(9, 52, 89, 0.15);
}

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

body, html {
    width: 100%;
    min-height: 100vh; /* <--- THE FIX */
    font-family: 'Open Sans', sans-serif;
    color: var(--alps-text);
    /* Soft, premium gradient background */
    background: radial-gradient(circle at 50% 20%, var(--bg-light) 0%, var(--bg-mid) 50%, var(--bg-dark) 100%);
    scroll-behavior: smooth;
}

/* --- NAVIGATION --- */
.alps-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure it stays above everything */
    padding: 1rem 0;
    
    /* The Glass Effect */
    background: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
    backdrop-filter: blur(15px); /* This creates the frosted glass look */
    -webkit-backdrop-filter: blur(15px); /* Safari support */
    
    /* Subtle bottom border for definition */
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    
    /* Light shadow to lift it off the page */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- LOGO STYLING --- */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 45px; /* Controls the overall height of the logo area */
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a, .lang-switch {
    color: var(--alps-navy);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links a:hover, .lang-switch:hover {
    color: var(--alps-blue);
}

.nav-logo-img {
    height: 100%; /* Scales image to match the .brand-logo height */
    width: auto;  /* Maintains aspect ratio */
    object-fit: contain;
    /* Optional: filter to make logo slightly sharper on glass */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

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

.btn-primary {
    background-color: var(--alps-navy);
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--alps-blue);
    transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 22vh;
    z-index: 30;
    /* overflow removed — product image intentionally hangs below into the next section */
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--alps-navy);
}

/* Masks for the text reveal animation */
.line-mask {
    overflow: hidden;
    display: block;
}

.hero-title .word {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
}

.hero-cta-wrapper {
    text-align: center;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--alps-navy);
    color: #ffffff;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0; /* Hidden initially for GSAP */
    transform: translateY(20px);
    transition: background-color 0.3s ease;
}

.btn-discover:hover {
    background-color: var(--alps-blue);
}

/* --- PARTICLES LAYER --- */
.particles-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    color: var(--particle-color);
    opacity: 0; /* Handled by GSAP */
}

/* Base starting positions for particles */
.p1 { top: 25%; left: 15%; width: 24px; filter: blur(2px); }
.p2 { top: 35%; right: 22%; width: 35px; filter: blur(4px); }
.p3 { top: 55%; left: 28%; width: 18px; }
.p4 { top: 70%; right: 18%; width: 28px; filter: blur(1px); }
.p5 { top: 45%; left: 12%; width: 12px; filter: blur(3px); }
.p6 { top: 20%; right: 32%; width: 20px; }

/* --- SLIDING PRODUCT & BADGES --- */
.hero-product-container {
    position: absolute;
    bottom: -5vh; /* UPDATED: Changed from -15vh so it hangs down less */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 55vh;
    z-index: 5;
    display: flex;
    justify-content: center;
}

.product-device {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 -20px 40px rgba(0,28,51,0.15));
}

.floating-badge {
    position: absolute;
    opacity: 0; /* Revealed by GSAP */
}

/* The 100% Pill Badge */
.badge-pill {
    top: 25%;
    left: -15%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(9, 52, 89, 0.08);
}

.pill-highlight {
    background: var(--alps-navy);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.pill-text {
    font-size: 0.85rem;
    line-height: 1.3;
    font-weight: 500;
    color: var(--alps-navy);
}

/* The Spinning Circular Badge */
.badge-circle {
    top: 15%;
    right: -10%;
    color: var(--alps-green);
    animation: rotateText 25s linear infinite;
}

@keyframes rotateText {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.philosophy-section {
    background-color: #f7f9fc; 
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15rem 2rem 10rem; /* UPDATED: Increased top padding from 10rem to 15rem */
    position: relative;
    z-index: 20; /* Stays at 20 so the Hero (30) overlaps it */
    overflow: hidden; 
    background: linear-gradient(to bottom, var(--bg-dark), #f7f9fc);
}

.philosophy-container {
    max-width: 1000px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.philosophy-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.3;
    /* We start the text very faint and light blue-grey */
    color: rgba(148, 163, 184, 0.1); 
    transition: none; /* Let GSAP handle transitions */
}

/* --- NEW LAYER: Subtle Air Particles for Section 2 --- */
.air-particles-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.air-particle {
    position: absolute;
    /* Light blue-grey that feels like blowing air/mist */
    color: rgba(200, 218, 240, 0.4); 
    opacity: 0; /* Handled by GSAP */
}

/* Base starting positions for these subtle air particles */
.ap1 { top: 20%; left: 10%; width: 20px; filter: blur(3px); }
.ap2 { top: 40%; right: 15%; width: 30px; filter: blur(4px); }
.ap3 { top: 60%; left: 25%; width: 25px; }
.ap4 { top: 75%; right: 20%; width: 22px; filter: blur(1px); }


/* --- SECTION 3: SERVICES (Stacked Cards) --- */
.services-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 20;
    /* Soft gradient continuing from the section above */
    background: linear-gradient(to bottom, #f7f9fc, var(--bg-dark));
}

.services-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--alps-navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--alps-text);
    opacity: 0.8;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem; /* Spacing between cards before they stack */
    padding-bottom: 10vh; /* Extra space at bottom to finish the scroll */
}

.service-card {
    /* CSS Sticky handles the pinning automatically! */
    position: sticky;
    top: 15vh; /* Stops scrolling 15% from the top of the screen */
    
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 28, 51, 0.05);
    height: 70vh; /* Consistent card height */
    overflow: hidden;
    transform-origin: top center; /* Critical for the GSAP scale effect */
}

.card-content {
    display: flex;
    width: 100%;
    height: 100%;
}

.card-text {
    width: 50%;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--alps-blue);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.card-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--alps-navy);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.card-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--alps-text);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 3rem;
}

.service-features li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--alps-navy);
}

.service-features .check {
    color: var(--alps-green);
    font-size: 1.2rem;
}

.card-btn {
    align-self: flex-start;
}

.card-image-wrapper {
    width: 50%;
    height: 100%;
    padding: 1rem;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Responsive adjustments for mobile */
@media (max-width: 991px) {
    .service-card {
        height: auto;
        position: relative; /* Turn off sticky on mobile for better UX */
        top: 0;
    }
    .card-content {
        flex-direction: column-reverse;
    }
    .card-text, .card-image-wrapper {
        width: 100%;
    }
    .card-image-wrapper {
        height: 300px;
    }
    .card-text {
        padding: 3rem 2rem;
    }
}

/* --- SECTION 4: SPACES (Horizontal Scroll) --- */
.spaces-section {
    background-color: var(--bg-light); 
    padding: 6rem 0 0 0; /* Slightly reduced top padding */
    overflow-x: hidden; 
    height: 100vh; /* THE FIX: Lock the entire section to exactly the screen height */
    display: flex;
    flex-direction: column;
}

.spaces-header {
    text-align: center;
    padding: 0 2rem;
    flex-shrink: 0; /* Ensures the header never gets squished */
}

.horizontal-scroll-wrapper {
    flex: 1; /* THE FIX: Automatically fills ONLY the remaining space below the header */
    display: flex;
    align-items: center;
    /* We removed height: 100vh from here so it stops pushing off-screen */
}

.horizontal-scroll-track {
    display: flex;
    gap: 3rem;
    padding: 0 10vw; /* Padding so it starts and ends smoothly */
    width: max-content; /* Allows track to be as wide as the cards dictate */
}

.space-card {
    width: 28rem;
    height: 65vh;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 28, 51, 0.08);
    flex-shrink: 0; /* Prevents flexbox from squishing the cards */
}

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

.space-card:hover .space-img {
    transform: scale(1.05); /* Gentle zoom on hover */
}

/* Glassmorphism text box at the bottom of the card */
.space-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.space-badge {
    display: inline-block;
    background-color: var(--alps-navy);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.space-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--alps-navy);
    margin-bottom: 0.5rem;
}

.space-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--alps-text);
}

/* Disable horizontal scroll on mobile, switch to normal vertical stacking */
@media (max-width: 991px) {
    .horizontal-scroll-wrapper {
        height: auto;
        display: block;
        padding: 4rem 2rem;
    }
    .horizontal-scroll-track {
        flex-direction: column;
        width: 100%;
        padding: 0;
        gap: 2rem;
    }
    .space-card {
        width: 100%;
        height: 50vh;
    }
}


/* --- SECTION 5: TRUST & TESTIMONIALS --- */
/* --- SECTION 5: TRUST & TESTIMONIALS (UPDATED PARALLAX) --- */
.trust-section {
    padding: 10rem 2rem;
    position: relative;
    z-index: 10;
    overflow: hidden; /* Keeps the oversized background image contained */
}

/* The Background Image Layer */
.trust-bg {
    position: absolute;
    top: -20%; /* Start slightly above the section for parallax travel space */
    left: 0;
    width: 100%;
    height: 140%; /* Taller than the container so it can scroll at a different speed */
    background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=2000&auto=format&fit=crop'); /* Premium corporate architecture */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* The Subtle Teal-Green Overlay */
.trust-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker, moodier navy-teal gradient to make the text pop */
    background: linear-gradient(135deg, rgba(8, 35, 45, 0.92) 0%, rgba(2, 9, 15, 0.96) 100%);
    z-index: 2;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
    position: relative;
    z-index: 10; /* Ensures content sits safely above the overlay */
}

.testimonial-wrapper {
    width: 55%;
}

.trust-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 3rem;
    color: #ffffff;
}

/* 2. Change the quote icon to a subtle white watermark */
.quote-icon {
    color: #ffffff;
    margin-bottom: 1.5rem;
    opacity: 0.15; 
}

/* 3. Force the main quote text to be a crisp, readable white */
.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95); 
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stars {
    color: var(--alps-green);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

/* 4. Brighten the author details */
.author-name {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.author-location {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --- INFINITE MARQUEE --- */
.clients-wrapper {
    width: 45%;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 6rem;
}

/* 5. Brighten the right-side labels and logos */
.clients-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2.5rem;
}

.marquee-window {
    width: 100%;
    overflow: hidden;
    /* Soft fade on edges of the marquee */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scrollMarquee 20s linear infinite;
}

.client-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.35); /* Elegant faded white */
    white-space: nowrap;
    transition: color 0.3s ease;
}

.client-logo:hover {
    color: #ffffff;
    cursor: default;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 2rem)); } /* -50% shifts exactly half the track */
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .trust-container {
        flex-direction: column;
        gap: 5rem;
    }
    .testimonial-wrapper, .clients-wrapper {
        width: 100%;
        padding-left: 0;
        border-left: none;
    }
    .quote-text {
        font-size: 1.4rem;
    }
}


/* --- SECTION 6: THE PROCESS (Pinned & Scrubbed) --- */
.process-section {
    background: linear-gradient(135deg, #e1e8ed 0%, #f4f5f0 100%); 
    height: 100vh; /* Locks to screen height */
    display: flex;
    align-items: center;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.process-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 20vw; 
    font-weight: 600;
    color: rgba(9, 52, 89, 0.03); 
    pointer-events: none;
    z-index: 0;
}

.process-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.process-content {
    width: 45%;
}

.process-header {
    margin-bottom: 4rem;
}

.steps-wrapper {
    position: relative;
    height: 35vh; /* Gives fixed space for the absolute text to sit in */
}

/* The Layers of Text */
.process-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0; 
    transform: translateY(40px); /* Starts pushed down */
}

.process-step.step-1 {
    opacity: 1; 
    transform: translateY(0); /* First step is visible immediately */
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--alps-navy);
    margin-bottom: 1.5rem;
}

.process-step p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(9, 52, 89, 0.8);
    max-width: 90%;
}

/* The Right Side Image Stack */
.process-visual {
    width: 45%;
}

.stacked-image-container {
    position: relative;
    width: 100%;
    height: 70vh;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 28, 51, 0.12);
}

.step-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inset(100% 0% 0% 0%); /* Starts hidden (sliced to bottom) */
}

.step-img.img-1 {
    clip-path: inset(0% 0% 0% 0%); /* First image visible */
}

/* Premium Glass Badge & Number Stack */
.glass-number-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

.number-stack {
    position: relative;
    width: 2.2rem;
    height: 2.4rem;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--alps-navy);
    opacity: 0;
    transform: translateY(100%);
}

.step-number.num-1 {
    opacity: 1;
    transform: translateY(0);
}

.step-divider, .step-total {
    font-size: 1.2rem;
    color: rgba(9, 52, 89, 0.5);
}

@media (max-width: 991px) {
    .process-section { height: auto; padding: 6rem 0; }
    .process-container { flex-direction: column; gap: 3rem; }
    .process-content, .process-visual { width: 100%; }
    .process-step { position: relative; opacity: 1; transform: none; margin-bottom: 3rem; }
    .steps-wrapper { height: auto; }
}

/* --- SECTION 7: MAINTENANCE PACKAGES (REVISED) --- */
.packages-section {
    padding: 10rem 2rem;
    background: linear-gradient(to bottom, #f7f9fc 0%, #e1e8ed 100%);
    position: relative;
    z-index: 50; /* Increased z-index to ensure it clears the pinned section */
    display: block;
    width: 100%;
    clear: both; /* Forces the section to start after all previous floats/pins */
}

.packages-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 5;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    opacity: 1; /* Changed to 1 to prevent them from staying invisible if JS lags */
}

.package-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    /* Ensure they are visible even before the animation starts */
    visibility: inherit; 
}

.package-card:hover {
    transform: translateY(-20px);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--alps-blue);
    box-shadow: 0 40px 80px rgba(9, 52, 89, 0.08);
}

.package-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
}

.package-tier {
    color: var(--alps-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.package-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--alps-navy);
}

.package-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--alps-navy);
}

.package-card p {
    color: var(--alps-text);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.package-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.package-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: var(--alps-navy);
}

.btn-package {
    background: var(--alps-navy);
    color: #fff;
    text-align: center;
    padding: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-package:hover {
    background: var(--alps-blue);
}

/* --- SECTION 8: CONTACT HUB --- */
.contact-section {
    padding: 10rem 2rem;
    /* Soft, cool metallic gradient */
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    position: relative;
    z-index: 60;
    overflow: hidden;
}

.contact-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(15, 110, 190, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 102, 204, 0.05) 1px, transparent 1px);
    background-size: 40px 40px; /* Creates a subtle engineering grid */
    pointer-events: none;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    gap: 6rem;
}

.contact-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(15, 110, 190, 0.1);
    color: var(--alps-blue);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.contact-title span {
    color: var(--alps-blue);
}

.contact-info-block { width: 45%; }
.contact-form-block { width: 55%; }

.direct-methods {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.method-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--alps-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* The Glass Card */
.glass-form-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(9, 52, 89, 0.05);
}

/* Re-tinting the method links to pop on the blue-ish background */
.method-link {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--alps-navy);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.method-link:hover {
    color: var(--alps-blue);
    transform: translateX(10px);
}

/* Premium Floating Label Form */
.alps-form { display: flex; flex-direction: column; gap: 2.5rem; }

.input-group { position: relative; width: 100%; }

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 1rem 0;
    font-family: inherit;
    font-size: 1.1rem;
    color: var(--alps-navy);
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(0, 28, 51, 0.15);
    outline: none;
    transition: border-color 0.4s ease;
    resize: none;
}

.input-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 1.1rem;
    color: rgba(0, 28, 51, 0.4);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Floating Label Animation */
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -1.2rem;
    font-size: 0.75rem;
    color: var(--alps-blue);
    font-weight: 700;
    letter-spacing: 1px;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-bottom-color: var(--alps-navy);
}

.input-group input:focus, 
.input-group textarea:focus {
    border-bottom-color: var(--alps-blue);
}

.btn-submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--alps-navy);
    color: #fff;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--alps-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(11, 107, 199, 0.2);
}

/* --- SECTION 9: FOOTER --- */
.main-footer {
    background-color: var(--alps-navy);
    color: rgba(255, 255, 255, 0.6);
    padding: 8rem 2rem 3rem;
    position: relative;
    z-index: 60;
}

.footer-container { max-width: 1300px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
}

.brand-col p { line-height: 1.7; margin-bottom: 2rem; }

.footer-socials { display: flex; gap: 1.5rem; }
.footer-socials a { color: #fff; text-decoration: none; font-size: 0.9rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.2); transition: border-color 0.3s; }
.footer-socials a:hover { border-bottom-color: #fff; }

.footer-col h4 { color: #fff; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 2rem; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-links a { color: inherit; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }

.location-text { line-height: 1.8; color: #fff; font-style: normal; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    font-size: 0.85rem;
}

.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: inherit; text-decoration: none; }

@media (max-width: 991px) {
    .contact-container { flex-direction: column; gap: 5rem; }
    .contact-info-block, .contact-form-block { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    /* Release the fixed height so stacked cards don't get clipped */
    .spaces-section { height: auto; padding-bottom: 4rem; }
}

/* ============================================================
   HAMBURGER BUTTON — hidden on desktop, shown on mobile
   ============================================================ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--alps-navy);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease;
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   TABLET & MOBILE — ≤ 768px
   ============================================================ */
@media (max-width: 768px) {

    /* --- NAV --- */
    .nav-hamburger { display: flex; }

    .nav-container {
        padding: 0 1.5rem;
        flex-wrap: wrap;
        row-gap: 0;
        align-items: center;
    }

    .brand-logo { flex: 1; }

    .nav-links,
    .nav-actions {
        display: none;
        width: 100%;
    }

    .alps-nav.open {
        background: rgba(255, 255, 255, 0.98) !important;
    }

    .alps-nav.open .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1.8rem;
        padding: 1.5rem 0 0.5rem;
        border-top: 1px solid rgba(0, 28, 51, 0.08);
        margin-top: 0.75rem;
    }

    .alps-nav.open .nav-links a {
        font-size: 1rem;
    }

    .alps-nav.open .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.2rem 0 1.8rem;
    }

    /* --- HERO --- */
    .hero-section { padding-top: 16vh; }

    .hero-product-container {
        max-width: 100%;
        height: 42vh;
    }

    .badge-pill {
        left: 2%;
        top: 28%;
    }

    .badge-circle {
        right: 2%;
        top: 8%;
    }

    /* --- PHILOSOPHY --- */
    .philosophy-section { padding: 8rem 2rem 5rem; }

    /* --- SERVICES --- */
    .card-text h3 { font-size: 2rem; }
    .card-text { padding: 2.5rem 1.5rem; }

    /* --- PACKAGES --- */
    .packages-section { padding: 6rem 1.5rem; }
    .packages-grid { grid-template-columns: 1fr; gap: 2rem; }

    /* --- CONTACT --- */
    .contact-section { padding: 6rem 1.5rem; }
    .glass-form-card { padding: 2.5rem 1.5rem; }
    .method-link { font-size: 1.6rem; }

    /* --- FOOTER --- */
    .main-footer { padding: 5rem 1.5rem 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-bottom {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
    .footer-legal { justify-content: center; }
}

/* ============================================================
   SMALL PHONES — ≤ 480px
   ============================================================ */
@media (max-width: 480px) {

    /* --- HERO --- */
    .hero-product-container { height: 36vh; }
    .badge-pill { display: none; }
    .badge-circle {
        right: 1%;
        top: 4%;
        transform-origin: top right;
        transform: scale(0.8);
    }

    /* --- PACKAGES --- */
    .package-card { padding: 2.5rem 1.5rem; }
    .package-top { flex-direction: column; gap: 0.4rem; align-items: flex-start; }

    /* --- CONTACT --- */
    .glass-form-card { padding: 2rem 1.25rem; }
    .method-link { font-size: 1.4rem; }
    .direct-methods { margin-top: 2.5rem; gap: 2rem; }
}