/* =========================================
   HERO SECTION FONTS & VARIABLES
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500&family=Playfair+Display:wght@700;800&family=Poppins:wght@500;600;700&display=swap');

:root {
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Poppins', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --text-main: #0a0a0a;
    --text-muted: #555555;
    --bg-light: #fdfdfd;
    --accent-dark: #111111;
    --white: #ffffff;
    --ease-modern: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
}

/* =========================================
   HERO LAYOUT
   ========================================= */
.sahaj-hero-split {
    background-color: var(--bg-light);
    padding: 80px 20px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* =========================================
   TYPOGRAPHY & CONTENT
   ========================================= */
.hero-content {
    max-width: 600px;
}

.premium-pill {
    font-family: var(--font-subheading);
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.sahaj-h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.sahaj-h2 {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 24px 0;
    line-height: 1.4;
}

.sahaj-lead {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* =========================================
   BUTTON
   ========================================= */
.btn-primary-dark {
    font-family: var(--font-subheading);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-dark);
    color: var(--white);
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s var(--ease-modern);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.4s var(--ease-modern);
}

.magnetic-hover:hover {
    background: var(--text-main);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.magnetic-hover:hover .btn-arrow {
    transform: translateX(6px);
}

/* =========================================
   VIDEO MEDIA RIGHT SIDE
   ========================================= */
.hero-media {
    position: relative;
    width: 100%;
}

.video-container-fluid {
    width: 100%;
    aspect-ratio: 9 / 16;
    /* Perfect for Shorts/Reels style vertical video */
    max-height: 75vh;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.6s var(--ease-modern), box-shadow 0.6s var(--ease-modern);
}

.video-container-fluid iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transform: scale(1.02);
    /* Removes thin black borders from youtube */
}

.lux-hover-scale:hover {
    transform: scale(1.02);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

/* =========================================
   RESPONSIVE (TABLET & MOBILE)
   ========================================= */
@media (max-width: 992px) {
    .hero-grid-container {
        grid-template-columns: 1fr;
        /* Stack content on top, video on bottom */
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .sahaj-h1 br {
        display: none;
        /* Keep heading fluid on mobile */
    }

    .video-container-fluid {
        aspect-ratio: 16 / 9;
        /* Switch to landscape for horizontal screens if preferred, or keep 9/16 */
        max-height: 500px;
    }
}

/* =========================================
   WHY HOST SECTION (DARK MODE)
   ========================================= */
.sahaj-why-host-dark {
    /* Using your dark theme color */
    background-color: var(--accent-dark, #111111);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

/* Increased width to 1280px to match Hero */
.sahaj-container-wide {
    max-width: 1280px;
    margin: 0 auto;
}

.why-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Gives text slightly more room */
    gap: 80px;
    align-items: center;
}

/* --- Left Side Typography (Dark Mode) --- */
.why-text-content {
    max-width: 650px;
    /* Increased from 500px */
}

.why-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--white, #ffffff);
    /* Switched to White */
    margin: 0 0 24px 0;
    letter-spacing: -1px;
}

.why-subtitle {
    font-family: var(--font-subheading);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: #cccccc;
    /* Lighter grey for dark bg */
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.why-conclusion-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--white, #ffffff);
    padding: 30px 40px;
    border-radius: 0 16px 16px 0;
    backdrop-filter: blur(10px);
}

.why-conclusion-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.6;
    color: #aaaaaa;
    margin: 0;
}

.why-conclusion-text .highlight {
    font-family: var(--font-subheading);
    font-weight: 700;
    color: var(--white, #ffffff);
    font-size: 1.3rem;
}

/* --- Right Side Cards (Dark Premium) --- */
.why-points-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Increased gap slightly */
}

.why-card-dark {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.04);
    padding: 22px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s var(--ease-modern, cubic-bezier(0.25, 1, 0.5, 1));
    cursor: default;
}

/* --- Upgraded Hover Animation --- */
.why-card-dark:hover {
    transform: translateY(-6px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.why-icon-dark {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--white, #ffffff);
    flex-shrink: 0;
    transition: transform 0.5s var(--ease-modern);
}

.why-card-dark:hover .why-icon-dark {
    transform: scale(1.1) rotate(5deg);
    background: var(--white, #ffffff);
    color: var(--accent-dark, #111111);
    cursor: pointer;
}

.why-icon-dark svg {
    width: 24px;
    height: 24px;
}

.why-card-text-dark {
    font-family: var(--font-subheading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white, #ffffff);
    letter-spacing: 0.3px;
}

/* =========================================
   RESPONSIVE (TABLET & MOBILE)
   ========================================= */
@media (max-width: 992px) {
    .why-grid-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-text-content {
        max-width: 100%;
        text-align: center;
    }

    .why-conclusion-box {
        border-left: none;
        border-top: 4px solid var(--white, #ffffff);
        border-radius: 16px;
        text-align: center;
        display: inline-block;
    }

    .why-card-dark:hover {
        transform: translateY(-6px);
        /* Remove scale on mobile/tablet to prevent layout shift */
    }
}

@media (max-width: 480px) {
    .sahaj-why-host-dark {
        padding: 80px 20px;
    }

    .why-card-dark {
        padding: 18px 24px;
        gap: 16px;
    }

    .why-icon-dark {
        width: 44px;
        height: 44px;
    }

    .why-card-text-dark {
        font-size: 1.05rem;
    }
}

/* =========================================
   EXPERIENCE SECTION (LIGHT MODE)
   ========================================= */
.sahaj-experience-light {
    background-color: var(--bg-light, #fdfdfd);
    padding: 120px 20px;
    position: relative;
    text-align: center;
}

.experience-header {
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 800;
    color: var(--text-main, #0a0a0a);
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.title-accent-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-dark, #111111);
    border-radius: 2px;
}

/* --- 5-Card Flex Grid --- */
.experience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
}

.experience-card {
    flex: 1 1 calc(33.333% - 30px);
    max-width: 380px;
    min-width: 280px;
    background: var(--white, #ffffff);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s var(--ease-modern, cubic-bezier(0.25, 1, 0.5, 1));
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.exp-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light, #fdfdfd);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-dark, #111111);
    margin-bottom: 24px;
    transition: all 0.4s var(--ease-modern);
}

.experience-card:hover .exp-icon {
    background: var(--accent-dark, #111111);
    color: var(--white, #ffffff);
    transform: scale(1.1);
}

.exp-icon svg {
    width: 28px;
    height: 28px;
}

.exp-card-title {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main, #0a0a0a);
    line-height: 1.4;
    margin: 0;
}

/* =========================================
   IMPACTFUL QUOTE FOOTER (MODERN DESIGN)
   ========================================= */
.experience-footer {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--white, #ffffff);
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

/* Subtle decorative background quote mark */
.experience-footer::before {
    content: '“';
    font-family: var(--font-heading, 'Playfair Display', serif);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.02);
    /* Extremely faint so it doesn't distract */
    z-index: -1;
    user-select: none;
    pointer-events: none;
}

.experience-quote {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.7;
    color: var(--text-muted, #555555);
    margin: 0;
    position: relative;
    z-index: 2;
}

.experience-quote .quote-bold {
    font-family: var(--font-heading, 'Playfair Display', serif);
    display: block;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text-main, #0a0a0a);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* =========================================
   RESPONSIVE (TABLET & MOBILE)
   ========================================= */
@media (max-width: 992px) {
    .experience-card {
        flex: 1 1 calc(50% - 30px);
        /* 2 columns on tablet */
    }
}

@media (max-width: 600px) {
    .sahaj-experience-light {
        padding: 80px 20px;
    }

    .experience-card {
        flex: 1 1 100%;
        /* 1 column on mobile */
        padding: 30px 20px;
    }

    .experience-footer {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .experience-footer::before {
        font-size: 10rem;
        top: -15px;
    }
}

/* =========================================
   DIFFERENCE SECTION (PREMIUM DARK BG)
   ========================================= */
.sahaj-difference-dark {
    /* A rich, modern dark radial gradient */
    background: radial-gradient(circle at 80% 0%, #26262e 0%, var(--accent-dark, #111111) 70%);
    padding: 120px 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Subtle Background Texture Overlay */
.sahaj-difference-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* You can replace this URL with any abstract pattern or noise image you have */
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    background-size: cover;
    opacity: 0.15;
    /* Keeps it very subtle so text remains readable */
    mix-blend-mode: overlay;
    /* Blends the texture beautifully with the gradient */
    z-index: -1;
    pointer-events: none;
}

.difference-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.difference-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 800;
    color: var(--white, #ffffff);
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.title-accent-line-light {
    width: 60px;
    height: 4px;
    background-color: var(--white, #ffffff);
    border-radius: 2px;
    opacity: 0.8;
}

/* --- 2x2 Editorial Grid --- */
.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.diff-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    transition: all 0.4s var(--ease-modern, cubic-bezier(0.25, 1, 0.5, 1));
    position: relative;
    overflow: hidden;
}

.diff-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Subtle glow effect on hover */
.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.diff-card:hover::before {
    left: 150%;
}

.diff-number {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.15);
    /* Faint, elegant numbers */
    transition: color 0.4s ease;
}

.diff-card:hover .diff-number {
    color: var(--white, #ffffff);
}

.diff-content {
    flex: 1;
}

.diff-text {
    font-family: var(--font-subheading, 'Poppins', sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white, #ffffff);
    line-height: 1.5;
    margin: 0;
}

.diff-text .text-muted-light {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-weight: 400;
    color: #aaaaaa;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 6px;
}

/* =========================================
   RESPONSIVE (TABLET & MOBILE)
   ========================================= */
@media (max-width: 992px) {
    .difference-grid {
        gap: 20px;
    }

    .diff-card {
        padding: 30px 24px;
        gap: 20px;
    }

    .diff-number {
        font-size: 2.8rem;
    }

    .diff-text {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .difference-grid {
        grid-template-columns: 1fr;
        /* Stack into 1 column on mobile */
    }

    .sahaj-difference-dark {
        padding: 80px 20px;
    }
}

/* =========================================
   BOOKING REQUIREMENT SECTION (LIGHT)
   ========================================= */
.sahaj-booking-req-light {
    background-color: var(--bg-light, #fdfdfd);
    padding: 30px 20px 30px 20px;
    /* Less padding on top to pull it closer to the previous section */
    display: flex;
    justify-content: center;
}

.booking-req-card {
    background: var(--white, #ffffff);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-modern, cubic-bezier(0.25, 1, 0.5, 1));
}

.booking-req-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

/* Elegant dark accent line on the left edge */
.booking-req-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--accent-dark, #111111);
}

.booking-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark, #111111);
}

.booking-icon svg {
    width: 32px;
    height: 32px;
}

.booking-content {
    flex: 1;
}

.booking-title {
    font-family: var(--font-subheading, 'Poppins', sans-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main, #0a0a0a);
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.booking-text {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 1.15rem;
    color: var(--text-muted, #555555);
    line-height: 1.6;
    margin: 0;
}

.booking-text .text-highlight {
    color: var(--text-main, #0a0a0a);
    font-weight: 700;
    font-family: var(--font-subheading, 'Poppins', sans-serif);
    background: rgba(0, 0, 0, 0.04);
    padding: 2px 6px;
    border-radius: 4px;
}

/* =========================================
   RESPONSIVE (TABLET & MOBILE)
   ========================================= */
@media (max-width: 600px) {
    .sahaj-booking-req-light {
        padding: 40px 20px 80px 20px;
    }

    .booking-req-card {
        flex-direction: column;
        text-align: center;
        padding: 35px 24px;
        gap: 20px;
    }

    /* Move the accent line to the top for mobile */
    .booking-req-card::before {
        width: 100%;
        height: 6px;
        bottom: auto;
        right: 0;
    }

    .booking-icon {
        width: 60px;
        height: 60px;
    }
}

/* =========================================
   EXPERIENCE HIGHLIGHTS (MONOCHROME DARK)
   ========================================= */
.sahaj-highlights-dark {
    background-color: var(--accent-dark, #111111);
    padding: 120px 20px;
    position: relative;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* --- Header --- */
.highlights-header {
    text-align: center;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlights-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 800;
    color: var(--white, #ffffff);
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.accent-line-mono {
    width: 60px;
    height: 4px;
    background-color: var(--white, #ffffff);
    border-radius: 2px;
    opacity: 0.8;
}

/* --- Highlights Grid --- */
.highlights-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-glass-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s var(--ease-modern, cubic-bezier(0.25, 1, 0.5, 1));
    position: relative;
    overflow: hidden;
}

.highlight-glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Crisp silver top border on hover */
.highlight-glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-glass-card:hover::after {
    opacity: 1;
}

.card-wide {
    flex: 1 1 calc(50% - 24px);
    /* Makes the 5th card wider to balance the row */
}

/* --- High-Contrast Monochrome Icons --- */
.icon-mono-box {
    width: 60px;
    height: 60px;
    background: var(--white, #ffffff);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-dark, #111111);
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s var(--ease-modern);
}

.highlight-glass-card:hover .icon-mono-box {
    transform: scale(1.1);
    box-shadow: 0 15px 25px rgba(255, 255, 255, 0.1);
}

.icon-mono-box svg {
    width: 28px;
    height: 28px;
}

.highlight-text {
    font-family: var(--font-subheading, 'Poppins', sans-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white, #ffffff);
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   RESPONSIVE (TABLET & MOBILE)
   ========================================= */
@media (max-width: 992px) {
    .highlight-glass-card {
        flex: 1 1 calc(50% - 24px);
        /* 2 columns */
    }

    .card-wide {
        flex: 1 1 100%;
        /* Make 5th card full width on tablet */
    }
}

@media (max-width: 600px) {
    .sahaj-highlights-dark {
        padding: 80px 20px;
    }

    .highlight-glass-card {
        flex: 1 1 100%;
        /* 1 column */
        padding: 30px 24px;
    }
}

/* =========================================
   CLOSING CTA SECTION (LIGHT)
   ========================================= */
.sahaj-closing-cta {
    background-color: var(--bg-light, #fdfdfd);
    background-image: linear-gradient(180deg, var(--white, #ffffff) 0%, #f7f7f7 100%);
    padding: 140px 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.closing-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.closing-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    color: var(--text-main, #0a0a0a);
    line-height: 1.1;
    margin: 0 0 24px 0;
    letter-spacing: -1px;
}

.closing-body {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: var(--text-muted, #555555);
    max-width: 650px;
    margin: 30px auto 60px auto;
}

/* --- Premium Action Card --- */
.cta-action-box {
    background: var(--white, #ffffff);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    padding: 60px 40px;
    width: 100%;
    transition: transform 0.4s var(--ease-modern);
}

.cta-action-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.12);
}

.action-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-main, #0a0a0a);
    margin: 0 0 10px 0;
}

.action-subtitle {
    font-family: var(--font-subheading, 'Poppins', sans-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted, #555555);
    margin: 0 0 40px 0;
}

/* Ensure the button matches the premium dark button we built earlier */
.cta-action-box .btn-primary-dark {
    padding: 20px 45px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* --- Very Important Urgency Note --- */
.urgency-footer {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.03);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.urgency-dot {
    width: 10px;
    height: 10px;
    background-color: #d93025;
    /* A premium, subtle red */
    border-radius: 50%;
    position: relative;
}

.urgency-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 18px;
    height: 18px;
    background-color: rgba(217, 48, 37, 0.4);
    border-radius: 50%;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.urgency-text {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 1rem;
    color: var(--text-muted, #555555);
    margin: 0;
}

.urgency-text .fw-bold {
    font-family: var(--font-subheading, 'Poppins', sans-serif);
    font-weight: 600;
    color: var(--text-main, #0a0a0a);
}

/* =========================================
   RESPONSIVE (TABLET & MOBILE)
   ========================================= */
@media (max-width: 768px) {
    .sahaj-closing-cta {
        padding: 100px 20px;
    }

    .cta-action-box {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .cta-action-box .btn-primary-dark {
        width: 100%;
        justify-content: center;
    }

    .urgency-footer {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        padding: 16px 20px;
    }
}

/* =========================================
   UNIQUE MEDIA GALLERY STYLES
   ========================================= */

:root {
    --sg-black: #000000;
    --sg-dark-grey: #111111;
    --sg-mid-grey: #666666;
    --sg-light-grey: #fafafa;
    --sg-border-grey: #eaeaea;
    --sg-white: #ffffff;
    --sg-ease: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Layout Utilities */
.sg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sg-section-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--sg-black);
    margin-bottom: 60px;
    letter-spacing: -1px;
}

/* Animations Setup */
.sg-reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--sg-ease), transform 0.8s var(--sg-ease);
}

.sg-reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.sg-delay-1 { transition-delay: 0.1s; }
.sg-delay-2 { transition-delay: 0.2s; }
.sg-delay-3 { transition-delay: 0.3s; }

/* Media Gallery Section */
.sg-media-gallery {
    padding: clamp(80px, 10vw, 120px) 0;
    background-color: var(--sg-white);
}

.sg-header {
    text-align: center;
    margin-bottom: 60px;
}

.sg-header p {
    color: var(--sg-mid-grey);
    font-size: 1.1rem;
}

.sg-yt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.sg-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--sg-black);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: transform 0.4s var(--sg-ease);
}

.sg-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.sg-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.sg-ig-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.sg-ig-container {
    width: 100%;
    background: var(--sg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--sg-border-grey);
    transition: transform 0.4s var(--sg-ease);
}

.sg-ig-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.sg-ig-container iframe {
    width: 100%;
    height: 600px; /* IG Embed height */
    background: white;
}

/* Responsive Overrides */
@media (max-width: 960px) {
    .sg-yt-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sg-ig-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}