:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --fontH: 'Poppins', sans-serif;
    --fontB: 'Open Sans', sans-serif;
}


/* =====================================
   🔥 GLOBAL RESPONSIVE SAFETY RESET
   (MOBILE OVERFLOW KILLER)
===================================== */

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
  margin: 0;
  padding: 0;
}

/* Prevent 100vw overflow issue */
*, *::before, *::after {
  box-sizing: border-box;
  max-width: 100%;
}

/* Kill horizontal scroll everywhere */
body {
  overscroll-behavior-x: none;
}

/* -------------------------------------
   ❌ Dangerous patterns FIX
------------------------------------- */

/* Any gradient / hero / bg element */
[class*="hero"],
[class*="gradient"],
[class*="bg"],
[class*="section"] {
  overflow-x: clip; /* better than hidden */
}

/* Pseudo elements safety */
*::before,
*::after {
  max-width: 100%;
  overflow: hidden;
}

/* -------------------------------------
   📱 MOBILE — overflow fix only (no layout override)
------------------------------------- */
@media (max-width: 991px) {
  section,
  header,
  footer,
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
}

/* -------------------------------------
   🧠 iOS SAFE AREA SUPPORT
------------------------------------- */
@supports (padding: env(safe-area-inset-top)) {
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Open+Sans:wght@400;500&display=swap');
:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --black: #111;
    --gold: #D4AF37;
}


/* SECTION */

.service-detail {
    padding: 110px 0;
    background: #fafbff;
}


/* WRAPPER */

.service-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


/* GRID */

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 90px;
}


/* IMAGE */

.service-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}


/* CONTENT */

.service-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    color: transparent;
}

.service-content h2 span {
    display: block;
}

.service-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 18px;
}


/* ADVANTAGES */


/* ADVANTAGES WRAPPER */

.service-advantages-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}


/* GRADIENT HEADING */

.service-advantages h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 26px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    color: transparent;
}


/* GLASS IMAGE CARD */

.advantages-glass {
    position: relative;
    padding: clamp(10px, 1.5vw, 14px);
    border-radius: clamp(18px, 2.5vw, 24px);
    background: linear-gradient(135deg, rgba(42, 42, 255, 0.1), rgba(138, 43, 226, 0.08));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(42, 42, 255, 0.15);
}


/* ================= VIDEO GLASS — 2026 premium, responsive ================= */

.video-glass {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: clamp(18px, 2.5vw, 24px);
    overflow: hidden;
    background: #0a0a12;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255,255,255,0.06) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-glass video,
.video-glass iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.video-glass:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(42, 42, 255, 0.18);
}

@media (max-width: 768px) {
    .video-glass {
        min-height: 200px;
        border-radius: 16px;
    }
}


/* LIST */

.service-advantages ul {
    list-style: none;
    padding: 0;
}

.service-advantages li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    color: var(--black);
    padding-left: 38px;
    margin-bottom: 16px;
    position: relative;
}

.service-advantages li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--blue);
    font-weight: 700;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .service-advantages-wrapper {
        grid-template-columns: 1fr;
    }
    .advantages-glass {
        order: -1;
    }
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --gold: #D4AF37;
    --black: #1a1a1a;
}


/* SECTION */

.kitchen-brand-section {
    padding: 110px 0;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}


/* GRID */

.kitchen-brand-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}


/* HEADING */

.kitchen-heading {
    font-family: var(--fontH);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--black);
}

