/* ------------------------------
   🎨 BRAND COLOR VARIABLES
-------------------------------- */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --black: #1A1A1A;
}


/* ------------------------------
   🔤 BRAND TYPOGRAPHY SCALE
-------------------------------- */

:root {
    --fontH: 'Poppins', sans-serif;
    --fontB: 'Open Sans', sans-serif;
    --h1: clamp(2.6rem, 4vw, 3.6rem);
    --h2: clamp(2.2rem, 3.5vw, 3rem);
    --h3: clamp(1.8rem, 3vw, 2.4rem);
    --h4: clamp(1.4rem, 2.2vw, 1.8rem);
    --body: clamp(1rem, 1.1vw, 1.15rem);
    --small: 0.9rem;
}


/* ================================
   🔒 HEADING COLOR LOCK (NO BLACK)
================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--blue);
    /* default */
}


/* White background headings */

.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6 {
    color: var(--blue);
}


/* Section title system */

.section-title {
    color: var(--blue);
}

.section-title span {
    background: linear-gradient(90deg, var(--purple), var(--violet));
    -webkit-background-clip: text;
    color: transparent;
}


/* Dark background headings */

.bg-blue h1,
.bg-blue h2,
.bg-blue h3,
.bg-blue h4,
.bg-blue h5,
.bg-blue h6,
.bg-purple h1,
.bg-purple h2,
.bg-purple h3,
.bg-purple h4,
.bg-purple h5,
.bg-purple h6,
.bg-violet h1,
.bg-violet h2,
.bg-violet h3,
.bg-violet h4,
.bg-violet h5,
.bg-violet h6 {
    color: var(--white);
}


/* ------------------------------
   🌐 GLOBAL RESET
-------------------------------- */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: clip;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fontB);
    font-size: var(--body);
    line-height: 1.75;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}


/* ------------------------------
   📝 TYPOGRAPHY RULES
-------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--fontH);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: var(--h1);
    color: var(--blue);
}

h2 {
    font-size: var(--h2);
    color: var(--purple);
}

h3 {
    font-size: var(--h3);
    color: var(--violet);
}

h4 {
    font-size: var(--h4);
    color: var(--purple);
}

p {
    color: var(--black);
    font-weight: 400;
}


/* ------------------------------
   ⚪ WHITE BACKGROUND RULE
-------------------------------- */

.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4 {
    color: inherit;
}


/* ------------------------------
   🔵 DARK BACKGROUND RULE
-------------------------------- */

.bg-blue,
.bg-purple,
.bg-violet {
    color: var(--white);
}

.bg-blue *,
.bg-purple *,
.bg-violet * {
    color: var(--white);
}


/* ------------------------------
   🔘 BUTTONS (BRANDED)
-------------------------------- */

.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--fontH);
    font-weight: 600;
    border-radius: 50px;
    background: var(--blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 18px 40px rgba(42, 42, 255, 0.25);
}

.btn-brand:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.45);
}


/* ------------------------------
   📦 BRAND CARDS
-------------------------------- */

