/* --- Core Variables --- */
:root {
    --sage-mid: #A2CB8B;  
    --sage-light: #C7EABB; 
    --text-white: #ffffff;
    --text-cream: #f6f0d7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f120e; 
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
}

/* 👉 NAYA ADD KIYA: Website ko proper align karne ke liye global container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navbar & Logo */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 5%;
    z-index: 100;
}

.logo {
   font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1px;
     white-space: normal;
}
/* ========================================= */
/* 📱 Mobile View Fix (Full Alignment)        */
/* ========================================= */
@media (max-width: 768px) {
    /* 1. Navbar & Logo Spacing Refined */
    .navbar {
        padding: 20px 5%; 
        background-color: transparent !important; /* Keep transparent */
        box-shadow: none !important;
    }
    .logo {
        font-size: 1.1rem !important; /* Size chota kiya */
        white-space: nowrap !important; /* Line nahi tootegi */
        letter-spacing: 0px; 
        position: relative;
        z-index: 1000; /* Ensure strictly above other text */
    }

    /* 🔥 2. Hero Section Spacing */
    .hero {
        padding-top: 90px;
        padding-bottom: 40px;
        height: 100vh !important;
        min-height: 100vh;
        align-items: flex-start;
        display: flex;
        overflow: hidden;
    }

    .hero-content {
        max-width: 88%;
        margin-top: 0;
    }

    /* 🔥 3. Stacking Buttons fix */
    .cta-group {
        flex-direction: column; 
        width: 100%;
        gap: 15px;
        margin-top: 25px !important;
    }
    .cta-group .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    /* 🔥 4. Email Flow Fix */
    .hero-content .hero-email {
        position: static !important;
        bottom: auto !important;
        right: auto !important;
        left: auto !important;
        top: auto !important;
        margin-top: 30px !important;
        text-align: left !important;
        padding-left: 0;
        letter-spacing: 1px;
        color: var(--text-cream) !important;
        opacity: 1 !important;
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 1;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
}

.overlay { 
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(105deg, rgba(10, 12, 10, 0.72) 0%, rgba(10, 12, 10, 0.38) 55%, rgba(10, 12, 10, 0.10) 100%); 
    z-index: -1; 
}

.hero-container {
    width: 100%;
    max-width: 660px;
    margin: 0;
    margin-right: auto;
    z-index: 10;
    padding-left: 0;
}

.hero-content {
    max-width: 620px;
}

.serif-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.65rem;
    line-height: 1.22;
    color: var(--text-white);
    margin-bottom: 22px;
    font-weight: 600;
}

.line-1 { display: inline-block; }
.line-2 {
    display: inline-block;
    color: #d3d88a; 
    font-style: italic;
    margin-top: 4px;
}

