/* ------------------------------
   🎨 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;
    }
}


/* ================================
   COMMERCIAL CLEANING SECTION
================================ */

.commercial-section {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: #ffffff;
    font-family: var(--fontB);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


/* WRAPPER */

.commercial-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}


/* ---------------- IMAGE ---------------- */

.commercial-image {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(42, 42, 255, 0.25), 0 0 40px rgba(138, 43, 226, 0.20);
}

.commercial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
}


/* Subtle 3D overlay */

.commercial-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(42, 42, 255, 0.25), rgba(138, 43, 226, 0.15), rgba(212, 175, 55, 0.15));
}


/* ---------------- CONTENT ---------------- */

.commercial-content {
    position: relative;
}


/* TITLE */

.commercial-title {
    font-family: var(--fontH);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #2A2AFF;
    /* Electric Blue */
}

.commercial-title span {
    background: linear-gradient( 90deg, #6A1B9A, #8A2BE2, #D4AF37);
    -webkit-background-clip: text;
    color: transparent;
}


/* TEXT */

.commercial-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #111;
    /* Black 10% */
    margin-bottom: 18px;
    max-width: 560px;
}


/* BUTTON */

.commercial-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 34px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    color: #ffffff;
    /* BRAND GRADIENT */
    background: linear-gradient( 135deg, #2A2AFF 0%, #6A1B9A 45%, #8A2BE2 70%, #D4AF37 100%);
    box-shadow: 0 16px 36px rgba(42, 42, 255, 0.45), 0 0 24px rgba(212, 175, 55, 0.35);
    transition: 0.35s ease;
}

.commercial-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(42, 42, 255, 0.6), 0 0 35px rgba(212, 175, 55, 0.55);
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .commercial-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .commercial-content {
        text-align: center;
    }
    .commercial-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .commercial-section {
        padding: 70px 0;
    }
    .commercial-title {
        font-size: 2rem;
    }
}


/* ================================
   WHY CHOOSE US — BRAND LEVEL
================================ */

.why-choose-section {
    padding: 110px 0;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}


/* ---------------- HEADING ---------------- */

.why-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 80px;
}

.why-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 18px;
    color: #2A2AFF;
}

.why-title span {
    background: linear-gradient( 90deg, #6A1B9A, #8A2BE2, #D4AF37);
    -webkit-background-clip: text;
    color: transparent;
}

.why-sub {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #111;
}


/* ---------------- GRID ---------------- */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    perspective: 1400px;
}


/* ---------------- CARD ---------------- */

.why-card {
    background: linear-gradient( 145deg, #2A2AFF 0%, #2A2AFF 70%, rgba(212, 175, 55, 0.22) 100%);
    border-radius: 28px;
    padding: 44px 34px;
    text-align: center;
    /* 🔒 FORCE ALL TEXT WHITE */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 28px 65px rgba(42, 42, 255, 0.45), 0 0 35px rgba(212, 175, 55, 0.35);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(.4, 0, .2, 1);
}


/* Hover 3D */

.why-card:hover {
    transform: translateY(-16px) rotateX(6deg);
    box-shadow: 0 45px 95px rgba(42, 42, 255, 0.6), 0 0 55px rgba(212, 175, 55, 0.55);
}


/* ---------------- EMOJI ICON (CENTER) ---------------- */

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient( 135deg, #ffffff, #D4AF37);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    /* emoji size */
    line-height: 1;
    /* 🔥 fix vertical issue */
    text-align: center;
    color: #2A2AFF;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.6);
}


/* ---------------- TEXT ---------------- */

.why-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.why-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}


/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 768px) {
    .why-choose-section {
        padding: 80px 0;
    }
    .why-head {
        margin-bottom: 60px;
    }
    .why-card {
        padding: 38px 28px;
    }
}


/* ===============================
   OFFICE INVOLVEMENT – BRAND
================================ */

.office-involvement {
    padding: 110px 0;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}


/* HEADING */

.oi-head {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.oi-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #2A2AFF;
}

.oi-head h2 span {
    background: linear-gradient(90deg, #6A1B9A, #8A2BE2, #D4AF37);
    -webkit-background-clip: text;
    color: transparent;
}

.oi-head p {
    margin-top: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #111;
    opacity: 0.85;
}


/* GRID */

.oi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}


/* CARD */

.oi-card {
    padding: 36px;
    border-radius: 32px;
    background: linear-gradient( 145deg, #2A2AFF 0%, #2A2AFF 45%, #6A1B9A 65%, #8A2BE2 85%, #D4AF37 100%);
    box-shadow: 0 30px 70px rgba(42, 42, 255, 0.45), 0 0 50px rgba(212, 175, 55, 0.35);
    transition: 0.6s cubic-bezier(.4, 0, .2, 1);
    transform-style: preserve-3d;
}


/* 🔒 WHITE TEXT LOCK */

.oi-card,
.oi-card * {
    color: #ffffff !important;
}


/* IMAGE WRAPPER */

.oi-image {
    width: 100%;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25), 0 12px 28px rgba(0, 0, 0, 0.35);
}


/* IMAGE PERFECT FIT */

.oi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ✅ NO STRETCH */
    object-position: center;
    display: block;
}


/* HOVER */

.oi-card:hover {
    transform: translateY(-18px) rotateX(6deg);
}


/* TITLE */

.oi-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 22px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}


/* LIST */

.oi-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oi-card li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    font-size: 1.02rem;
    line-height: 1.7;
}


/* GOLD CHECK */

.oi-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #D4AF37;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.6);
}