.card-brand {
    background: var(--purple);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.card-brand:hover {
    transform: translateY(-10px);
    background: linear-gradient( 135deg, var(--purple), var(--violet));
}


/* ------------------------------
   ⭐ PREMIUM BADGES
-------------------------------- */

.badge-gold {
    background: linear-gradient(135deg, var(--gold), #f5e6a8);
    color: #000;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}


/* ------------------------------
   🎞 SMOOTH TRANSITIONS
-------------------------------- */

a,
button,
.card-brand {
    transition: all 0.35s ease;
}


/* ------------------------------
   📱 RESPONSIVE ADJUSTMENTS
-------------------------------- */

@media (max-width: 991px) {
    .card-brand {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.9rem;
    }
    .btn-brand {
        padding: 12px 28px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.7rem;
    }
}


/* ===============================
   MARBLE POLISHING – BRAND SECTION
================================ */

.marble-polish-section {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: #ffffff;
    font-family: var(--fontH);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


/* GRID */

.marble-polish-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

video {
    will-change: transform;
    transform: translateZ(0);
}


/* BADGE */

.marble-badge {
    display: inline-block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    border-radius: 999px;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(42, 42, 255, 0.35);
}


/* TITLE */

.marble-title {
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 26px;
    color: #2A2AFF;
}

.marble-title span {
    background: linear-gradient( 90deg, #6A1B9A, #8A2BE2, #D4AF37);
    -webkit-background-clip: text;
    color: transparent;
}


/* DESCRIPTION */

.marble-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #111;
    opacity: 0.88;
    margin-bottom: 18px;
}


/* CTA */

.marble-cta {
    margin-top: 32px;
}

.marble-btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient( 135deg, #2A2AFF, #6A1B9A, #8A2BE2);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(42, 42, 255, 0.45), 0 0 35px rgba(212, 175, 55, 0.35);
    transition: all 0.35s ease;
}

.marble-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(42, 42, 255, 0.6), 0 0 45px rgba(212, 175, 55, 0.6);
}


/* ===============================
   IMAGE – 3D GLASS EFFECT
================================ */

.marble-polish-image {
    perspective: 1200px;
}

.glass-frame {
    position: relative;
    border-radius: 26px;
    padding: 16px;
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    transform: rotateY(-6deg) rotateX(3deg);
    transition: all 0.6s ease;
}

.glass-frame img {
    width: 100%;
    display: block;
    border-radius: 20px;
}


/* HOVER 3D */

.glass-frame:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .marble-polish-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .marble-polish-image {
        order: -1;
    }
    .glass-frame {
        transform: none;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #ffffff;
}


/* SECTION */

.polish-section {
    padding: 110px 0;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.polish-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}


/* TITLE */

.polish-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(42, 42, 255, 0.12);
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.polish-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 18px;
}

.polish-title span {
    background: linear-gradient(90deg, var(--purple), var(--violet), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}

.polish-desc {
    max-width: 720px;
    margin-bottom: 55px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}


/* GRID */

.polish-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    perspective: 1600px;
}


/* CARD */

.polish-card {
    border-radius: 28px;
    padding: 26px;
    background: linear-gradient( 145deg, var(--blue) 0%, var(--blue) 45%, var(--purple) 70%, var(--violet) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    backdrop-filter: blur(16px);
    box-shadow: 0 28px 60px rgba(42, 42, 255, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    transform-style: preserve-3d;
    transition: 0.6s cubic-bezier(.4, 0, .2, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.97);
}

.polish-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.polish-card:hover {
    transform: translateY(-16px) rotateX(6deg);
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.45), 0 0 60px rgba(212, 175, 55, 0.5);
}


/* IMAGE */

.polish-img {
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.polish-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: scale(1.04);
    transition: 0.7s ease;
}


/* Glass overlay (NO BLUR ON IMAGE) */

.polish-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.polish-card:hover .polish-img img {
    transform: scale(1.10);
}


/* FORCE WHITE TEXT */

.polish-card,
.polish-card * {
    color: #ffffff !important;
}


/* TEXT */

.polish-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.polish-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    opacity: 0.96;
}


/* HOVER GLOW */

.polish-card:hover h4 {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.6), 0 0 22px rgba(212, 175, 55, 0.6);
}

.polish-card:hover p {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .polish-steps {
        grid-template-columns: 1fr;
    }
    .polish-img img {
        height: 190px;
    }
}

.polish-benefits {
    padding: 120px 0;
    background: linear-gradient( 135deg, #2A2AFF 0%, #2A2AFF 45%, #6A1B9A 70%, #8A2BE2 100%);
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.benefits-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
    text-align: center;
}


/* Badge */

.benefits-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}


/* Title */

.benefits-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.3rem);
    font-weight: 800;
    margin-bottom: 18px;
}

.benefits-title span {
    background: linear-gradient(90deg, #D4AF37, #ffffff);
    -webkit-background-clip: text;
    color: transparent;
}


/* Description */

.benefits-desc {
    max-width: 720px;
    margin: 0 auto 70px;
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
}


/* Grid */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}


/* Card */

.benefit-card {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    padding: 40px 28px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: 0.6s cubic-bezier(.4, 0, .2, 1);
    transform-style: preserve-3d;
}


/* Full width card */