.hero-subhead {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    margin-top: 18px;
    border-left: 3px solid var(--sage-mid);
    padding-left: 13px;
    white-space: normal;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.primary-btn {
    background-color: var(--sage-mid);
    color: #0f120e;
    border: 1px solid var(--sage-mid);
}

.primary-btn:hover {
    background-color: var(--sage-light);
    border-color: var(--sage-light);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(199, 234, 187, 0.2);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.secondary-btn:hover {
    background-color: var(--sage-mid);
    color: #0f120e;
    border-color: var(--sage-mid);
    transform: translateY(-4px);
}

/* Animations */
.animate-fade { opacity: 0; transition: opacity 1s ease-in; }
.animate-fade.show { opacity: 1; }
.animate-left { opacity: 0; transform: translateX(-100px); transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1); }
.animate-left.show { opacity: 1; transform: translateX(0); }
.animate-fade-up { opacity: 0; transform: translateY(30px); transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.animate-fade-up.show { opacity: 1; transform: translateY(0); }

/* ==========================================
   SCROLL REVEAL SYSTEM — FIXED & CLEAN
   ========================================== */

/* Hidden state */
html.js-reveal-ready .reveal-item:not(.hero):not(#home),
html.js-reveal-ready .reveal-child {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    filter: blur(6px);
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

/* HERO SAFETY: Hero section ko kabhi hide mat karo */
html.js-reveal-ready .hero,
html.js-reveal-ready #home,
html.js-reveal-ready .hero .animate-fade,
html.js-reveal-ready .hero .animate-left,
html.js-reveal-ready .hero .animate-fade-up {
    opacity: unset;
    transform: unset;
    filter: unset;
}

/* Founder left se */
html.js-reveal-ready [data-reveal="left"] {
    transform: translate3d(-36px, 0, 0);
}

/* Founder right se */
html.js-reveal-ready [data-reveal="right"] {
    transform: translate3d(36px, 0, 0);
}

/* Visible state */
html.js-reveal-ready .reveal-item:not(.hero):not(#home).is-visible,
html.js-reveal-ready .reveal-child.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

/* Performance cleanup */
html.js-reveal-ready .reveal-child.is-visible.reveal-complete,
html.js-reveal-ready .reveal-item.is-visible.reveal-complete {
    will-change: auto;
}

/* Package card hover */
html.js-reveal-ready .pkg-card.reveal-child.is-visible:hover {
    transform: translate3d(0, -10px, 0);
}

/* MOBILE: Blur OFF — low-end phones aur iOS Safari pe
   blur animation elements ko invisible chhod sakta hai */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 76px;
    }

    html.js-reveal-ready .reveal-item:not(.hero):not(#home),
    html.js-reveal-ready .reveal-child {
        transform: translate3d(0, 20px, 0);
        filter: none !important;
        transition-duration: 0.48s;
    }

    html.js-reveal-ready [data-reveal="left"],
    html.js-reveal-ready [data-reveal="right"] {
        transform: translate3d(0, 20px, 0);
    }

    html.js-reveal-ready .stat-item {
        filter: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .animate-fade,
    .animate-left,
    .animate-fade-up,
    html.js-reveal-ready .reveal-item:not(.hero),
    html.js-reveal-ready .reveal-child {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Hero Email Bottom Right */
.hero-email {
    position: absolute; 
    bottom: 30px; 
    right: 40px;  
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-cream); 
    z-index: 50;
    letter-spacing: 1px;
    opacity: 0.8; 
}

/* --- TRUST / STATS SECTION --- */
.trust-section {
    padding: 25px 0; 
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(162, 203, 139, 0.1); 
    border-bottom: 1px solid rgba(162, 203, 139, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px; 
    text-align: center;
    /* align-items: start; ko hatakar stretch kiya hai taaki columns ki height equal rahe */
    align-items: stretch; 
}

.stat-item { 
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Ye sabhi elements ko strictly top se align rakhega */
}

.stat-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem; 
    font-weight: 600;
    color: var(--sage-mid);
    line-height: 1.2; /* 1 se thoda badhaya hai better spacing ke liye */
    margin-bottom: 8px; /* Thodi si space badhai hai title se pehle */
    letter-spacing: 1px;
    /* white-space: nowrap; -> ISKO HATA DIYA HAI taaki grid kharab na ho */
}

.plus-sign { 
    color: var(--sage-light); 
    font-weight: 400; 
}

.stat-title {
    font-size: 0.85rem; 
    font-weight: 600;
    color: #ffffff; 
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    line-height: 1.4; /* Text wrap hone par clear dikhne ke liye add kiya */
}

.stat-desc { 
    font-size: 0.8rem; 
    color: #a0aab2; 
}
/* Global text highlight utility */
.text-highlight {
    color: var(--sage-mid) !important;
    font-style: italic !important;
    font-weight: 700 !important;
}


/* --- FOUNDER SECTION --- */
.founder-section {
    padding: 100px 0 60px 0; /* 👉 CHANGE: Gap fix kiya */
    background-color: #111111; 
    position: relative;
    z-index: 1;
}

.founder-grid {
    display: grid;
    grid-template-columns: 4fr 1fr; 
    gap: 50px; 
    align-items: center; 
}

.founder-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    padding-left: 20px; 
}

.founder-text-wrapper .btn { align-self: flex-start; margin-top: 25px; }
.serif-heading.founder-heading { font-size: 3.2rem; color: #fdfce9; line-height: 1.2; margin-bottom: 5px; }
.founder-subtitle { font-size: 1.3rem; color: #a2cb8b; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.founder-description .about-text { color: #f5f5f5; font-size: 1.15rem; line-height: 1.8; margin-bottom: 20px; text-align: left; }
.founder-quote {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    color: #ffffff; 
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 15px;
    border-left: 3px solid #a2cb8b; 
    padding-left: 20px;
}

.founder-image-container { position: relative; width: 100%; display: flex; justify-content: center; align-items: center; }
.founder-circular-frame {
    position: relative;
    width: 400px; 
    height: 400px; 
    border-radius: 10px; 
    border: none;
    box-shadow: 0 0 50px rgba(162, 203, 139, 0.5); 
    overflow: hidden;
    z-index: 2;
    background: #000; 
}
.founder-img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; display: block; }
.floating-bounce { animation: floatBounceSquare 4.5s ease-in-out infinite; }
@keyframes floatBounceSquare {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-18px); } 
    100% { transform: translateY(0px); }
}

/* Founder Socials */
.founder-socials { 
    display: flex; 
    gap: 15px; 
    margin-top: 20px; 
    align-items: center; 
    margin-left: 36px; /* 👉 'L' ke theek niche laane ke liye */
}
.founder-socials a { color: #fdfce9; font-size: 1.7rem; transition: all 0.4s ease; text-decoration: none; display: inline-block; }
.founder-socials a:hover { color: #a2cb8b; transform: translateY(-8px) scale(1.1); filter: drop-shadow(0 5px 15px rgba(162, 203, 139, 0.4)); }

/* Mobile pe center rakhne ke liye */
@media (max-width: 768px) {
    .founder-socials {
        justify-content: center;
        margin-left: 0; /* Phone pe shift hata diya taaki center rahe */
    }
}


/* ========================================= */
/* --- PORTFOLIO (NETFLIX STYLE) ---         */
/* ========================================= */

.portfolio-section {
    padding: 60px 0 100px 0; /* 👉 CHANGE: Upar ka gap kam kiya */
    background-color: #0f120e; 
    overflow: hidden; 
}

/* Main heading aligned left */
.portfolio-main-heading {
    padding-left: 5%; /* Aligns with hero section */
    text-align: left;
    margin-bottom: 40px;
    color: var(--text-white);
}

.portfolio-row-container {
    position: relative; /* Overlays zaroori hai */
    margin-bottom: 50px;
}

.row-header {
    padding-left: 5%;
    margin-bottom: 15px;
    text-align: left;
}

.row-title {
    font-size: 1.6rem;
    color: bisque; 
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

/* The Sliding Track */
.slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto; 
    scroll-behavior: smooth; 
    padding: 15px 5% 25px 5%; /* Left aur right side 5% padding for perfect alignment */
    scrollbar-width: none; 
}
.slider-track::-webkit-scrollbar { display: none; }

/* Video Cards */
.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0; 
    background: #111;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
    transform: scale(1.03); 
    box-shadow: 0 10px 25px rgba(162, 203, 139, 0.2);
    border: 1px solid var(--sage-mid);
}
.video-card iframe { width: 100%; height: 100%; border: none; display: block; pointer-events: auto; }

.horizontal-card { width: 360px; aspect-ratio: 16 / 9; }
.vertical-card { width: 220px; aspect-ratio: 9 / 16; }

/* --- NETFLIX OVERLAY BUTTONS --- */
.slide-btn.overlay-btn {
    position: absolute;
    top: 55%; 
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.6); 
    border: none;
    color: var(--text-white); /* White arrow on dark bg looks best */
    width: 50px;
    height: 100px; /* Lamba Netflix style button */
    border-radius: 8px;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0; /* Default me hide rahega */
}

/* Hover karne par buttons show honge */
.portfolio-row-container:hover .slide-btn.overlay-btn {
    opacity: 0.8;
}

.slide-btn.overlay-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
    color: var(--sage-mid); /* Hover pe green arrow */
}

/* Edges pe fit kar diya */
.left-btn { left: 2%; }
.right-btn { right: 2%; }


/* ========================================= */
/* --- RESPONSIVENESS (MOBILE/TABLET) ---    */
/* ========================================= */
@media (max-width: 992px) {
    .trust-section { padding: 40px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .founder-grid { gap: 40px; }
    .founder-heading { font-size: 2.8rem; }
    .founder-circular-frame { width: 300px; height: 300px; }
    .horizontal-card { width: 300px; }
    .vertical-card { width: 180px; }
}

@media (max-width: 768px) {
    .serif-heading {
        font-size: clamp(1.3rem, 5.5vw, 1.7rem);
        line-height: 1.22;
    }

    .hero .serif-heading {
        max-width: 100%;
        font-size: clamp(1.25rem, 5.8vw, 1.65rem);
        line-height: 1.2;
    }

    .hero .line-1,
    .hero .line-2 {
        max-width: 100%;
    }

    .hero-subhead {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-top: 12px;
    }

    .cta-group { flex-direction: column; gap: 10px; }
    .btn { text-align: center; width: 100%; padding: 12px 20px; }
    .hero-email { bottom: 20px; right: 20px; font-size: 0.75rem; }
    
    .stats-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .founder-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .founder-text-wrapper { align-items: center; text-align: center; padding-left: 0; }
    .founder-text-wrapper .btn { align-self: center; }
    .founder-image-container { order: -1; }
    .founder-description .about-text { text-align: center; }
    .founder-heading { font-size: 2.2rem; }
    .founder-socials { justify-content: center; gap: 20px; }
    
    .portfolio-section { padding: 40px 0; }
    .portfolio-main-heading { font-size: 2rem; }
    .row-title { font-size: 1.2rem; }
    .horizontal-card { width: 260px; }
    .vertical-card { width: 150px; }
    .slider-track { gap: 15px; }
    
    /* Mobile me overlay buttons hide kar diye, kyunki log swipe karenge */
    .slide-btn.overlay-btn { display: none; }
}

@media (max-width: 480px) {
    .hero {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }

    .hero-content {
        width: 90%;
    }

    .hero .serif-heading {
        font-size: clamp(1.2rem, 6.5vw, 1.55rem);
    }

    .cta-group {
        margin-top: 18px !important;
    }
}

@media (max-width: 576px) {
    .stat-heading { font-size: 2.5rem; }
}

/* ============================================
   CINEMATIC FILMS — Horizontal Slider Fix
   magnus-horizontal-grid ab slider-track
   use karta hai, yeh wrapper styling hai
   ============================================ */
#magnus-horizontal-grid {
    background-color: #0f120e;
    padding-bottom: 10px;
}

/* film-category heading padding */
#magnus-horizontal-grid .film-category {
    margin-bottom: 0;
}

#magnus-horizontal-grid .row-title {
    margin-bottom: 15px;
    display: block;
}

/* Legacy .video-row — agar kahin reh gayi ho toh
   usse bhi slider jaise dikhao */
.video-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 15px 5% 25px 5%;
    scrollbar-width: none;
}
.video-row::-webkit-scrollbar { display: none; }