.kitchen-heading span {
    background: linear-gradient(90deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kitchen-subtitle {
    font-family: var(--fontB);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: #555;
    margin-bottom: 24px;
}


/* POINTS */

.kitchen-points {
    list-style: none;
    padding: 0;
}

.kitchen-points li {
    position: relative;
    padding-left: 38px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
}

.kitchen-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* VIDEO CARD */

.kitchen-video-card {
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient( 135deg, rgba(42, 42, 255, 0.12), rgba(106, 27, 154, 0.12));
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}

.kitchen-video-card video {
    width: 100%;
    border-radius: 16px;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .kitchen-brand-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .kitchen-video-card {
        order: -1;
    }
}

:root {
    --blue: #2A2AFF;
    --gold: #D4AF37;
    --dark: #111;
    --white: #ffffff;
}


/* SECTION */

.packages-brand {
    padding: 110px 0;
    background: #f8f9fc;
    font-family: 'Open Sans', sans-serif;
}


/* WRAPPER */

.packages-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


/* TITLE */

.packages-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 70px;
    background: linear-gradient(90deg, var(--blue), #6a1b9a);
    -webkit-background-clip: text;
    color: transparent;
}


/* LAYOUT */

.packages-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 60px;
    align-items: start;
}


/* LEFT CARD */

.package-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.package-image {
    position: relative;
}

.package-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.package-name {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}


/* INFO */

.package-info {
    padding: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-price {
    font-size: 1.15rem;
    font-weight: 700;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/* ACTIONS */

.package-actions {
    display: flex;
    gap: 14px;
}

.btn-book,
.btn-call {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-book {
    background: #000;
    color: #fff;
}

.btn-book:hover {
    transform: translateY(-2px);
}

.btn-call {
    background: #000000;
    color: #fff;
}

.btn-call:hover {
    transform: translateY(-2px);
}


/* RIGHT DESCRIPTION */

.package-desc {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}


/* HEADER */

.desc-header {
    background: var(--blue);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    padding: 18px 22px;
    position: relative;
}

.desc-header::after {
    content: "";
    position: absolute;
    right: -40px;
    top: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 40px solid var(--gold);
}


/* LIST */

.desc-list {
    padding: 28px;
    list-style: none;
}

.desc-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

.desc-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: bold;
}


/* CTA */

.desc-cta {
    display: inline-block;
    margin: 0 28px 30px;
    padding: 12px 26px;
    background: var(--gold);
    color: #2105f4;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.desc-cta:hover {
    transform: translateY(-2px);
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .packages-layout {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   ✅ KITCHEN SERVICES — PREMIUM BRANDED (FULL CSS)
   Brand: Electric Blue + Purple/Violet + Gold
   Fully Responsive (Mobile/Tablet/Desktop/4K)
========================================================= */

:root{
  --blue:#2A2AFF;
  --purple:#6A1B9A;
  --violet:#8A2BE2;
  --gold:#D4AF37;

  --white:#ffffff;
  --dark:#141414;
  --text:#2b2b2b;

  --shadow-1: 0 18px 55px rgba(0,0,0,.10);
  --shadow-2: 0 28px 90px rgba(0,0,0,.16);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;

  --fontH: "Poppins", sans-serif;
  --fontB: "Open Sans", sans-serif;
}

/* ------------------------------
   SECTION BASE
-------------------------------- */
.kitchen-services-brand{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 8vw, 130px) 0;
  background:
    radial-gradient(900px 420px at 10% 15%, rgba(42,42,255,.10), transparent 60%),
    radial-gradient(760px 380px at 90% 20%, rgba(138,43,226,.10), transparent 60%),
    radial-gradient(820px 420px at 60% 85%, rgba(212,175,55,.12), transparent 60%),
    linear-gradient(135deg, #f7f9ff 0%, #fbfcff 50%, #fff7e3 100%);
  font-family: var(--fontB);
}

/* Animated subtle aura (very light) */
.kitchen-services-brand::before{
  content:"";
  position:absolute;
  inset:-160px;
  background:
    conic-gradient(from 180deg at 50% 50%,
      rgba(42,42,255,.16),
      rgba(106,27,154,.14),
      rgba(138,43,226,.16),
      rgba(212,175,55,.12),
      rgba(42,42,255,.16)
    );
  filter: blur(80px);
  opacity: .55;
  animation: ksAura 10s linear infinite;
  z-index: 0;
  pointer-events:none;
}
@keyframes ksAura{
  0%{ transform: translate3d(-1%, -1%, 0) rotate(0deg); }
  50%{ transform: translate3d(1%, 1%, 0) rotate(180deg); }
  100%{ transform: translate3d(-1%, -1%, 0) rotate(360deg); }
}

/* Safe wrapper */
.ks-wrapper{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(14px, 3vw, 22px);
  position: relative;
  z-index: 1;
}

/* ------------------------------
   HEADER
-------------------------------- */
.ks-header{
  text-align:center;
  margin-bottom: clamp(38px, 5vw, 80px);
}

.ks-header h2{
  font-family: var(--fontH);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -0.6px;
  margin: 0 0 12px;
  color: var(--dark);
}

.ks-header h2 span{
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--violet));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.ks-header p{
  font-size: clamp(.98rem, 1.2vw, 1.08rem);
  color: #5f5f5f;
  font-weight: 600;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ------------------------------
   GRID
-------------------------------- */
.ks-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 6vw, 80px);
  align-items:center;
}

/* ------------------------------
   LEFT LIST (BRANDED)
-------------------------------- */
.ks-list{
  position: relative;
}

/* Glass card feel */
.ks-list{
  padding: clamp(18px, 2.6vw, 28px);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.74));
  border: 1px solid rgba(42,42,255,.10);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(10px);
}

.ks-list ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 14px;
}