.benefit-card.full {
    grid-column: span 3;
}


/* Hover */

.benefit-card:hover {
    transform: translateY(-18px) rotateX(6deg);
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.55), 0 0 70px rgba(212, 175, 55, 0.6);
}


/* Icon */

.benefit-icon {
    font-size: 40px;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}


/* Heading */

.benefit-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 12px;
}


/* Text */

.benefit-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    opacity: 0.96;
}


/* Glow on hover */

.benefit-card:hover h4 {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.6), 0 0 22px rgba(212, 175, 55, 0.6);
}


/* Responsive */

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefit-card.full {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-card.full {
        grid-column: span 1;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #ffffff;
}


/* ===============================
   SECTION
================================ */

.polish-benefits {
    padding: 120px 0;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.benefits-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
    text-align: center;
}


/* ===============================
   BADGE
================================ */

.benefits-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(42, 42, 255, 0.12);
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}


/* ===============================
   TITLE (NO BLACK – GRADIENT ONLY)
================================ */

.benefits-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.3rem);
    font-weight: 800;
    margin-bottom: 18px;
    background: linear-gradient( 90deg, var(--blue), var(--violet), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}

.benefits-title span {
    background: linear-gradient( 90deg, var(--purple), var(--violet), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}


/* ===============================
   DESCRIPTION
================================ */

.benefits-desc {
    max-width: 720px;
    margin: 0 auto 70px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}


/* ===============================
   GRID
================================ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    perspective: 1600px;
}


/* ===============================
   CARD – ELECTRIC BLUE DOMINANT
================================ */

.benefit-card {
    background: linear-gradient( 145deg, var(--blue) 0%, var(--blue) 55%, var(--violet) 80%, var(--purple) 100%);
    border-radius: 28px;
    padding: 28px;
    /* FORCE WHITE TEXT */
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 28px 60px rgba(42, 42, 255, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(.4, 0, .2, 1);
}


/* Hover */

.benefit-card:hover {
    transform: translateY(-18px) rotateX(6deg);
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.45), 0 0 80px rgba(212, 175, 55, 0.55);
}


/* ===============================
   IMAGE – BLUR FIXED (CRISP)
================================ */

.benefit-img {
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 22px;
    position: relative;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.benefit-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    image-rendering: auto;
    transform: scale(1.03);
    transition: transform 0.6s ease;
}


/* Light glass overlay (NO BLUR) */

.benefit-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}


/* Image hover */

.benefit-card:hover .benefit-img img {
    transform: scale(1.12);
}


/* ===============================
   TEXT – FORCE WHITE
================================ */

.benefit-card h4,
.benefit-card p {
    color: #ffffff;
}

.benefit-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.benefit-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    opacity: 0.96;
}


/* ===============================
   FULL CARD
================================ */

.benefit-card.full {
    grid-column: span 3;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefit-card.full {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-card.full {
        grid-column: span 1;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #ffffff;
    --dark-text: #333333;
}


/* ===============================
   SECTION (BLUE BACKGROUND)
================================ */

.ideal-spaces-section {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: linear-gradient(135deg, #2A2AFF 0%, #6A1B9A 50%, #8A2BE2 100%);
    font-family: var(--fontB);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


/* WRAPPER */

.ideal-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
    text-align: center;
}


/* BADGE */

.ideal-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.18);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
    border: 1px solid rgba(212, 175, 55, 0.45);
}


/* TITLE (WHITE + GOLD GRADIENT) */

.ideal-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.3rem);
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--white);
}

.ideal-title span {
    background: linear-gradient(90deg, #ffffff, var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}


/* DESC */

.ideal-desc {
    max-width: 720px;
    margin: 0 auto 70px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}


/* ===============================
   GRID
================================ */

.ideal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    perspective: 1600px;
}


/* ===============================
   CARD (WHITE – PREMIUM)
================================ */

.ideal-card {
    background: #ffffff;
    /* ✅ WHITE CARD */
    border-radius: 30px;
    padding: 26px;
    border: 1px solid rgba(42, 42, 255, 0.15);
    box-shadow: 0 20px 45px rgba(42, 42, 255, 0.18), 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: 0.6s cubic-bezier(.4, 0, .2, 1);
    transform-style: preserve-3d;
}

.ideal-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 40px 90px rgba(42, 42, 255, 0.28), 0 0 40px rgba(212, 175, 55, 0.35);
}