/* ========================================= */
/* --- GAP HATANE KA FIX ---                 */
/* ========================================= */

.portfolio-section {
    padding: 60px 0 0 0 !important; /* 👉 Bottom ka 100px gap ekdum ZERO kar diya */
    background-color: #0f120e; 
    overflow: hidden; 
}

/* Portfolio ki aakhri row ka bacha hua margin bhi hata diya */
.portfolio-row-container:last-child {
    margin-bottom: 0 !important; 
}


/* Old testimonials grid replaced — see .testi-grid above */
/* ========================================= */
/* PACKAGES SECTION (FLEXBOX ALIGNMENT)      */
/* ========================================= */

/* 4-Column Grid */
/* ═══════════════════════════════════════════
   PACKAGES — Bright Hover Zoom Glow Edition
═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   PACKAGE SECTION — COMPLETE REDESIGN v3
   Professional · Minimal · Green Ambient · Badges on TOP
═══════════════════════════════════════════════════════════ */

/* ── Animations ── */
@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0); }
    50%       { transform: translate(40px, -50px); }
}
@keyframes orb-drift-2 {
    0%, 100% { transform: translate(0, 0); }
    50%       { transform: translate(-35px, 40px); }
}
@keyframes bestseller-glow-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(162,203,139,0.5),
            0 0 30px rgba(162,203,139,0.2),
            0 8px 40px rgba(0,0,0,0.5);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(162,203,139,0.8),
            0 0 55px rgba(162,203,139,0.35),
            0 8px 40px rgba(0,0,0,0.5);
    }
}
@keyframes custom-glow-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(220,195,130,0.4),
            0 0 25px rgba(220,195,130,0.12),
            0 8px 40px rgba(0,0,0,0.5);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(220,195,130,0.7),
            0 0 48px rgba(220,195,130,0.22),
            0 8px 40px rgba(0,0,0,0.5);
    }
}
@keyframes badge-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-3px); }
}
@keyframes shimmer-sweep {
    0%   { left: -100%; }
    100% { left: 150%; }
}

