/* =========================================
   SAHAJ SWASTHYA: COMPLETE PREMIUM STYLES
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,800;1,600&family=Inter:wght@300;400;600;800&display=swap');

:root {
    --black: #000000;
    --dark-grey: #111111;
    --mid-grey: #666666;
    --light-grey: #f7f7f7;
    --border-grey: #e5e5e5;
    --white: #ffffff;
    --ease-out: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* =========================================
   BASE LAYOUT & CONTAINERS
   ========================================= */
.sahaj-master-layout {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--white);
    color: var(--dark-grey);
    overflow-x: hidden;
}

.sahaj-container.tight-container {
    max-width: 1100px; 
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   1. HERO SECTION (SPLIT-SCREEN)
   ========================================= */
.sahaj-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    background: var(--white);
    align-items: center;
    gap: clamp(30px, 4vw, 60px);
}

.hero-left-media {
    padding: clamp(20px, 4vw, 40px) 0 clamp(20px, 4vw, 40px) clamp(20px, 4vw, 40px);
    height: 100%;
    display: flex;
    align-items: center;
}

.video-container-fluid {
    width: 100%;
    height: 80vh; 
    min-height: 500px;
    background: var(--black);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.15);
    transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}

.lux-hover-scale:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 80px -15px rgba(0,0,0,0.25);
}

.video-container-fluid iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transform: scale(1.05); 
}

.hero-right-content {
    padding: 40px clamp(20px, 5vw, 60px) 40px 20px;
}

.premium-pill {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid var(--black);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    background: var(--light-grey);
}

.sahaj-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.05;
    font-weight: 800;
    margin: 0 0 20px 0;
    letter-spacing: -2px;
}

.sahaj-h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: var(--mid-grey);
    margin: 0 0 25px 0;
    line-height: 1.4;
}

.sahaj-lead {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    color: var(--mid-grey);
    max-width: 480px;
    margin-bottom: 40px;
}

.btn-primary-dark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--black);
    color: var(--white);
    padding: 18px 40px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s var(--ease-out);
    border: 1px solid var(--black);
}

.magnetic-hover:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-arrow {
    transition: transform 0.4s var(--ease-out);
    font-size: 1.2rem;
}

.magnetic-hover:hover .btn-arrow {
    transform: translateX(8px);
}

/* =========================================
   2. BENTO GRID SECTION
   ========================================= */
.sahaj-bento-section {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0 0 10px 0;
    color: var(--black);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--mid-grey);
    font-weight: 600;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; 
}

.bento-item {
    background: var(--light-grey);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid transparent;
    transition: all 0.5s var(--ease-out);
}

.lux-card-hover:hover {
    background: var(--white);
    border-color: var(--border-grey);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    z-index: 2;
}

.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    transition: transform 0.5s var(--ease-out);
}

.lux-card-hover:hover .floating-icon {
    transform: translateY(-8px) scale(1.1);
}

.bento-item h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.4;
    color: var(--black);
}

.bento-item-large {
    grid-column: span 3;
    background: var(--black);
    color: var(--white);
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 50px;
}

.bento-item-large:hover {
    background: var(--dark-grey);
    border-color: var(--black);
}

.bento-item-large .bento-icon {
    font-size: 3rem;
}

.bento-content-large h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
}

.bento-content-large p {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0;
}

/* =========================================
   3. PREMIUM MEDIA SHOWCASE (UPGRADED)
   ========================================= */
.sahaj-media-wall {
    padding: clamp(60px, 8vw, 120px) 0;
    background: var(--white);
}

.media-header {
    text-align: center;
    margin-bottom: 60px;
}

.media-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* BIG FEATURE */
.media-feature {
    height: 100%;
}

.media-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* CARD STYLE */
.media-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    transition: all 0.5s var(--ease-out);
}

.media-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* SIZES */
.media-feature .media-card {
    height: 100%;
    min-height: 500px;
}

.media-card.small {
    height: 220px;
}

/* GLASSMORPHISM */
.premium-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* OVERLAY TEXT */
.media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: all 0.4s ease;
}

/* HOVER EFFECT */
.media-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.media-card:hover .media-overlay {
    opacity: 1;
}

/* SUBTLE GLOW EFFECT */
.media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.media-card:hover::after {
    opacity: 1;
}

/* =========================================
   4. FINAL CTA
   ========================================= */
.sahaj-final-cta {
    padding: clamp(80px, 10vw, 120px) 20px;
    background: var(--black);
    color: var(--white);
    text-align: center;
    border-radius: 40px 40px 0 0;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 25px 0;
}

.cta-prompt {
    font-size: 1.2rem;
    color: #aaaaaa;
    margin-bottom: 45px;
}

.btn-primary-white {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    padding: 18px 50px;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.pulse-hover:hover {
    transform: translateY(-4px);
    background: var(--light-grey);
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* =========================================
   ANIMATIONS
   ========================================= */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.reveal-stagger {
    animation: fadeUpStagger 1s var(--ease-out) forwards;
}

@keyframes fadeUpStagger {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* =========================================
   RESPONSIVE DESIGN 
   ========================================= */
@media (max-width: 960px) {
    /* Hero */
    .sahaj-hero-split {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }
    .hero-left-media {
        padding: 0 20px;
        order: 2; 
    }
    .video-container-fluid {
        height: 60vh;
        min-height: 400px;
    }
    .hero-right-content {
        order: 1; 
        padding: 20px;
        text-align: center;
    }
    .sahaj-lead {
        margin: 0 auto 40px auto;
    }

    /* Bento Grid */
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bento-item-large {
        grid-column: span 2;
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    /* Premium Media Showcase */
    .media-showcase {
        grid-template-columns: 1fr;
    }
    .media-feature .media-card {
        min-height: 400px;
    }
    .media-card.small {
        height: 250px;
    }
}

@media (max-width: 600px) {
    /* Bento Grid */
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-item-large {
        grid-column: span 1;
    }

    /* Hero */
    .video-container-fluid {
        height: 50vh;
        min-height: 350px;
        border-radius: 20px;
    }

    /* Buttons & CTA */
    .btn-primary-dark, .btn-primary-white {
        width: 100%;
        justify-content: center;
    }
    .sahaj-final-cta {
        border-radius: 20px 20px 0 0;
    }

    /* Premium Media Showcase */
    .media-card.small {
        height: 220px;
    }
}