/* IMAGE */

.ideal-img {
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.ideal-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transform: scale(1.05);
    transition: 0.6s ease;
}

.ideal-card:hover .ideal-img img {
    transform: scale(1.12);
}


/* ===============================
   TEXT (SMART COLORS)
================================ */


/* CARD HEADING – BRAND GRADIENT */

.ideal-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    color: transparent;
}


/* CARD TEXT – READABLE */

.ideal-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--dark-text);
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .ideal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ideal-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --blue: #2A2AFF;
    --gold: #D4AF37;
    --white: #ffffff;
}


/* ===============================
   SECTION
================================ */

.why-polish-section {
    padding: 130px 0;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.why-polish-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 18px;
}


/* ===============================
   HEADER
================================ */

.why-polish-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 90px;
}

.why-polish-badge {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 999px;
    background: rgba(42, 42, 255, 0.12);
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(42, 42, 255, 0.3);
    margin-bottom: 20px;
}


/* HEADING – GRADIENT ONLY */

.why-polish-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 18px;
    background: linear-gradient( 90deg, var(--blue), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}

.why-polish-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}


/* ===============================
   GRID
================================ */

.why-polish-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}


/* ===============================
   MAIN CARD (BRANDED BLUE → GOLD)
================================ */

.why-polish-main {
    position: relative;
    background: linear-gradient( 135deg, var(--blue) 0%, var(--gold) 100%);
    border-radius: 36px;
    padding: 50px;
    min-height: 540px;
    overflow: hidden;
    /* 🔥 FORCE WHITE TEXT */
    color: #ffffff;
    box-shadow: 0 35px 80px rgba(42, 42, 255, 0.45), 0 0 50px rgba(212, 175, 55, 0.45);
}


/* FORCE ALL TEXT WHITE INSIDE MAIN */

.why-polish-main *,
.why-point * {
    color: #ffffff !important;
}

.gold-line {
    margin-top: 28px;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    border-radius: 10px;
}


/* ===============================
   IMAGE (CLEAN 4K, NO GLASS)
================================ */

.why-polish-main::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    bottom: 4%;
    top: 38%;
    background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2400&q=95");
    background-size: cover;
    background-position: center;
    border-radius: 26px;
    filter: saturate(1.2) contrast(1.15) brightness(1.05);
    box-shadow: 0 45px 120px rgba(0, 0, 0, 0.55), 0 0 80px rgba(42, 42, 255, 0.45);
    animation: imageFloat3D 14s ease-in-out infinite;
}


/* IMAGE FLOAT */

@keyframes imageFloat3D {
    0% {
        transform: perspective(1200px) translateY(0);
    }
    50% {
        transform: perspective(1200px) translateY(-14px);
    }
    100% {
        transform: perspective(1200px) translateY(0);
    }
}


/* ===============================
   SIDE POINTS (SAME BRAND GRADIENT)
================================ */

.why-polish-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-point {
    padding: 26px 28px;
    border-radius: 22px;
    background: linear-gradient( 135deg, var(--blue), var(--gold));
    transition: 0.45s ease;
}

.why-point:hover {
    transform: translateX(10px);
    box-shadow: 0 25px 60px rgba(42, 42, 255, 0.55), 0 0 40px rgba(212, 175, 55, 0.55);
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .why-polish-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .why-polish-title {
        font-size: 2.2rem;
    }
}

:root {
    --blue: #2A2AFF;
    /* Electric Blue */
    --purple: #6A1B9A;
    /* Purple */
    --violet: #8A2BE2;
    /* Violet */
    --white: #ffffff;
    --dark: #111;
}


/* =====================
   CONTAINER
===================== */

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}


/* =====================
   HERO SECTION
===================== */

