/* =========================================
   CLEAN & COLORED HOME REDESIGN CSS
========================================= */

/* --- 0. Utility & Typography overrides --- */
body {
    background-color: #fcfcfc;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    color: #333;
}
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: #111;
}

.py-5 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.mt-4 { margin-top: 30px; }

.section-heading h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.section-heading h2 span {
    color: #f75023;
}
.section-heading p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* --- Buttons --- */
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-primary {
    background-color: #f75023;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-primary:hover { background-color: #e0401b; color: white; }
.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-outline:hover { background: #fff; color: #111; }

.btn-dark-outline {
    border: 2px solid #111;
    color: #111;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-dark-outline:hover { background: #111; color: #fff; }


/* --- 1. HERO SECTION (Solid) --- */
.hero-solid {
    position: relative;
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--color-dark-bg);
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../../images/gender awaords all photosa/EM_07632.JPG');
    background-size: cover;
    background-position: center;
    opacity: 0.35; /* Dark overlay effect */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 127, 0, 0.2);
    border: 1px solid var(--color-primary);
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-content h1 span {
    color: var(--color-primary);
}
.hero-content p {
    font-size: 1.2rem;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* --- 2. MARQUEE --- */
.marquee-section {
    background: var(--color-primary);
    padding: 15px 0;
    overflow: hidden;
    color: white;
}
.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}
.marquee-item {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* --- 3. BENTO CATEGORIES (The Colored Grid) --- */
.bento-categories {
    background-color: #f8f9fa;
}
.bento-grid {
    display: grid;
    /* Desktop: 4 columns */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.bento-card {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: #111;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    align-items: center;
}
.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.bento-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.bento-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
}
/* Pastel Background Colors for Bento */
.bg-blue { background-color: #e0f2fe; color: #0284c7; }
.bg-blue h3, .bg-blue p { color: #0369a1; }
.bg-blue .bento-icon { color: #0284c7; }

.bg-red { background-color: #fee2e2; color: #dc2626; }
.bg-red h3, .bg-red p { color: #b91c1c; }
.bg-red .bento-icon { color: #dc2626; }

.bg-green { background-color: #dcfce7; color: #16a34a; }
.bg-green h3, .bg-green p { color: #15803d; }
.bg-green .bento-icon { color: #16a34a; }

.bg-orange { background-color: #ffedd5; color: #ea580c; }
.bg-orange h3, .bg-orange p { color: #c2410c; }
.bg-orange .bento-icon { color: #ea580c; }


/* --- 4. SPLIT BOOK LAYOUT --- */
.split-book-section {
    background-color: #fff;
}
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.book-shadow {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto;
}
.split-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.split-content h2 span {
    color: #f75023;
}
.split-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}
.book-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.book-features li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #333;
}
.book-features i {
    color: #16a34a;
    margin-right: 10px;
}


/* --- 5. PROCESS CARDS (Numbered) --- */
.process-cards-section {
    background-color: #f8f9fa;
}
.process-grid {
    display: grid;
    /* Desktop: 4 columns */
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.process-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.p-number {
    width: 50px;
    height: 50px;
    background: #f75023;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}
.process-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.process-card p {
    font-size: 0.95rem;
    color: #666;
}


/* =========================================
   UNIQUE MOBILE RESPONSIVE LAYOUT
========================================= */
@media (max-width: 991px) {
    /* Adjust Desktop to 2 Columns for Tablets if needed, but let's go straight to mobile view for simplicity based on request */
    .bento-grid, .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .split-content h2 {
        font-size: 2.2rem;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .hero-solid {
        padding: 100px 0 60px;
        min-height: auto;
    }
    .hero-content h1 {
        font-size: 2.3rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    
    /* THE 2x2 MOBILE GRID (Core Request) */
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; /* Tighter gap on mobile */
    }
    .bento-card {
        padding: 20px 10px;
        border-radius: 15px;
    }
    .bento-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .bento-card h3 {
        font-size: 1.1rem;
    }
    .bento-card p {
        font-size: 0.8rem;
    }

    /* Process grid can either be 2x2 or 1-col on mobile. Let's make it 1-col for readability of paragraphs */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .process-card {
        padding: 20px;
        display: flex;
        text-align: left;
        align-items: center;
        gap: 15px;
    }
    .p-number {
        margin: 0;
        min-width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@keyframes logoSlide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ==============================================
   NEW AESTHETIC HERO SECTION
   ============================================== */
.hero-aesthetic {
    position: relative;
    padding: 180px 0 130px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-aesthetic-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../../images/gender awaords all photosa/EM_07632.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Aesthetic Parallax effect */
    z-index: 1;
}
.hero-aesthetic-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(5,5,5,0.88) 0%, rgba(35,15,5,0.75) 100%);
    backdrop-filter: blur(4px); /* Premium Glassmorphism blur */
    z-index: 2;
}
.hero-aesthetic-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    animation: fadeUpIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.aesthetic-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #e55314;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 12px #e55314;
    animation: pulse 1.5s infinite;
}
.aesthetic-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}
.gradient-text {
    background: linear-gradient(to right, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.aesthetic-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin: 0 auto 45px;
    line-height: 1.8;
    font-weight: 300;
}
.aesthetic-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.btn-aesthetic-primary {
    background: linear-gradient(135deg, #e55314, #ff7e5f);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 25px rgba(229, 83, 20, 0.4);
    border: none;
}
.btn-aesthetic-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(229, 83, 20, 0.5);
    color: #fff;
}
.btn-aesthetic-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}
.btn-aesthetic-outline:hover {
    background: #fff;
    color: #111;
    transform: translateY(-4px);
}

@keyframes fadeUpIn {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

/* MOBILE RESPONSIVE FOR AESTHETIC HERO */
@media (max-width: 767px) {
    .hero-aesthetic {
        padding: 130px 15px 80px;
        min-height: 75vh;
        background-attachment: scroll; /* Disable parallax on mobile for performance */
    }
    .aesthetic-title {
        font-size: 2.6rem;
    }
    .aesthetic-subtitle {
        font-size: 1.05rem;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    .aesthetic-actions {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    .aesthetic-badge {
        font-size: 0.75rem;
        padding: 8px 18px;
    }
    .btn-aesthetic-primary, .btn-aesthetic-outline {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}


/* ==============================================
   ULTRA PREMIUM HERO SECTION
   ============================================== */
.hero-ultra {
    position: relative;
    padding: 160px 0 100px;
    background-color: #030303; /* Pure dark / midnight */
    color: #fff;
    text-align: center;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}
/* Glowing Orbs for that Stripe/Vercel Aesthetic */
.hero-glow-1 {
    position: absolute;
    top: -20%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(0,0,0,0) 70%);
    filter: blur(60px);
    z-index: 1;
    animation: floatGlow 10s ease-in-out infinite alternate;
}
.hero-glow-2 {
    position: absolute;
    top: 40%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(229,83,20,0.12) 0%, rgba(0,0,0,0) 70%);
    filter: blur(60px);
    z-index: 1;
    animation: floatGlow 12s ease-in-out infinite alternate-reverse;
}
/* Subtle Grid Overlay */
.hero-grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.hero-ultra-content {
    position: relative;
    z-index: 10;
}

.premium-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #e0e0e0;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeUp 1s ease-out forwards;
}
.premium-label .dot {
    width: 6px; height: 6px;
    background: #d4af37; /* Gold */
    border-radius: 50%;
    box-shadow: 0 0 10px #d4af37;
    animation: pulse 2s infinite;
}

.ultra-title {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -2.5px;
    animation: fadeUp 1s ease-out 0.2s forwards;
    opacity: 0;
}
.gold-text {
    background: linear-gradient(135deg, #f9d423 0%, #ff4e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ultra-subtitle {
    font-size: 1.25rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    animation: fadeUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

.ultra-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
    animation: fadeUp 1s ease-out 0.6s forwards;
    opacity: 0;
}
.btn-ultra-primary {
    background: #fff;
    color: #000 !important;
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}
.btn-ultra-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255,255,255,0.4);
    background: #f0f0f0;
}
.btn-ultra-secondary {
    background: rgba(255,255,255,0.05);
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.btn-ultra-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}

/* Floating Showcase Image */
.hero-showcase {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    z-index: 20;
    animation: fadeUp 1.2s ease-out 0.8s forwards;
    opacity: 0;
}
.showcase-glass {
    position: relative;
    border-radius: 24px;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.showcase-glass img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    aspect-ratio: 16/7;
    object-fit: cover;
}
.showcase-badge {
    position: absolute;
    bottom: -25px; right: 50px;
    background: rgba(15,15,15,0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 18px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: floatBadge 4s ease-in-out infinite alternate;
}
.showcase-badge i {
    font-size: 2.2rem;
    color: #f9d423;
}
.showcase-badge div {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.showcase-badge strong {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}
.showcase-badge span {
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes floatGlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}
@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

@media (max-width: 992px) {
    .ultra-title { font-size: 4rem; letter-spacing: -1.5px; }
    .showcase-glass img { aspect-ratio: 16/9; }
}
@media (max-width: 767px) {
    .hero-ultra { padding: 120px 0 60px; }
    .ultra-title { font-size: 2.5rem; letter-spacing: -1px; margin-bottom: 20px; }
    .ultra-subtitle { font-size: 1rem; padding: 0 15px; margin-bottom: 35px; }
    .ultra-actions { flex-direction: column; padding: 0 20px; gap: 15px; margin-bottom: 50px;}
    .btn-ultra-primary, .btn-ultra-secondary { width: 100%; text-align: center; }
    .showcase-glass img { aspect-ratio: 4/3; }
    .showcase-badge { bottom: -15px; right: 20px; padding: 12px 20px; }
    .showcase-badge i { font-size: 1.5rem; }
    .showcase-badge strong { font-size: 1.2rem; }
    .showcase-badge span { font-size: 0.7rem; }
    .hero-showcase { margin: 0 15px; }
}


/* ==============================================
   SIMPLE SLIDER HERO
   ============================================== */
.simple-slider-hero {
    position: relative;
    width: 100%;
    height: 85vh; /* Premium large height */
    overflow: hidden;
    background: #000;
}
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.simple-slider-hero .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 4.5s linear;
    transform: scale(1.05); /* Soft zoom Ken Burns effect */
    z-index: 1;
}
.simple-slider-hero .slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}
.simple-slider-hero .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}
.slider-indicators .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.slider-indicators .dot:hover {
    background: rgba(255, 255, 255, 0.9);
}
.slider-indicators .dot.active {
    background: #fff;
    transform: scale(1.4);
    box-shadow: 0 0 12px rgba(0,0,0,0.6);
}

@media (max-width: 992px) {
    .simple-slider-hero {
        height: 70vh;
    }
}
@media (max-width: 767px) {
    .simple-slider-hero {
        height: 60vh; /* Adjust for mobile so it looks perfectly proportional */
        margin-top: 60px; /* Slight push down so header doesn't cover main faces if fixed */
    }
    .slider-indicators {
        bottom: 20px;
        gap: 10px;
    }
    .slider-indicators .dot {
        width: 10px; height: 10px;
    }
    .simple-slider-hero .slide {
        transition: opacity 1.2s ease-in-out, transform 4.5s linear;
    }
}


/* ==============================================
   SINGLE PREMIUM HERO IMAGE (FRAMED AESTHETIC)
   ============================================== */
.hero-single-image {
    position: relative;
    width: 100%;
    padding: 25px; /* Premium framed look */
    background: #fdfdfd; /* Off-white for contrast */
    padding-top: 110px; /* Space for fixed header */
    animation: fadeUpIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-single-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    height: 75vh; /* Very large and impactful */
    border-radius: 35px; /* Extremely smooth rounded corners */
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12); /* Deep premium shadow */
    background: #eee;
}
.hero-single-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}
.hero-single-container:hover img {
    transform: scale(1.03); /* Interactive gentle zoom */
}
.hero-single-overlay-gradient {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 25%;
    background: linear-gradient(to top, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

@media (max-width: 992px) {
    .hero-single-container {
        height: 55vh;
        border-radius: 25px;
    }
}
@media (max-width: 767px) {
    .hero-single-image {
        padding: 15px;
        padding-top: 90px;
    }
    .hero-single-container {
        height: 50vh;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
}


/* ==============================================
   CINEMATIC PREMIUM HERO (APPLE/AWWWARDS STYLE)
   ============================================== */
.hero-cinematic {
    position: relative;
    width: 100%;
    height: 100vh; /* Full width 100vh */
    background: #050505;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(212,175,55,0.15); /* Premium shadow */
    margin: 0 auto;
    max-width: 1920px; /* Cap width on ultra-wide screens */
}

/* Background Atmosphere */
.cine-golden-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw; height: 80vw;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(0,0,0,0) 60%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}
.cine-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}
.particle {
    position: absolute;
    width: 3px; height: 3px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(212,175,55,0.8);
    animation: floatParticle linear infinite;
    opacity: 0;
}
@keyframes floatParticle {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-100px) scale(0.5); opacity: 0; }
}

/* Slider Track & Slides */
.cinematic-slider {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1200px; /* 3D Perspective */
    z-index: 3;
}
.cinematic-slide {
    position: absolute;
    top: 50%;
    width: 60vw;
    height: 75vh;
    border-radius: 20px;
    overflow: hidden;
    transition: all 1.5s ease-in-out;
    opacity: 0;
}
.cinematic-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: filter 0.8s ease;
}
.cine-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.1) 100%);
    transition: opacity 0.8s ease;
    z-index: 2;
}

/* Slide States */
.cinematic-slide.active {
    left: 50%;
    transform: translate(-50%, -50%) scale(1) translateZ(0);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 0 60px rgba(212,175,55,0.25); /* Soft golden edge */
    border: 1px solid rgba(212,175,55,0.15);
}
.cinematic-slide.active img {
    animation: kenBurns 12s linear infinite alternate;
}
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.cinematic-slide.prev {
    left: 10%; /* Shows ~20% of previous slide */
    transform: translate(-50%, -50%) scale(0.85) translateZ(-150px) rotateY(15deg);
    opacity: 0.3;
    z-index: 5;
}
.cinematic-slide.prev img {
    filter: blur(6px);
}

.cinematic-slide.next {
    left: 90%; /* Shows ~20% of next slide */
    transform: translate(-50%, -50%) scale(0.85) translateZ(-150px) rotateY(-15deg);
    opacity: 0.3;
    z-index: 5;
}
.cinematic-slide.next img {
    filter: blur(6px);
}

.cinematic-slide.hidden {
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7) translateZ(-300px);
    opacity: 0;
    z-index: 1;
}

/* Glassmorphism Navigation Arrows */
.cine-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    outline: none;
}
.cine-arrow:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}
.cine-prev { left: 40px; }
.cine-next { right: 40px; }

/* Progress Bars Navigation */
.cine-progress-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}
.cine-progress-bar {
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.cine-progress-fill {
    width: 0%;
    height: 100%;
    background: #d4af37; /* Premium gold */
    border-radius: 4px;
}
.cine-progress-bar.active .cine-progress-fill {
    animation: cineProgressAnim 4.5s linear forwards;
}

@keyframes cineProgressAnim {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ==============================================
   MOBILE OPTIMIZED HERO (Apple-Style)
   ============================================== */
@media (max-width: 992px) {
    .cinematic-slide {
        width: 75vw;
    }
    .cine-prev { left: 20px; }
    .cine-next { right: 20px; }
}

@media (max-width: 767px) {
    .hero-cinematic {
        height: 70vh;
        border-radius: 0; /* Square corners for mobile */
        padding-top: 0;
        margin-top: 0; /* Changed to 0 so it goes seamlessly under the glass header */
    }
    .cine-golden-glow {
        width: 150vw; height: 150vw;
    }
    .cinematic-slide {
        width: 100%;
        height: 100%;
        border-radius: 18px;
    }
    .cinematic-slide.active {
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
        box-shadow: none;
        border: none;
    }
    /* Hide Side Thumbnails Completely on Mobile */
    .cinematic-slide.prev {
        left: -100%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
        filter: none;
    }
    .cinematic-slide.next {
        left: 200%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
        filter: none;
    }
    
    .cine-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%); /* Vignette */
    }
    
    /* Smaller arrows on mobile */
    .cine-arrow {
        width: 40px; height: 40px;
        font-size: 1rem;
    }
    .cine-prev { left: 10px; }
    .cine-next { right: 10px; }
    
    /* Thinner progress bars */
    .cine-progress-container {
        bottom: 20px;
        gap: 10px;
        width: 80%; /* Don't overlap arrows */
        justify-content: center;
    }
    .cine-progress-bar {
        width: 40px;
        height: 3px;
    }
}


/* ==============================================
   4. PREMIUM LEGACY BOOK SECTION (REDESIGNED DESKTOP & MOBILE)
   ============================================== */
.premium-legacy-section {
    padding: 100px 0;
    background: #fcfcfc; /* Elegant off-white */
}
.legacy-card {
    display: flex;
    align-items: center;
    gap: 70px;
    background: #fff;
    border-radius: 35px;
    padding: 70px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

/* Image Side */
.legacy-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 20px;
    border: 10px solid #fff; /* White premium frame */
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}
.legacy-image-wrapper img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.legacy-image-wrapper:hover img {
    transform: scale(1.04);
}
.legacy-glow {
    position: absolute;
    top: -30px; left: -30px; right: -30px; bottom: -30px;
    background: radial-gradient(circle, rgba(229,83,20,0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    border-radius: 40px;
}

/* Content Side */
.legacy-content {
    flex: 1.1;
}
.legacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(229,83,20,0.08);
    color: #e55314;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}
.legacy-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.05;
    color: #050505;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}
.legacy-highlight {
    background: linear-gradient(135deg, #e55314 0%, #ff7e5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.legacy-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}
.legacy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.feature-icon {
    width: 48px; height: 48px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e55314;
    font-size: 1.3rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
}
.feature-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #222;
    font-size: 1.05rem;
}

/* Single Premium Button (Desktop Fix) */
.btn-legacy-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a; /* Sleek Dark */
    color: #fff !important;
    padding: 16px 40px; /* Elegant standard size */
    border-radius: 100px; /* Pill shape */
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.btn-legacy-primary:hover {
    background: #e55314; /* Brand pop */
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(229,83,20,0.3);
}

/* Responsive Rules */
@media (max-width: 1200px) {
    .legacy-card { padding: 50px; gap: 50px; }
    .legacy-title { font-size: 3.2rem; }
}
@media (max-width: 992px) {
    .legacy-card {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }
    .legacy-title { font-size: 2.8rem; }
    .legacy-image-wrapper { width: 100%; }
}

/* 
==============================================
   MOBILE SPECIFIC LAYOUT (APP-STYLE OVERLAP)
============================================== 
*/
@media (max-width: 767px) {
    .premium-legacy-section { 
        padding: 50px 15px; 
        background: #f4f5f7; /* Slightly darker background on mobile to pop the white card */
    }
    .legacy-card {
        padding: 0;
        border-radius: 20px;
        background: transparent;
        box-shadow: none;
        border: none;
        gap: 0;
    }
    
    /* Mobile Image (Full width, rounded, no border) */
    .legacy-image-wrapper {
        width: 100%;
        border-radius: 20px;
        border: none;
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        margin-bottom: -40px; /* Overlaps with content below */
        z-index: 1;
    }
    .legacy-image-wrapper img {
        border-radius: 20px;
        aspect-ratio: 16/10; /* Better proportion for mobile */
    }
    .legacy-glow { display: none; }
    
    /* Mobile Content (Overlapping Card) */
    .legacy-content {
        position: relative;
        z-index: 2;
        background: #fff;
        padding: 35px 25px;
        border-radius: 20px;
        box-shadow: 0 20px 45px rgba(0,0,0,0.08);
        margin: 0 15px; /* Inset from sides */
    }
    
    .legacy-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    .legacy-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        letter-spacing: -1px;
    }
    .legacy-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .legacy-features {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    .feature-item {
        gap: 12px;
    }
    .feature-icon {
        width: 40px; height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
    }
    .feature-item span {
        font-size: 0.95rem;
    }
    
    .btn-legacy-primary {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
        margin-top: 5px;
    }
}