.ks-list li{
  position:relative;
  padding: 12px 14px 12px 46px;
  border-radius: 14px;
  font-size: clamp(.95rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  color: #222;
  font-weight: 700;
  letter-spacing: .15px;
  background: linear-gradient(90deg, rgba(42,42,255,.05), rgba(212,175,55,.05));
  border: 1px solid rgba(0,0,0,.06);
  transition: .35s ease;
}

.ks-list li:hover{
  transform: translateY(-3px);
  border-color: rgba(42,42,255,.18);
  box-shadow: 0 18px 40px rgba(42,42,255,.12);
}

/* Check bubble */
.ks-list li::before{
  content:"✔";
  position:absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: .75rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(42,42,255,.25);
}

/* ------------------------------
   RIGHT VIDEO CARD (PREMIUM)
-------------------------------- */
.ks-video-center{
  display:flex;
  justify-content:center;
  align-items:center;
}

.video-card{
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(42,42,255,.12), rgba(106,27,154,.1));
  padding: 12px;
  box-shadow: 0 20px 50px rgba(42,42,255,.2);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease;
  aspect-ratio: 16 / 9;
}

.video-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(42,42,255,.25);
}

.video-card video,
.video-card iframe{
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  background: #000;
}

.video-card::after{
  content: "Premium";
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--fontH);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .05em;
  color: #111;
  background: linear-gradient(135deg, var(--gold), #f5e6a8);
  box-shadow: 0 8px 20px rgba(212,175,55,.25);
  opacity: .95;
  pointer-events: none;
}

.video-card { position: relative; }

/* ------------------------------
   CRITICAL VISIBILITY GUARD
   (Fix for "content not showing")
-------------------------------- */
.kitchen-services-brand,
.kitchen-services-brand *{
  visibility: visible;
  opacity: 1;
}

/* ------------------------------
   RESPONSIVE
-------------------------------- */
@media (max-width: 992px){
  .ks-grid{
    grid-template-columns: 1fr;
  }
  .ks-video-center{
    order: 2;
  }
  .ks-list{
    order: 1;
  }
}

/* Tablet spacing */
@media (max-width: 768px){
  .ks-header{
    margin-bottom: 36px;
  }
  .ks-list li{
    padding-left: 44px;
  }
  .video-card {
    max-width: 100%;
    border-radius: 18px;
  }
}

/* Mobile polish */
@media (max-width: 480px){
  .ks-header h2{
    font-size: 1.95rem;
  }
  .ks-header p{
    font-size: .98rem;
  }
  .ks-list{
    padding: 16px;
    border-radius: 20px;
  }
  .ks-list li{
    font-size: .95rem;
    padding: 11px 12px 11px 44px;
  }
  .video-card {
    padding: 10px;
    border-radius: 16px;
  }
  .video-card::after {
    font-size: 10px;
    padding: 5px 10px;
  }
}