.hero-impeccable {
    position: relative;
    height: 520px;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* BRAND GRADIENT */
    background: linear-gradient( 135deg, var(--violet) 0%, var(--violet) 30%, var(--blue) 30%, var(--blue) 60%, var(--purple) 60%, var(--purple) 100%);
    background-size: 200% 200%;
    animation: heroGradient 10s ease-in-out infinite;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    /* 🔥 ALL TEXT WHITE */
}


/* Animated gradient */

@keyframes heroGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* PARTICLES */

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* CONTENT WRAPPER */

.hero-inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 30px;
}


/* =====================
   LEFT CONTENT
===================== */

.hero-content {
    flex: 1;
    max-width: 540px;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s ease;
}

.hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Eyebrow */

.hero-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    margin-bottom: 14px;
    color: #ffffff;
}


/* Heading */

.hero-content h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}


/* Paragraph */

.hero-content p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
}


/* ===============================
   HERO STATS – PREMIUM DARK GLASS
================================ */

.hero-stats-wrapper {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}


/* STAT BOX */

.hero-stats-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 34px;
    border-radius: 4px;
    /* DARK GLASS OVER IMAGE */
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.58));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 14px 40px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
}


/* HOVER – VERY SUBTLE (LIKE IMAGE) */

.hero-stats-box:hover {
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.68));
    transform: translateY(-3px);
}


/* ICON */

.hero-stats-box i {
    font-size: 42px;
    color: #ffffff;
    opacity: 0.95;
}


/* TEXT WRAPPER */

.hero-stats-text {
    display: flex;
    flex-direction: column;
}


/* TITLE */

.hero-stats-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}


/* SUB TEXT */

.hero-stats-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 6px;
    opacity: 0.96;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .hero-stats-wrapper {
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .hero-stats-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-stats-box {
        padding: 24px 26px;
    }
    .hero-stats-text h3 {
        font-size: 23px;
    }
    .hero-stats-text p {
        font-size: 20px;
    }
}


/* ===============================
   HERO SECTION – HEIGHT FIX
================================ */

.hero-impeccable {
    position: relative;
    /* ❌ fixed height hatao */
    height: auto;
    /* ✅ full screen cover + flexible */
    min-height: 100vh;
    /* ✅ niche content ke liye space */
    padding-bottom: 100px;
    /* ✅ cut problem fix */
    overflow: visible;
}


/* ===============================
   HERO INNER SPACING
================================ */

.hero-inner {
    align-items: flex-start;
    padding-top: 80px;
}


/* ===============================
   HERO STATS – PREMIUM DARK GLASS
================================ */

.hero-stats-wrapper {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.hero-stats-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 34px;
    border-radius: 4px;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.58));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 14px 40px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
}

.hero-stats-box:hover {
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.68));
    transform: translateY(-3px);
}

.hero-stats-box i {
    font-size: 42px;
    color: #ffffff;
}

.hero-stats-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.hero-stats-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 6px;
}


/* ===============================
   RESPONSIVE FIX
================================ */

@media (max-width: 992px) {
    .hero-inner {
        padding-top: 60px;
    }
}

@media (max-width: 768px) {
    .hero-impeccable {
        padding-bottom: 130px;
    }
    .hero-stats-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-stats-box {
        padding: 24px 26px;
    }
    .hero-stats-text h3 {
        font-size: 23px;
    }
    .hero-stats-text p {
        font-size: 20px;
    }
}


/* =====================
   RIGHT FORM CARD
===================== */

.hero-card {
    flex: 0 0 auto;
    max-width: 320px;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    padding: 20px 22px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s ease 0.2s;
    color: #ffffff;
}

.hero-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-card h3 {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 700;
    color: #ffffff;
}

.hero-card-sub {
    font-size: clamp(12px, 2vw, 14px);
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}


/* FORM */

.form-group {
    margin-bottom: 14px;
}

.hero-booking-form label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    display: block;
    color: #ffffff;
}

.hero-booking-form select,
.hero-booking-form input[type="text"],
.hero-booking-form input[type="tel"] {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--fontB);
    border: 1px solid rgba(255,255,255,0.35);
    color: #111;
    background: rgba(255,255,255,0.95);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-booking-form input[type="text"]:focus,
.hero-booking-form input[type="tel"]:focus,
.hero-booking-form select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 2px rgba(106, 27, 154, 0.2);
}