/* ========================================= */
/* PACKAGES SECTION (FLEXBOX ALIGNMENT)      */
/* ========================================= */

/* 4-Column Grid */
.packages-grid-4 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0 5%;
    align-items: stretch;
}

.pkg-card {
    background: #151814;
    border: 1px solid rgba(162, 203, 139, 0.1);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    transform-style: preserve-3d;
    will-change: transform;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.pkg-card:hover {
    border-color: rgba(162, 203, 139, 0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 0 30px rgba(162,203,139,0.08);
}

.pkg-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #fff;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkg-card h4, .pkg-card h5 {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #a2cb8b;
    line-height: 1.4;
    font-weight: 600;
}

.pkg-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}
.pkg-price span { font-size: 0.9rem; color: #777; font-weight: 500; }

.pkg-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pkg-card ul li {
    font-size: 0.85rem;
    color: var(--text-cream);
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.pkg-card ul li i { color: var(--sage-mid); margin-top: 3px; }

.pkg-btn {
    margin-top: auto;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.pkg-btn:hover { transform: scale(0.93); }

/* Best Seller Card */
.pkg-card.best-offer {
    border: 2px solid var(--sage-mid);
    background: linear-gradient(145deg, #1a1e19 0%, #111 100%);
    position: relative;
}

.offer-badge {
    background: var(--sage-mid);
    color: #000;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 20px;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
}

/* Delivery highlight row */
.pkg-card ul li.highlight-delivery {
    display: block;
    width: 100%;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--sage-mid);
    margin-top: auto;
    margin-bottom: 15px;
    padding: 8px 0;
    border-top: 1px dashed rgba(162, 203, 139, 0.3);
    border-bottom: 1px dashed rgba(162, 203, 139, 0.3);
    text-align: center;
}
.pkg-card ul li.highlight-delivery i { display: none; }

/* ========================================= */
/* CUSTOM PACKAGE (P5) SPECIFIC STYLES       */
/* ========================================= */

.pkg-card.custom-package {
    border: 2px solid #F6F0D7;
    position: relative;
}

.custom-badge {
    background: #F6F0D7;
    color: #000;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 20px;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.pkg-card.custom-package .pkg-btn {
    background-color: #F6F0D7 !important;
    color: #000 !important;
    border: 1px solid #F6F0D7 !important;
    font-weight: 700;
}
.pkg-card.custom-package .pkg-btn:hover {
    background-color: transparent !important;
    color: #F6F0D7 !important;
}

.pkg-card.custom-package h5 { color: #F6F0D7; }
.pkg-card.custom-package p { color: #F6F0D7 !important; }

.pkg-card.custom-package ul li.highlight-delivery {
    color: #F6F0D7;
    border-top: 1px dashed rgba(246, 240, 215, 0.3);
    border-bottom: 1px dashed rgba(246, 240, 215, 0.3);
}

/* ========================================= */
/* PACKAGES RESPONSIVE                       */
/* ========================================= */

@media (max-width: 1024px) {
    .packages-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 650px) {
    .packages-grid-4 { grid-template-columns: 1fr; gap: 40px; }
    .pkg-card {
        background: #1a1e19;
        border: 1px solid rgba(162, 203, 139, 0.4);
        box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    }
}

/* VALUE ADDS — CINEMATIC PREMIUM REDESIGN   */
/* ========================================= */

.value-adds-section {
    padding: 90px 5% 80px;
    background: linear-gradient(180deg, #0a0c0a 0%, #0f1210 50%, #0a0c0a 100%);
    position: relative;
    overflow: hidden;
}

/* Ambient background glow */
.value-adds-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(162,203,139,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.value-section-label {
    text-align: center;
    margin-bottom: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sage-mid);
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.value-section-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 55px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.value-section-heading span {
    color: var(--sage-mid);
    font-style: italic;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.value-box {
    background: linear-gradient(145deg, #131710 0%, #0d110d 100%);
    border: 1px solid rgba(162, 203, 139, 0.12);
    border-radius: 20px;
    padding: 38px 32px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Corner accent glow */
.value-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle at top left, rgba(162,203,139,0.09) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 20px 0 0 0;
    transition: opacity 0.4s ease;
    opacity: 0;
}

/* Bottom right accent */
.value-box::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle at bottom right, rgba(162,203,139,0.05) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 0 0 20px 0;
}

.value-box:hover {
    border-color: rgba(162, 203, 139, 0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(162,203,139,0.08), inset 0 1px 0 rgba(162,203,139,0.12);
}

.value-box:hover::before {
    opacity: 1;
}

/* Box header */
.value-box-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(162,203,139,0.08);
}

.value-box-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(162,203,139,0.08);
    border: 1px solid rgba(162,203,139,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.value-box:hover .value-box-icon {
    background: rgba(162,203,139,0.14);
    transform: rotate(-5deg) scale(1.05);
}

.value-box h3 {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.value-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.value-box ul li {
    font-size: 0.9rem;
    color: rgba(230,230,230,0.82);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.55;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    transition: background 0.25s ease, transform 0.25s ease;
}

.value-box ul li:hover {
    background: rgba(162,203,139,0.05);
    transform: translateX(4px);
}

.value-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(162,203,139,0.12);
    border: 1px solid rgba(162,203,139,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: background 0.25s ease;
}

.value-box ul li:hover .value-check-icon {
    background: rgba(162,203,139,0.22);
}

.value-check-icon i {
    color: var(--sage-mid);
    font-size: 0.65rem;
}

/* Satisfaction Banner */
.satisfaction-banner {
    max-width: 1100px;
    margin: 30px auto 0;
    background: linear-gradient(135deg, rgba(162,203,139,0.06) 0%, rgba(162,203,139,0.02) 100%);
    border: 1px solid rgba(162,203,139,0.22);
    border-radius: 14px;
    padding: 22px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(6px);
}

.satisfaction-banner p {
    color: #a2cb8b;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.satisfaction-banner p strong {
    color: #ffffff;
    font-weight: 700;
}

/* Mobile Responsiveness */
@media (max-width: 850px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .value-section-heading {
        font-size: 1.7rem;
    }
    
    .satisfaction-banner p {
        flex-direction: column;
        font-size: 0.9rem;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .value-adds-section {
        padding: 60px 4% 60px;
    }
    .value-box {
        padding: 28px 20px;
    }
}


/* ========================================= */
/* ORDER PROCESS — CINEMATIC TIMELINE        */
/* ========================================= */

.process-section {
    padding: 80px 5% 70px;
    background: #0a0c0a;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(162,203,139,0.04) 0%, transparent 65%);
    pointer-events: none;
}

.process-section-header {
    margin-bottom: 56px;
    padding-left: 0;
}

.process-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--sage-mid);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.process-main-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.process-main-heading .text-highlight {
    color: var(--sage-mid) !important;
    font-style: italic !important;
    font-weight: 700 !important;
}

/* The timeline row */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    position: relative;
}

/* 5-column override when step 05 is present */
.process-timeline-5col {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1380px;
}

/* Connecting line between steps */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 62px; /* badge height (24px) + gap (10px) + half icon (88/2 = 44) ≈ 62px */
    left: calc(12.5% + 1px);
    right: calc(12.5% + 1px);
    height: 1px;
    background: linear-gradient(90deg, var(--sage-mid) 0%, rgba(162,203,139,0.3) 50%, rgba(162,203,139,0.12) 100%);
    z-index: 0;
}

/* 5col line: extends further right toward step 05, fades to green */
.process-timeline-5col::before {
    left: calc(10% + 1px);
    right: calc(10% + 1px);
    background: linear-gradient(90deg,
        var(--sage-mid) 0%,
        rgba(162,203,139,0.45) 55%,
        rgba(162,203,139,0.7) 78%,
        #a2cb8b 100%);
}

/* Icon column wrapper: badge upar, icon neeche — clean stack */
.process-icon-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
    cursor: default;
}

/* Step number badge floating above icon */
.step-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--sage-mid);
    color: #0a0c0a;
    font-size: 0.62rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    flex-shrink: 0;
    letter-spacing: 0;
    box-shadow: 0 0 0 3px #0a0c0a, 0 0 0 5px rgba(162,203,139,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* position: absolute hata diya — ab ye flow mein hai */
}

.process-step:hover .step-badge {
    transform: scale(1.15);
    box-shadow: 0 0 0 3px #0a0c0a, 0 0 16px rgba(162,203,139,0.5);
}

/* The icon circle */
.process-icon-wrap {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(145deg, #131710 0%, #0d110d 100%);
    border: 1px solid rgba(162,203,139,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.165,0.84,0.44,1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.process-step:hover .process-icon-wrap {
    border-color: rgba(162,203,139,0.55);
    box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 24px rgba(162,203,139,0.15);
    transform: translateY(-6px) scale(1.04);
}

.process-icon-wrap i {
    font-size: 1.6rem;
    color: var(--sage-mid);
    transition: transform 0.3s ease;
}

.process-step:hover .process-icon-wrap i {
    transform: scale(1.1);
}

/* Inner glow ring on hover */
.process-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(162,203,139,0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover .process-icon-wrap::after {
    opacity: 1;
}

.process-step-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.process-step h4 {
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

.process-step:hover h4 {
    color: var(--sage-mid);
}

.process-step p {
    color: rgba(160,170,178,0.85);
    font-size: 0.75rem;
    line-height: 1.55;
    margin: 0;
    font-style: italic;
}

/* Mobile view: vertical stack */
@media (max-width: 768px) {
    .process-section {
        padding: 60px 5% 50px;
    }
    
    .process-main-heading {
        font-size: 1.6rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 32px 20px;
    }
    .process-timeline-5col {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Hide the connecting line on mobile */
    .process-timeline::before {
        display: none;
    }
    
    .process-icon-wrap {
        width: 72px;
        height: 72px;
    }
    
    .process-icon-wrap i {
        font-size: 1.3rem;
    }
    
    .process-step {
        padding: 0 8px;
    }
}

@media (max-width: 420px) {
    .process-timeline {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
        gap: 28px;
    }
    .process-timeline-5col {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 16px;
    }

    /* Badge + Icon ko ek saath left column mein rakhna */
    .process-step .step-badge {
        margin-bottom: 6px;
    }

    .process-icon-wrap {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        margin-bottom: 0;
    }

    /* Left column: badge upar, icon neeche */
    .process-step {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    /* Wrap badge + icon together */
    .process-icon-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }
}

/* ========================================= */
/* TESTIMONIALS — CINEMATIC REDESIGN         */
/* ========================================= */

.testimonials-section {
    padding: 80px 5% 70px;
    background: linear-gradient(180deg, #0a0c0a 0%, #0e1210 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 30px; left: 30%;
    width: 500px; height: 200px;
    background: radial-gradient(ellipse, rgba(162,203,139,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.testi-header {
    margin-bottom: 48px;
}

.testi-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--sage-mid);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.testi-main-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

/* Desktop: 4-column grid */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.testi-card {
    background: linear-gradient(145deg, #131610 0%, #0d100d 100%);
    border: 1px solid rgba(162,203,139,0.1);
    border-radius: 18px;
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Top quote decoration */
.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 10px; right: 18px;
    font-size: 5rem;
    color: rgba(162,203,139,0.07);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testi-card:hover {
    border-color: rgba(162,203,139,0.3);
    box-shadow: 0 18px 44px rgba(0,0,0,0.45), 0 0 0 1px rgba(162,203,139,0.06), inset 0 1px 0 rgba(162,203,139,0.1);
}

/* Avatar */
.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--avatar-hue, 120deg), 40%, 18%) 0%, hsl(var(--avatar-hue, 120deg), 30%, 10%) 100%);
    border: 2px solid rgba(162,203,139,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--sage-mid);
    letter-spacing: 1px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover .testi-avatar {
    border-color: var(--sage-mid);
    box-shadow: 0 4px 18px rgba(162,203,139,0.2);
}

.testi-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testi-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--sage-mid);
    font-family: 'Poppins', sans-serif;
}

.testi-location {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testi-location i {
    color: var(--sage-mid);
    font-size: 0.65rem;
}

.testi-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(162,203,139,0.15) 0%, transparent 100%);
    margin: 2px 0;
}

.testi-review {
    font-size: 0.84rem;
    color: rgba(220,225,220,0.8);
    font-style: italic;
    line-height: 1.65;
    flex-grow: 1;
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-top: 2px;
}

.testi-stars i {
    color: #d3d88a;
    font-size: 0.75rem;
}

/* =============================================
   MOBILE: Horizontal Snap Slider for testimonials
   ============================================= */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0 50px;
    }
    
    .testi-header {
        padding: 0 5%;
    }
    
    .testi-main-heading {
        font-size: 1.65rem;
    }
    
    .testi-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding: 4px 5% 24px 5%;
        scrollbar-width: none;
        /* Show scroll hint */
        cursor: grab;
    }
    
    .testi-grid::-webkit-scrollbar {
        display: none;
    }
    
    .testi-card {
        min-width: 82vw;
        max-width: 82vw;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    
    /* Scroll indicator dots */
    .testi-scroll-hint {
        display: flex;
        justify-content: center;
        gap: 6px;
        padding: 10px 0 0;
    }
}

@media (min-width: 769px) {
    .testi-scroll-hint {
        display: none;
    }
}

/* Scroll dot style */
.testi-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(162,203,139,0.25);
    transition: background 0.3s, transform 0.3s;
}

.testi-dot.active {
    background: var(--sage-mid);
    transform: scale(1.3);
}
/* ========================================= */
/* --- CONTACT & FAQ GRID STYLES ---         */
/* ========================================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 60px;
    padding: 0 5%; /* Rule: 5% Left-Right gap */
}

/* FAQ Side */
.faq-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-box h4 {
    color: var(--sage-mid);
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-box p {
    color: #a0aab2;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Form Side */
.contact-form-sleek {
    background: rgba(162, 203, 139, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(162, 203, 139, 0.1);
}

.field-group {
    margin-bottom: 20px;
}

.field-group input, 
.field-group textarea {
    width: 100%;
    padding: 15px;
    background: #0f120e;
    border: 1px solid rgba(162, 203, 139, 0.15);
    border-radius: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: 0.3s;
}

.field-group input:focus, 
.field-group textarea:focus {
    border-color: var(--sage-mid);
}

/* 📱 MOBILE VIEW (Stack) */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .faq-column {
        order: 2; /* Form pehle dikhega mobile pe */
    }
    
    .form-column {
        order: 1;
    }
}


/* 🔥 HATHODA FIX: Mobile pe Overlap Rokne Ke Liye */
@media (max-width: 768px) {
    .hero {
        align-items: flex-start !important;
        padding-top: 120px !important;
        height: auto !important;
        padding-bottom: 60px !important;
    }
    
    .hero-container {
        padding-left: 0 !important;
    }
    
    .hero-content {
        max-width: 100% !important;
    }
    
    .logo {
        position: relative !important;
        z-index: 9999 !important;
    }
}

/* ========================================= */
/* FOOTER STYLES                             */
/* ========================================= */
.site-footer {
    background-color: #080a07; /* Background se thoda dark */
    padding: 70px 5% 20px;
    border-top: 1px solid rgba(162, 203, 139, 0.1);
    color: var(--text-cream);
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.6fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 50px;
    align-items: start;
}

.footer-brand h2 {
    color: var(--text-white);
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 300px;
}

/* Tagline mini badges under brand */
.footer-tagline-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-tagline-bar span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--sage-mid);
    background: rgba(162, 203, 139, 0.07);
    border: 1px solid rgba(162, 203, 139, 0.2);
    border-radius: 20px;
    padding: 5px 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ========================================= */
/* FOOTER PAYMENT LOGOS                      */
/* ========================================= */
.footer-payments h3 {
    color: var(--sage-mid);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* Each payment logo tile */
.pay-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: default; /* Not clickable */
    transition: transform 0.25s ease, filter 0.25s ease;
}

.pay-logo-item:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
}

.pay-logo-item span {
    font-size: 0.65rem;
    color: #a0aab2;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* The SVG pill/badge itself */
.pay-svg {
    width: 56px;
    height: 26px;
    border-radius: 5px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
    transition: filter 0.25s ease;
}

.pay-logo-item:hover .pay-svg {
    filter: drop-shadow(0 4px 12px rgba(162,203,139,0.25));
}

.payment-note {
    margin-top: 14px;
    font-size: 0.75rem;
    color: #a0aab2;
    line-height: 1.5;
    opacity: 0.8;
}

/* Payments CSS class defined here */
.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
    color: #a0aab2;
}

.payment-icons i {
    transition: color 0.3s ease, transform 0.3s ease;
}

.payment-icons i:hover {
    color: var(--sage-mid);
    transform: translateY(-2px);
}

.footer-links h3, .footer-contact h3 {
    color: var(--sage-mid);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a, .footer-contact p a {
    color: var(--text-cream);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Hover effect for Links */
.footer-links ul li a:hover, .footer-contact p a:hover {
    color: var(--sage-mid);
    opacity: 1;
    padding-left: 8px; 
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(162, 203, 139, 0.05);
    border: 1px solid rgba(162, 203, 139, 0.2);
    color: var(--sage-mid);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

/* Icons Hover Animation */
.social-icons a:hover {
    background-color: var(--sage-mid);
    color: #0f120e;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(162, 203, 139, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(162, 203, 139, 0.1);
    font-size: 0.85rem;
    opacity: 0.5;
}

/* 🔥 Developer Credit Link (Teri LinkedIn Profile) */
.dev-link {
    color: var(--sage-mid);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dev-link:hover {
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(162, 203, 139, 0.5); /* Glow effect */
}

/* ========================================= */
/* 📱 Mobile View for Footer                 */
/* ========================================= */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .payment-logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
    }
    .footer-tagline-bar {
        justify-content: center;
    }
    .payment-icons {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
    .payment-logos-grid {
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
    }
    .footer-links ul li a:hover {
        padding-left: 0;
    }
    .payment-note {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .payment-logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    .pay-svg {
        width: 46px;
        height: 22px;
    }
    .pay-logo-item span {
        font-size: 0.58rem;
    }
}


/* ========================================= */
/* IMPORTANT: CENTER PLAY BUTTON STYLES      */
/* ========================================= */

.video-card {
    position: relative; /* Button ko card ke center me rakhne ke liye zaroori */
}

.center-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(162, 203, 139, 0.85); /* Tera Sage Green color */
    color: #111;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding-left: 5px; /* Play icon ko theek se center karne ke liye */
    z-index: 10;
    transition: all 0.3s ease;
    pointer-events: none; /* Taaki button ke aar-paar click ho sake */
    backdrop-filter: blur(4px);
}

/* Mouse aane par button thoda bada aur bright hoga */
.video-card:hover .center-play-btn {
    background: rgba(162, 203, 139, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Jab video click karke play ho jaye, toh button gayab kar do */
.video-card.is-playing .center-play-btn {
    opacity: 0; 
}
/* ========================================= */
/* YOUTUBE LAZY LOAD & HOVER EFFECTS         */
/* ========================================= */

.yt-lazy-card {
    position: relative;
    cursor: pointer;
    overflow: hidden; /* Taaki zoom bahar na nikle */
}

/* Photo ka design */
.yt-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.4s ease;
}

/* Hover karne pe photo thodi zoom hogi (Premium feel) */
.yt-lazy-card:hover .yt-thumbnail {
    transform: scale(1.05);
}

.iframe-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

/* Jab click ho jaye aur video chalne lage */
.yt-lazy-card.is-playing .yt-thumbnail,
.yt-lazy-card.is-playing .center-play-btn {
    display: none; /* Photo aur button gayab */
}

.yt-lazy-card.is-playing .iframe-container {
    display: block; /* YouTube chalu */
}
/* Mobile slider for testi-grid is handled in the new testimonials section above */