:root {
    --blue: #2A2AFF;
    --blue-light: #4d5bff;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --dark: #1a1a1a;
    --white: #ffffff;
}


/* ===============================
   SECTION – ELECTRIC BLUE + GOLD
================================ */

.why-kitchen-brand {
    padding: 140px 0;
    background: linear-gradient( 135deg, #2A2AFF 0%, #4d5bff 35%, #6A1B9A 65%, #D4AF37 100%);
    font-family: 'Open Sans', sans-serif;
}


/* ===============================
   CONTAINER
================================ */

.why-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


/* ===============================
   HEADER (WHITE CARD FEEL)
================================ */

.why-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 90px;
    background: #ffffff;
    padding: 42px 30px;
    border-radius: 30px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.12);
}


/* MAIN HEADING – GRADIENT RULE FOLLOWED */

.why-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.3rem);
    font-weight: 800;
    margin-bottom: 18px;
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    color: transparent;
}

.why-header p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.75;
}


/* ===============================
   GRID
================================ */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}


/* ===============================
   CARD – PURE WHITE PREMIUM
================================ */

.why-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    transition: 0.45s ease;
}


/* SOFT BRAND GLOW ON HOVER */

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(42, 42, 255, 0.12), rgba(138, 43, 226, 0.12));
    opacity: 0;
    transition: 0.45s ease;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 45px 120px rgba(42, 42, 255, 0.25);
}


/* ===============================
   IMAGE
================================ */

.why-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}


/* ===============================
   CARD HEADING – GRADIENT
================================ */

.why-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    color: transparent;
}


/* CARD TEXT */

.why-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-header {
        padding: 34px 22px;
    }
}

:root {
    --blue: #2A2AFF;
    --blue-light: #4d5bff;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --white: #ffffff;
    --dark: #1a1a1a;
}


/* SECTION */

.faq-brand {
    padding: 130px 0;
    background: linear-gradient( 180deg, #f7f9ff 0%, #eef1ff 100%);
    font-family: 'Open Sans', sans-serif;
}


/* CONTAINER */

.faq-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


/* HEADER */

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.faq-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.2rem);
    font-weight: 800;
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 14px;
}

.faq-header p {
    font-size: 1.05rem;
    color: #555;
}


/* GRID */

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}


/* ITEM */

.faq-item {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(42, 42, 255, 0.12);
    overflow: hidden;
    transition: 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-6px);
}


/* QUESTION */

.faq-question {
    width: 100%;
    padding: 22px 26px;
    background: linear-gradient( 135deg, var(--blue), var(--blue-light));
    border: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question .icon {
    font-size: 1.2rem;
}


/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    background: #ffffff;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 22px 26px;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= 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;
    }
}

: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 */

/* ---------------------------------
   ⭐ STATS SECTION (BRAND LEVEL)
----------------------------------*/

/* ================= STATS — 2026 upgraded (compact, not poster) ================= */

.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, var(--blue) 0%, var(--purple) 50%, var(--violet) 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;
    width: auto;
    min-width: 0;
    flex: 1 1 140px;
}

.stat-simple-item h2 {
    font-family: var(--fontH);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    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); }
}


/* ================= TESTIMONIAL MASTER ================= */

.testimonial-master {
    padding: 120px 20px;
    background: radial-gradient( circle at top, rgba(42, 42, 255, 0.12), #ffffff 60%);
    text-align: center;
    position: relative;
    overflow: hidden;
}


/* Soft brand glow */

.testimonial-master::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient( circle, rgba(42, 42, 255, 0.18), transparent 65%);
    filter: blur(120px);
    z-index: 0;
}


/* ================= TOP TITLE ================= */