/* BUTTON */

.hero-submit {
    width: 100%;
    padding: 11px;
    border-radius: 999px;
    background: var(--white);
    color: var(--purple);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: 0.25s;
}

.hero-submit:hover {
    background: var(--violet);
    color: var(--white);
}

.hero-small-note {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
}


/* =====================
   RESPONSIVE
===================== */


/* TABLET */

@media (max-width: 992px) {
    .hero-impeccable {
        height: auto;
        padding: 40px 0;
    }
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-card {
        max-width: 420px;
        width: 100%;
    }
}


/* MOBILE */

@media (max-width: 576px) {
    .hero-impeccable {
        padding: 60px 0;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-card {
        padding: 18px 18px;
    }
}

:root {
    --blue: #2A2AFF;
    --gold: #D4AF37;
    --white: #ffffff;
}


/* ===============================
   SECTION
================================ */

.premium-video-section {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: #f8f9fc;
    font-family: var(--fontB);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


/* WRAPPER */

.video-wrapper {
    max-width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 24px);
    text-align: center;
    width: 100%;
}


/* BADGE */

.video-badge {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 999px;
    background: rgba(42, 42, 255, 0.12);
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}


/* TITLE */

.video-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 18px;
    background: linear-gradient(90deg, var(--blue), #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    color: transparent;
}

.video-title span {
    background: linear-gradient(90deg, var(--gold), var(--blue));
    -webkit-background-clip: text;
    color: transparent;
}


/* DESC */

.video-desc {
    max-width: 760px;
    margin: 0 auto 70px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}


/* GRID */

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 36px);
    perspective: 1600px;
    width: 100%;
    max-width: 100%;
}


/* CARD */

.video-card {
    background: linear-gradient( 135deg, var(--blue), var(--gold));
    border-radius: 28px;
    padding: 22px;
    text-align: left;
    box-shadow: 0 30px 70px rgba(42, 42, 255, 0.45), 0 0 50px rgba(212, 175, 55, 0.25);
    transition: 0.6s cubic-bezier(.4, 0, .2, 1);
    transform-style: preserve-3d;
}


/* 🔒 FORCE ALL TEXT WHITE */

.video-card h4,
.video-card p,
.video-card span {
    color: #ffffff;
}

.video-card:hover {
    transform: translateY(-18px) rotateX(5deg);
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.5), 0 0 70px rgba(212, 175, 55, 0.55);
}


/* VIDEO FRAME */

.video-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #0a0a12;
    box-shadow: 0 16px 40px rgba(42, 42, 255, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.video-box video,
.video-box iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}


/* TEXT */

.video-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.video-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.95;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --black: #1A1A1A;
}


/* MASTER SECTION */

.testimonial-master {
    padding: 70px 40px;
    max-width: 1400px;
    margin: auto;
}


/* MAIN HEADING */

.testi-main-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 40px;
}


/* VIDEO WRAPPER */

.testi-videos {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.testi-video-box {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(42, 42, 255, 0.2);
}

.testi-video-box video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* HEADING BLOCK BELOW VIDEOS */

.testi-heading-wrap {
    margin-top: 60px;
    text-align: left;
}

.testi-badge {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 1px;
}

.testi-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-top: 10px;
    color: var(--black);
}

.testi-title .highlight {
    color: var(--gold);
}

.testi-subtitle {
    margin-top: 15px;
    font-size: 1.05rem;
    color: #444;
}


/* AUTO SLIDER BOX */

.testimonial-slider {
    margin-top: 50px;
    padding: 45px;
    border-radius: 12px;
    background: var(--blue);
    color: var(--white);
    position: relative;
    box-shadow: 0 20px 40px rgba(42, 42, 255, 0.25);
    overflow: hidden;
}

.testi-slide {
    opacity: 0;
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    transition: opacity 1s ease;
}

.testi-slide.active {
    opacity: 1;
    position: relative;
}


/* TEXT */

.testi-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--white);
}

.testi-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}


/* RESPONSIVE */

@media (max-width:800px) {
    .testi-video-box {
        width: 100%;
    }
    .testimonial-slider {
        padding: 30px;
    }
    .testi-text {
        font-size: 1.15rem;
    }
}