/* RESPONSIVE */

@media (max-width: 1024px) {
    .oi-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .oi-grid {
        grid-template-columns: 1fr;
    }
    .oi-card {
        padding: 30px;
    }
    .oi-image {
        height: 160px;
    }
}


/* ===============================
   TESTIMONIALS SLIDER — BRAND
================================ */

.testimonials-section {
    padding: 120px 0;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


/* Heading */

.testi-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 70px;
}

.testi-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #D4AF37;
}

.testi-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #2A2AFF;
}

.testi-head h2 span {
    background: linear-gradient(90deg, #6A1B9A, #8A2BE2, #D4AF37);
    -webkit-background-clip: text;
    color: transparent;
}

.testi-head p {
    margin-top: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #111;
    opacity: 0.85;
}


/* Slider */

.testi-slider {
    overflow: hidden;
}

.testi-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}


/* Card */

.testi-card {
    min-width: 100%;
    padding: 46px 40px;
    border-radius: 34px;
    background: linear-gradient( 145deg, #2A2AFF 0%, #2A2AFF 45%, #6A1B9A 65%, #8A2BE2 85%, #D4AF37 100%);
    box-shadow: 0 30px 70px rgba(42, 42, 255, 0.45), 0 0 50px rgba(212, 175, 55, 0.35);
    position: relative;
}


/* 🔒 WHITE TEXT LOCK */

.testi-card,
.testi-card * {
    color: #ffffff !important;
}


/* Quote */

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 64px;
    opacity: 0.25;
}


/* Text */

.testi-text {
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 30px;
}


/* Footer */

.testi-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 18px;
}

.stars {
    color: #D4AF37;
    font-size: 18px;
    margin-bottom: 6px;
}

.testi-footer h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}


/* Mobile */

@media (max-width: 768px) {
    .testi-card {
        padding: 34px 28px;
    }
}


/* ===============================
   FAQ — BRAND LEVEL
================================ */

.faq-section {
    padding: 120px 0;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}


/* HEADING */

.faq-head {
    text-align: center;
    margin-bottom: 70px;
}

.faq-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #D4AF37;
}

.faq-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #2A2AFF;
}

.faq-head h2 span {
    background: linear-gradient(90deg, #6A1B9A, #8A2BE2, #D4AF37);
    -webkit-background-clip: text;
    color: transparent;
}

.faq-head p {
    margin-top: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #111;
    opacity: 0.85;
}


/* GRID */

.faq-grid {
    display: grid;
    gap: 24px;
}


/* ITEM */

.faq-item {
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient( 145deg, #2A2AFF 0%, #2A2AFF 45%, #6A1B9A 65%, #8A2BE2 85%, #D4AF37 100%);
    box-shadow: 0 20px 50px rgba(42, 42, 255, 0.45), 0 0 40px rgba(212, 175, 55, 0.35);
}


/* 🔒 WHITE TEXT LOCK */

.faq-item,
.faq-item * {
    color: #ffffff !important;
}


/* QUESTION */

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 26px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}


/* ICON */

.faq-question .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}


/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    font-size: 0.98rem;
    line-height: 1.7;
    opacity: 0.95;
    transition: all 0.4s ease;
}


/* ACTIVE */

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 26px;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .faq-question {
        font-size: 0.95rem;
    }
}


/* ============================================
   ULTRA BRIGHT FOOTER (NEON GLASSMORPHIC)
============================================ */

: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 */

: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;
    min-height: 480px;
    height: auto;
    padding: clamp(48px, 6vw, 72px) clamp(20px, 4vw, 40px);
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 50%, var(--violet) 100%);
    font-family: var(--fontH);
    color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
    .hero-impeccable { animation: none; }
}


/* 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-family: var(--fontH);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}


/* Paragraph */

.hero-content p {
    font-family: var(--fontB);
    font-size: clamp(14px, 1.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: var(--fontH);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}


/* SUB TEXT */

.hero-stats-text p {
    font-family: var(--fontB);
    font-size: clamp(14px, 1.2vw, 18px);
    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 extra spacing – main hero rules above */
.hero-impeccable {
    padding-bottom: clamp(60px, 8vw, 100px);
    overflow: hidden;
}


/* ===============================
   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: var(--fontH);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.hero-stats-text p {
    font-family: var(--fontB);
    font-size: clamp(14px, 1.2vw, 18px);
    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: 1;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(16px);
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.25);
    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-family: var(--fontH);
    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;
    }
}


/* * ---------------------------------
   ⭐ STATS SECTION (BRAND LEVEL)
----------------------------------*/

*/ .stats-simple-section {
    padding: 70px 0;
    background: #ffffff;
}

.stats-simple-box {
    background: #2A2AFF;
    /* Electric Blue */
    border-radius: 60px;
    padding: 55px 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    box-shadow: 0 25px 60px rgba(42, 42, 255, 0.35);
}

.stat-simple-item {
    text-align: center;
    width: 25%;
    min-width: 160px;
}

.stat-simple-item h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #ffffff;
}

.stat-simple-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.95;
}


/* Responsive */

@media (max-width: 992px) {
    .stats-simple-box {
        flex-wrap: wrap;
        padding: 45px 20px;
    }
    .stat-simple-item {
        width: 45%;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .stats-simple-box {
        padding: 35px 15px;
        border-radius: 35px;
    }
    .stat-simple-item {
        width: 100%;
    }
    .stat-simple-item h2 {
        font-size: 2.4rem;
    }
}

: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 overrides 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;
    }
}