.testi-main-title {
    position: relative;
    z-index: 2;
    font-family: "Poppins", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    margin-bottom: 70px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ================= VIDEOS ================= */

.testi-videos {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.testi-video-box {
    width: 100%;
    max-width: 360px;
    border-radius: 20px;
    padding: 12px;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 20px 50px rgba(42, 42, 255, 0.25);
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.testi-video-box video {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
    display: block;
    background: #000;
}


/* ================= HEADING BLOCK ================= */

.testi-heading-wrap {
    max-width: 820px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 2;
}

.testi-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    border-radius: 50px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    box-shadow: 0 10px 25px rgba(42, 42, 255, 0.4);
}

.testi-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.testi-title .highlight {
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testi-subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 16.5px;
    line-height: 1.7;
    color: #555;
}


/* ================= SLIDER ================= */

.testimonial-slider {
    position: relative;
    max-width: 820px;
    margin: auto;
    min-height: 220px;
    z-index: 2;
}


/* SLIDE CARD */

.testi-slide {
    position: absolute;
    inset: 0;
    padding: 46px 44px;
    border-radius: 30px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    color: #ffffff;
    box-shadow: 0 40px 90px rgba(42, 42, 255, 0.45);
    opacity: 0;
    transform: translateY(30px);
}


/* TEXT */

.testi-text {
    font-family: "Open Sans", sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 26px;
    color: #ffffff;
}


/* NAME */

.testi-name {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .testi-videos {
        gap: 28px;
    }
    .testi-video-box {
        width: 100%;
    }
    .testimonial-slider {
        min-height: 260px;
    }
    .testi-slide {
        padding: 36px 28px;
    }
}

@media (max-width: 480px) {
    .testi-main-title {
        margin-bottom: 50px;
    }
    .testi-slide {
        padding: 30px 22px;
    }
    .testi-text {
        font-size: 15px;
    }
}

: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: 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-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 {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #d6d6d6;
    color: #111;
    /* readable */
    background: #ffffff;
}


/* 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;
    --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;
} */


/* ================= TOP INFO BAR ================= */

.top-info-bar {
    background: #fff;
    color: rgb(63, 6, 251)2f6;
    position: relative;
    z-index: 1000;
}

.top-info-inner {
    max-width: 1400px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-logo img {
    height: 100px;
}

.top-info-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.info-item {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: rgb(41, 4, 252)4fa;
    font-size: 14px;
}

.info-item img {
    width: 28px;
}

@media(max-width:768px) {
    .top-info-inner {
        flex-direction: column;
        text-align: center;
    }
    .top-info-right {
        flex-direction: column;
        gap: 12px;
    }
}


/* ================= FLOATING BUTTONS ================= */

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.fab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 10px 30px rgba(42, 42, 255, .45);
}

.fab-whatsapp {
    background: linear-gradient(135deg, var(--purple), var(--violet));
}

.fab .label {
    display: none;
}

@media(max-width:992px) {
    .fab .label {
        display: inline;
    }
}


/* ================= NAVBAR ================= */

.premium-navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--violet));
}

.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* HAMBURGER */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 32px;
    height: 3px;
    background: #fff;
    transition: .3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* MENU */

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.nav-link:hover::after {
    width: 100%;
}


/* DROPDOWN */

.dropdown {
    position: relative;
}

.caret {
    margin-left: 6px;
    font-weight: 700;
}

.dropdown-content {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 260px;
    background: linear-gradient( 135deg, #6A1B9A 0%, #8A2BE2 45%, #D4AF37 100%);
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .35s;
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    padding: 14px 18px;
    color: #fff;
    text-decoration: none;
}

.dropdown-content a:hover {
    background: #f800e7;
}

@media(min-width:901px) {
    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


/* SOCIAL ICONS */

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons img {
    width: 20px;
    filter: invert(1);
}


/* ==============================
   🌐 SOCIAL ICONS
============================== */

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, .1));
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
    transition: .35s;
}

.social-icons a:hover {
    transform: translateY(-8px) scale(1.1);
    background: linear-gradient(135deg, var(--blue), var(--violet));
}


/* ================= 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;
    }
}