/* ---------------------------------
   ⭐ STATS SECTION (BRAND LEVEL)
----------------------------------*/

/* ================= STATS — 2026 BRANDED ================= */

.stats-simple-section {
    padding: clamp(48px, 6vw, 64px) clamp(20px, 4vw, 40px);
    background: #f8f9fc;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.stats-simple-box {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2A2AFF 0%, #6A1B9A 50%, #8A2BE2 100%);
    border-radius: 24px;
    padding: clamp(36px, 4vw, 48px) clamp(28px, 3vw, 40px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: clamp(20px, 2.5vw, 32px);
    flex-wrap: wrap;
    box-shadow: 0 24px 56px rgba(42, 42, 255, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.stat-simple-item {
    text-align: center;
    flex: 1 1 140px;
    min-width: 0;
}

.stat-simple-item h2 {
    font-family: var(--fontH);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    color: #fff;
}

.stat-simple-item p {
    font-family: var(--fontB);
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

@media (max-width: 992px) {
    .stats-simple-box { gap: 28px; padding: 40px 28px; }
    .stat-simple-item { flex: 1 1 45%; }
}

@media (max-width: 480px) {
    .stats-simple-box { padding: 32px 24px; border-radius: 20px; gap: 24px; }
    .stat-simple-item { flex: 1 1 100%; }
    .stat-simple-item h2 { font-size: clamp(26px, 8vw, 34px); }
}

.faq-section {
    padding: 120px 0;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.faq-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 16px;
}


/* HEADER */

.faq-head {
    text-align: center;
    margin-bottom: 80px;
}

.faq-tag {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 999px;
    background: rgba(42, 42, 255, 0.12);
    color: #2A2AFF;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.faq-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    color: transparent;
}

.faq-head p {
    max-width: 650px;
    margin: auto;
    color: #444;
    font-size: 1.05rem;
}


/* GRID */

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
}


/* FAQ CARD */

.faq-item {
    background: linear-gradient(135deg, #2A2AFF, #1f1fd8);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(42, 42, 255, 0.45), 0 0 40px rgba(212, 175, 55, 0.25);
    transition: 0.4s ease;
}


/* QUESTION */

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 26px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
}


/* ICON */

.faq-question .icon {
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}


/* ANSWER */

.faq-answer {
    padding: 0 26px;
    max-height: 0;
    overflow: hidden;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #ffffff;
    transition: max-height 0.5s ease, padding 0.5s ease;
}


/* ACTIVE STATE */

.faq-item.active .faq-answer {
    max-height: 260px;
    padding: 0 26px 22px;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}


/* HOVER */

.faq-item:hover {
    transform: translateY(-6px);
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --radius-xl: 38px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --glass: rgba(255, 255, 255, 0.10);
    --glass-2: rgba(255, 255, 255, 0.14);
    --stroke: rgba(255, 255, 255, 0.22);
    --shadow-1: 0 18px 55px rgba(0, 0, 0, 0.22);
    --shadow-2: 0 32px 90px rgba(0, 0, 0, 0.30);
    --shadow-in: inset 0 1px 0 rgba(255, 255, 255, 0.25);
    --font-h: "Poppins", sans-serif;
    --font-b: "Open Sans", sans-serif;
    --font-ui: "Outfit", sans-serif;
}


/* Footer: same as index (home) — uses new.css .imp-footer styles */

/* ================= KITCHEN CTA – FINAL BRAND ================= */

.kitchen-cta {
    padding: 120px 20px;
    background: #ffffff;
}


/* 🔒 DIV BACKGROUND = PURE ELECTRIC BLUE */

.kitchen-cta-box {
    max-width: 1200px;
    margin: auto;
    padding: 80px 70px;
    border-radius: 38px;
    background: #2A2AFF;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 45px 120px rgba(42, 42, 255, 0.55);
}


/* Subtle premium light */

.kitchen-cta-box::before {
    content: "";
    position: absolute;
    inset: -60%;
    background: radial-gradient( circle, rgba(255, 255, 255, 0.28), transparent 70%);
    animation: ctaGlow 10s ease-in-out infinite alternate;
}


/* ================= HEADING ================= */


/* 🔒 DIV ke andar HEADING = WHITE */

.kitchen-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 4.8vw, 56px);
    font-weight: 800;
    margin-bottom: 22px;
    color: #ffffff;
}


/* ================= TEXT ================= */


/* 🔒 TEXT = WHITE */

.kitchen-cta-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.75;
    max-width: 860px;
    margin: 0 auto 48px;
    color: #ffffff;
}


/* ================= BUTTONS ================= */

.kitchen-cta-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* Primary Button – White */

.cta-btn.primary {
    background: #ffffff;
    color: #2A2AFF;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.cta-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.45);
}


/* Secondary Button – Glass */

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    backdrop-filter: blur(12px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-3px);
}


/* ================= ANIMATION ================= */

@keyframes ctaGlow {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.25);
    }
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .kitchen-cta-box {
        padding: 60px 26px;
    }
    .kitchen-cta-desc {
        font-size: 16px;
    }
}


/* =========================
   BRAND TOKENS
========================= */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --black: #1A1A1A;
    --muted: #6b7280;
    --border: #e5e7eb;
    --white: #ffffff;
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --white: #ffffff;
    --text: #f5f5f5;
    --font: 'Poppins', sans-serif;
}


/* RESET */

*/
/* {margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:var(--font);
  
  color:#fff;
} */


/* Header / navbar / top bar / floating: use new.css. Mobile menu below. */


/* ================= MOBILE ================= */

@media (max-width: 900px) {
    html.nav-open, body.nav-open {
        overflow: hidden !important;
        height: 100%;
        position: fixed;
        left: 0;
        right: 0;
    }
    body.nav-open .header-sticky-wrapper,
    body.nav-open .premium-navbar,
    body.nav-open .nav-container { overflow: visible !important; }
    .premium-navbar { overflow: visible; }
    .nav-container { overflow: visible; }
    .hamburger {
        display: flex;
        position: relative;
        z-index: 100002;
    }
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100%;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh;
        min-height: 100dvh;
        margin: 0 !important;
        padding: clamp(80px, 18vw, 100px) clamp(20px, 5vw, 24px) 40px;
        background: linear-gradient(180deg, var(--blue), var(--purple), var(--violet));
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100001;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }
    .nav-list > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: clamp(16px, 4vw, 17px);
    }
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .dropdown.active .dropdown-toggle .caret {
        transform: rotate(180deg);
    }
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: linear-gradient(180deg, #6A1B9A 0%, #8A2BE2 45%, #D4AF37 100%);
        border-radius: 14px;
        margin: 8px 0 12px 16px;
        padding: 8px 0;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .dropdown.active .dropdown-content {
        display: block;
    }
    .dropdown-content a {
        color: #fff;
        padding: 12px 20px;
        font-weight: 600;
        font-size: clamp(14px, 3.5vw, 15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .dropdown-content a:last-child {
        border-bottom: none;
    }
    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        padding-left: 24px;
    }
    .social-icons {
        display: none;
    }
}


/* ================= VIDEO ROW ================= */

.nano-video-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 3vw, 32px);
    width: 100%;
    max-width: 1200px;
    margin: clamp(40px, 8vw, 80px) auto 0;
    padding: 0 16px;
}


/* ================= VIDEO CARD ================= */

.nano-video-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: clamp(16px, 2.5vw, 22px);
    overflow: hidden;
    background: #0a0a12;
    box-shadow: 0 20px 50px rgba(42, 42, 255, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}


/* VIDEO FILL */

.nano-video-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ✅ KEY LINE */
}


/* HOVER (DESKTOP) */

.nano-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(42, 42, 255, 0.22);
}


/* ================= RESPONSIVE ================= */


/* Tablet */

@media (max-width: 992px) {
    .nano-video-row {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile */

@media (max-width: 600px) {
    .nano-video-row {
        grid-template-columns: 1fr;
    }
    .nano-video-card {
        min-height: 200px;
    }
}


/* Large Screens / 4K */

@media (min-width: 1600px) {
    .nano-video-row {
        max-width: 1400px;
    }
}