
/* ============ TOKENS ============ */
:root{
  --navy: #0a1f3d;
  --navy-2: #0e2a52;
  --navy-deep: #071527;
  --gold: #c9a227;
  --gold-light: #e8d8a0;
  --gold-soft: #f3e6c1;
  --white: #ffffff;
  --off-white: #faf8f3;
  --text: #1c2230;
  --text-soft: #4d5566;

  --glass-bg: rgba(10, 31, 61, 0.07);
  --glass-bg-strong: rgba(10, 31, 61, 0.38);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-blur: blur(30px) saturate(200%) brightness(1.08);

  --radius: 22px;
  --font-display: "Playfair Display", serif;
  --font-body: "Jost", sans-serif;
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--white); 
  /* Dono values ko 0.82/0.90 se kam karke 0.50/0.55 kar diya taake image light ho kar saaf dikhe */
  background: linear-gradient(rgba(10, 15, 30, 0.50), rgba(10, 15, 30, 0.55)), 
              url('../images/services/background.jpg') no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
h1,h2,h3{ font-family: var(--font-display); color: var(--navy); font-weight: 600; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
img{ max-width:100%; display:block; }
section{ padding: 90px 6vw; position: relative; z-index: 0; }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

.eyebrow{
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
}
.eyebrow--dark{ color: var(--gold); }

/* ============ FLORAL CORNER ORNAMENTS ============ */
/* Default = navy line-art, tuned for visibility on light/white sections.
   --dark modifier swaps to gold line-art for use on navy sections. */
.floral-corner{
  position: absolute;
  width: 190px;
  height: 190px;
  background: url('../images/floral-corner-navy.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: -1;
  opacity: 0.7;
}
.floral-corner--dark{
  background-image: url('../images/floral-corner.svg');
  opacity: 0.75;
}
.floral-corner--tl{ top: 14px; left: 14px; }
.floral-corner--tr{ top: 14px; right: 14px; transform: scaleX(-1); }
.floral-corner--bl{ bottom: 14px; left: 14px; transform: scaleY(-1); }
.floral-corner--br{ bottom: 14px; right: 14px; transform: scale(-1, -1); }
.floral-corner--sm{ width: 120px; height: 120px; opacity: 0.6; }
.floral-corner--lg{ width: 270px; height: 270px; }

/* Tall side vines that fill the empty left/right gutters of a section */
.floral-side{
  position: absolute;
  top: 6%;
  bottom: 6%;
  width: clamp(70px, 8vw, 170px);
  background: url('../images/floral-vine-navy.svg') no-repeat center / contain;
  pointer-events: none;
  opacity: 0.55;
  z-index: -1;
}
.floral-side--left{ left: 0; }
.floral-side--right{ right: 0; transform: scaleX(-1); }
.floral-side--dark{
  background-image: url('../images/floral-vine.svg');
  opacity: 0.65;
}

@media (max-width: 980px){
  .floral-corner{ width: 110px; height: 110px; }
  .floral-corner--lg{ width: 150px; height: 150px; }
  .floral-corner--sm{ width: 80px; height: 80px; }
  .floral-side{ width: clamp(46px, 10vw, 90px); opacity: 0.4; }
}
@media (max-width: 600px){
  .floral-side{ display: none; }
}

/* ============ GLASS PANEL (premium liquid glass, Apple-style) ============ */
.glass-panel{
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow:
    0 10px 40px rgba(10, 31, 61, 0.20),
    inset 0 1px 1px rgba(255,255,255,0.55),
    inset 0 -1px 1px rgba(10,31,61,0.12);
  overflow: hidden;
}
.glass-panel::before{
  /* primary specular highlight, top-left */
  content:"";
  position:absolute;
  top:-25%; left:-15%;
  width: 65%; height: 65%;
  background: radial-gradient(circle, rgba(255,255,255,0.4), rgba(255,255,255,0) 70%);
  pointer-events: none;
  z-index: -1;
}
.glass-panel::after{
  /* secondary faint highlight, bottom-right */
  content:"";
  position:absolute;
  bottom:-30%; right:-15%;
  width: 55%; height: 55%;
  background: radial-gradient(circle, rgba(255,255,255,0.14), rgba(255,255,255,0) 70%);
  pointer-events: none;
  z-index: -1;
}

/* ============ BUTTONS ============ */
.btn{
  position: relative;
  z-index: 0;
  overflow: hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  cursor:pointer;
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn::after{
  content:"";
  position:absolute;
  right:-8px; bottom:-10px;
  width: 40px; height:40px;
  background: url('../images/floral-sprig.svg') no-repeat center / contain;
  opacity: 0.55;
  mix-blend-mode: overlay;
  pointer-events:none;
  z-index: -1;
}
.btn:hover{ transform: translateY(-2px); }
.btn--gold{
  background: linear-gradient(135deg, rgba(201,162,39,0.85), rgba(232,216,160,0.55));
  color: var(--navy-deep);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 6px 20px rgba(201,162,39,0.35);
}
.btn--gold:hover{ box-shadow: 0 10px 28px rgba(201,162,39,0.5); }
.btn--glass{
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--glass:hover{ background: rgba(214, 210, 210, 0.22); }
.btn--sm{ padding: 10px 20px; font-size: 0.8rem; }
.btn--sm::after{ width: 26px; height:26px; right:-4px; bottom:-6px; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 20px;                  /* Top se thoda niche floating look ke liye */
  left: 50%;
  transform: translateX(-50%); /* Bilkul center mein align karne ke liye */
  width: 90%;                 /* Screen ke mutabik width set karne ke liye */
  max-width: 1280px;          /* Badi screens par isse zyada width nahi hogi */
  z-index: 1000;
  
  /* Glassmorphic Rounded Pill Styles */
  background: linear-gradient, rgba(226, 228, 229, 0.25), rgba(224, 228, 234, 0.25);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  
  /* Full border rounded pill look ke liye */
  border: 1px solid rgba(255, 255, 255, 0.18); 
  border-radius: 999px;       /* Pill shape rounded corners */
  
  box-shadow: 0 8px 32px rgba(210, 213, 215, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;         /* Rounded shape ke andar perfect spacing */
}
.brand{ display:flex; align-items:center; gap:12px; }
/* Logo image ko perfect size dene ke liye */
.brand_logo {
  height: 45px;      /* Aap height ko apne logo ke mutabik 40px se 50px tak adjust kar sakte hain */
  width: auto;        /* Is se logo ki width auto-adjust ho jayegi aur logo kharab nahi dikhega */
  display: block;
  object-fit: contain;
}

/* Brand container ko thoda sa clean karne ke liye */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}.brand_text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  line-height: 1.0 !important;      /* Dono lines ko bilkul kareeb lane ke liye */
  gap: 2px !important;              /* "New Elegant" aur "Beauty Parlour" ke beech ka gap set karne ke liye */
}

.brand_text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.brand_text small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  line-height: 1.0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.nav-links{ display:flex; gap: 12px; }
.nav-links a{
  color: var(--white);
  font-size: 0.87rem;
  font-weight: 500;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.nav-links a::after{
  content:"";
  position:absolute;
  right:-6px; bottom:-8px;
  width: 24px; height:24px;
  background: url('../images/floral-sprig.svg') no-repeat center / contain;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events:none;
  z-index: -1;
}
.nav-links a:hover{
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(232, 216, 160, 0.6);
  transform: translateY(-2px);
}
.navbar__cta{ display:flex; align-items:center; gap:14px; }

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none; border:none; cursor:pointer;
}
.nav-toggle span{ width:24px; height:2px; background: var(--white); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 6vw 80px;
  background: transparent; /* Isse body ki background image dikhegi */
}
.hero__blob{
  position:absolute;
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  filter: blur(4px);
  opacity: 0.55;
  animation: morph 12s ease-in-out infinite alternate;
}
.hero__blob--1{
  width: 480px; height: 480px;
  top: -120px; left: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(201,162,39,0.55), transparent 70%);
}
.hero__blob--2{
  width: 420px; height: 420px;
  bottom: -160px; right: -120px;
  background: radial-gradient(circle at 70% 70%, rgba(232,216,160,0.35), transparent 70%);
  animation-duration: 16s;
}
@keyframes morph{
  0%{ border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%; transform: translate(0,0) scale(1); }
  50%{ border-radius: 60% 40% 35% 65% / 55% 65% 35% 45%; transform: translate(20px,-15px) scale(1.05); }
  100%{ border-radius: 50% 50% 40% 60% / 40% 55% 45% 60%; transform: translate(-10px,10px) scale(0.98); }
}

.hero__content{
  max-width: 640px;
  padding: 56px 48px;
  text-align:center;
  position: relative;
  z-index: 2;
}
.hero__content .eyebrow{ display:block; margin-bottom: 14px; }
.hero__content h1{
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.18;
  margin-bottom: 18px;
}
.hero__content h1 em{ color: var(--gold-light); font-style: italic; }
.hero__sub{
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 32px;
}
.hero__actions{
  display:flex;
  gap: 16px;
  justify-content:center;
  flex-wrap: wrap;
}
.hero__scroll{
  position:absolute;
  bottom: 28px; left:50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display:flex; flex-direction:column; align-items:center; gap:6px;
}
.hero__scroll span{
  width:1px; height:28px;
  background: linear-gradient(var(--gold-light), transparent);
}

/* ============ STORY ============ */
.story{ background: var(--white); }
.story__inner{ max-width: 780px; margin: 0 auto; text-align:center; }
.story__inner h2{ margin: 16px 0 22px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.story__inner p{ color: var(--text-soft); }

/* ============ STATS BANNER ============ */
.stats {
  padding: 60px 6vw; /* Thoda padding adjust kiya taake floating capsule pyara lage */
  background: transparent !important;
  overflow: hidden;
  position: relative;
}
.stats__blob{
  position:absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}
.stats__blob--1{ width:320px; height:320px; top:-100px; left:8%; background: radial-gradient(circle, rgba(201,162,39,0.4), transparent 70%); }
.stats__blob--2{ width:280px; height:280px; bottom:-120px; right:10%; background: radial-gradient(circle, rgba(232,216,160,0.3), transparent 70%); }
.stats_grid {
  position: relative;
  /* Box ki width thodi kam ki taake screenshot jaisa solid box look aaye */
  max-width: 900px; 
  margin: 40px auto;
  
  /* Grid ko horizontal line mein rakhne ke liye */
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px !important;

  /* --- Premium Glass Card Styling (Exactly like Screenshot) --- */
  /* Gradient background diya hai taake upar se halka aur niche se thoda dark glassy look aaye */
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.07) 0%, 
    rgba(10, 15, 30, 0.55) 100%
  ) !important;
  
  /* Glass blur effect */
  backdrop-filter: blur(15px) !important; 
  -webkit-backdrop-filter: blur(15px) !important;
  
  /* Modern soft-curved corners (Jaise screenshot mein hain) */
  border-radius: 28px !important; 
  
  /* Patli, white semi-transparent border edge */
  border: 1px solid rgba(255, 255, 255, 0.15) !important; 
  
  /* Card ke andar spacing (Paddings) */
  padding: 50px 40px !important; 
  
  /* Smooth drop shadow effect */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}
.stat-item{
  text-align:center;
  padding: 20px 10px;
}
.stat-item__icon{
  display:inline-block;
  width: 34px; height:34px;
  background-color: var(--gold-light);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  margin-bottom: 10px;
  opacity: 0.9;
}
.stat-item__num{
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  display:inline;
}
.stat-item__plus{
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold-light);
}
.stat-item p{
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ============ SNAPSHOT / SERVICE CARDS ============ */
.snapshot{ background: linear-gradient(180deg, var(--off-white), #f1ede2); }
.snapshot h2{ margin-bottom: 46px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.snapshot__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 1280px;
  margin: 0 auto;
}
.service-card{
  padding: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(10,31,61,0.28), inset 0 1px 0 rgba(255,255,255,0.4);
}
.service-card__media{
  width: 100%;
  height: 160px;
  border-radius: 14px;
  margin-bottom: 16px;
  object-fit: cover;
  display: block;
}
.service-card h3{ font-size: 1.1rem; margin-bottom: 6px; }
.service-card p{ font-size: 0.85rem; color: var(--text-soft); margin-bottom: 12px; }
.service-card .price{ font-weight: 600; color: var(--gold); font-size: 0.85rem; }

/* ============ PRICING ACCORDION ============ */
.pricing {
  /* Isse background bilkul translucent (halka sa transparent blue) ho jayega aur image saaf dikhegi */
  background: rgba(10, 15, 30, 0.40); 
  padding: 80px 0;
}
.pricing h2{ color: var(--white); margin: 14px 0 8px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.pricing__note{ color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 46px; }
.accordion{ max-width: 820px; margin: 0 auto; display:flex; flex-direction:column; gap: 14px; }
.accordion__item{
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02) 60%), var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.accordion__item:hover{ transform: translateY(-2px); }
.accordion__item.is-open{
  border-color: rgba(232,216,160,0.55);
  box-shadow: 0 10px 34px rgba(201,162,39,0.18), inset 0 1px 0 rgba(255,255,255,0.25);
}
.accordion__head{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 20px 26px;
  background:none;
  border:none;
  cursor:pointer;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.accordion__head i{
  font-style:normal;
  color: var(--gold-light);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}
.accordion__item.is-open .accordion__head i{ transform: rotate(45deg); }
.accordion__body{
  max-height:0;
  overflow:hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 26px;
}
.accordion__item.is-open .accordion__body{ padding: 0 26px 20px; }
.price-row{
  display:flex;
  justify-content:space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.price-row span:last-child{ color: var(--gold-light); font-weight:600; }

/* ============ GALLERY / MASONRY ============ */
.gallery{ background: var(--off-white); }
.gallery h2{ margin: 14px 0 30px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.gallery__filters{
  display:flex; justify-content:center; gap: 12px; flex-wrap:wrap; margin-bottom: 40px;
}
.filter-btn{
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(10,31,61,0.18);
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.15));
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor:pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 4px 14px rgba(10,31,61,0.08);
  transition: all 0.25s ease;
}
.filter-btn::after{
  content:"";
  position:absolute;
  right:-6px; bottom:-8px;
  width: 26px; height:26px;
  background: url('../images/floral-sprig-navy.svg') no-repeat center / contain;
  opacity: 0.4;
  pointer-events:none;
  z-index: -1;
}
.filter-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(201,162,39,0.5);
}
.filter-btn.is-active{
  background: linear-gradient(135deg, rgba(10,31,61,0.92), rgba(14,42,82,0.85));
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 8px 22px rgba(10,31,61,0.3);
}
.filter-btn.is-active::after{
  background-image: url('../images/floral-sprig.svg');
  opacity: 0.6;
  mix-blend-mode: overlay;
}
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}
.gallery-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 10px 28px rgba(10,31,61,0.18), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(10,31,61,0.28), inset 0 1px 0 rgba(255,255,255,0.35);
}
.gallery-card img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.gallery-card__label{
  position: absolute;
  left: 16px; bottom: 14px;
  color: rgba(255,255,255,0.95);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.gallery-card.is-hidden{ display:none; }
.gallery__hint{ text-align:center; font-size: 0.75rem; color: var(--text-soft); margin-top: 26px; }
.gallery__hint code{ background: rgba(10,31,61,0.08); padding: 2px 6px; border-radius: 4px; }

/* ============ TESTIMONIALS ============ */
.testimonials{ background: linear-gradient(180deg, #f1ede2, var(--off-white)); }
.testimonials h2{ margin: 14px 0 40px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.testimonials__row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.t-card{
  padding: 34px 30px 30px;
  transition: transform 0.3s ease;
}
.t-card:hover{ transform: translateY(-6px); }
.t-card__quote{ color: var(--gold); opacity: 0.7; margin-bottom: 10px; }
.t-card__avatar{
  width: 52px; height:52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,162,39,0.5);
  float: right;
  margin: -6px 0 10px 12px;
}
.t-card p{ font-style: italic; color: var(--text); margin-bottom: 16px; font-size: 0.92rem; clear: both; }
.t-card span{ color: var(--gold); font-weight:600; font-size: 0.85rem; }

/* ============ ABOUT ============ */
.about {
  /* Gradient ko transparent kiya taake image saaf baahar aaye */
  background: transparent;
  position: relative;
}
.about__inner{
  max-width: 820px;
  margin: 0 auto;
  padding: 56px;
}
.about__inner h2{ color: var(--white); margin: 14px 0 20px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.about__inner p{ color: rgba(255,255,255,0.82); margin-bottom: 16px; font-size: 0.95rem; }
.about__points{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}
.about__points div{
  color: var(--white);
  font-size: 0.85rem;
  display:flex; align-items:center; gap:8px;
}
.about__points i{ color: var(--gold-light); font-style:normal; }

/* ============ TEAM / ARTISTS ============ */
.team{ background: var(--off-white); }
.team h2{ margin: 14px 0 44px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.team__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.team-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 4.5;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 10px 28px rgba(10,31,61,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover{ transform: translateY(-8px); box-shadow: 0 18px 40px rgba(10,31,61,0.28); }
.team-card img{ width:100%; height:100%; object-fit:cover; display:block; }
.team-card__overlay{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 22px 18px 18px;
  text-align:center;
  background: linear-gradient(180deg, transparent, rgba(7,21,39,0.55) 45%, rgba(7,21,39,0.92));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.team-card__overlay h4{ color: var(--white); font-size: 1.05rem; margin-bottom: 10px; }
.team-card__role{ color: var(--gold-light); font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 2px; }
.team-card__social{ display:flex; justify-content:center; gap: 10px; }
.team-card__social a{
  width: 30px; height:30px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease;
}
.team-card__social a:hover{ background: rgba(232,216,160,0.35); transform: translateY(-2px); }

/* ============ CONTACT ============ */
.contact{ background: var(--off-white); }
.contact h2{ margin: 14px 0 40px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.contact__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}
.contact__info{
  padding: 40px;
}
.contact__info h3{ margin-bottom: 20px; font-size: 1.2rem; }
.contact__details{ display:flex; flex-direction:column; gap: 14px; margin-bottom: 24px; }
.contact__detail{ display:flex; align-items:flex-start; gap: 12px; }
.contact__detail-icon{
  flex-shrink:0;
  width: 36px; height:36px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  background: rgba(201,162,39,0.14);
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.3);
}
.contact__detail strong{ display:block; font-size: 0.82rem; color: var(--navy); margin-bottom: 2px; }
.contact__detail p{ font-size: 0.85rem; color: var(--text-soft); }
.contact__whatsapp{ margin: 0 0 26px; }
.contact__form{ display:flex; flex-direction:column; gap: 12px; }
.contact__form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact__form input,
.contact__form select,
.contact__form textarea{
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(10,31,61,0.2);
  background: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  width: 100%;
}
.contact__date{ color: var(--text-soft); }
.contact__form button{ align-self: flex-start; margin-top: 4px; background: rgba(10,31,61,0.85); color: var(--white); }
.form-note{ font-size: 0.8rem; color: var(--gold); margin-top: 10px; min-height: 1em; }
.contact__map{ overflow:hidden; min-height: 340px; padding: 0; }
.contact__map iframe{ width:100%; height:100%; min-height: 340px; border:0; }

/* ============ FOOTER ============ */
.footer{
  position: relative;
  z-index: 0;
  padding: 40px 6vw 100px;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,162,39,0.12), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(232,216,160,0.08), transparent 40%),
    var(--navy-deep);
}
.footer__inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 40px 26px;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand{ display:flex; align-items:center; gap: 14px; margin-bottom: 18px; }
.footer__brand strong{ color: var(--white); font-family: var(--font-display); }
.footer__brand p{ color: rgba(255,255,255,0.6); font-size: 0.78rem; }
.footer__social{ display:flex; gap: 10px; }
.footer__social a{
  width: 34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.25s ease, transform 0.25s ease;
}
.footer__social a:hover{ background: rgba(201,162,39,0.35); transform: translateY(-2px); }
.footer__col h5{
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.98rem;
  margin-bottom: 16px;
}
.footer__col{ display:flex; flex-direction:column; }
.footer__col a{
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 10px;
  width: fit-content;
}
.footer__col a:hover{ color: var(--gold-light); }
.footer__col--newsletter p{ color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-bottom: 14px; }
.footer__newsletter-form{ position:relative; }
.footer__newsletter-form input{
  width:100%;
  padding: 12px 42px 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
}
.footer__newsletter-form input::placeholder{ color: rgba(255,255,255,0.45); }
.footer__newsletter-form button{
  position:absolute;
  right: 8px; top:50%;
  transform: translateY(-50%);
  background:none; border:none;
  color: var(--gold-light);
  cursor:pointer;
  display:flex;
}
.footer__copy{ width:100%; text-align:center; color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-top: 22px; }

/* ============ FLOATING CTA ============ */
.floating-cta{
  position: fixed;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  overflow: hidden;
  display: none;
  align-items:center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201,162,39,0.92), rgba(232,216,160,0.75));
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.floating-cta::after{
  content:"";
  position:absolute;
  right:-8px; bottom:-10px;
  width: 34px; height:34px;
  background: url('../images/floral-sprig.svg') no-repeat center / contain;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events:none;
  z-index: -1;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .snapshot__grid{ grid-template-columns: repeat(2, 1fr); }
  .team__grid{ grid-template-columns: repeat(2, 1fr); }
  .testimonials__row{ grid-template-columns: 1fr; }
  .contact__grid{ grid-template-columns: 1fr; }
  .about__points{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  section{ padding: 64px 6vw; }
  .nav-links{
    position:absolute;
    top: 100%; left:0; right:0;
    flex-direction:column;
    background: rgba(10,31,61,0.92);
    backdrop-filter: var(--glass-blur);
    padding: 20px 6vw;
    gap: 18px;
    display:none;
  }
  .nav-links.is-open{ display:flex; }
  .nav-toggle{ display:flex; }
  .navbar__cta .btn--sm{ display:none; }
  .hero__content{ padding: 38px 26px; }
  .stats__grid{ grid-template-columns: repeat(2, 1fr); gap: 34px 16px; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .floating-cta{ display:flex; }
  .contact__form-row{ grid-template-columns: 1fr; }
  .team__grid{ grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer__grid{ grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer__col--brand{ grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce){
  .hero__blob{ animation: none; }
  html{ scroll-behavior: auto; }
}
/* 1. Stat item ke number ko aik line mein lock rakhna aur jhatke se bachana */
.stat-item_num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  display: inline-block !important; /* Block ki jagah inline-block taake width apply ho sake */
  min-width: 85px; /* Is se counting ke waqt number aage peeche nahi bhagega */
  text-align: right; /* Numbers ko right align rakhein taake plus sign fix rahe */
  font-variant-numeric: tabular-nums; /* Har digit barabar jagah le ga aur jiggle nahi karega */
}

/* 2. Plus sign ko chipka kar aur bilkul stable rakhne ke liye */
.stat-item_plus {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold-light);
  display: inline-block !important;
  margin-left: 2px; /* Number aur plus ke beech halki si constant space */
  vertical-align: middle; /* Taake upar niche na ho */
}

/* 3. Poore number block ko stable rakhna */
.stat-item {
  text-align: center;
  padding: 20px 10px;
  /* Taake counting ke dauran wrapper hilne na paaye */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}/* --- Footer Logo Custom Addition --- */
.footer_logo {
  height: 45px !important;  /* Logo ka size control karne ke liye */
  width: auto !important;    /* Aspect ratio kharab na ho */
  display: block !important;
  object-fit: contain !important;
}
/* --- Squeeze and Collapse Protection --- */
.brand {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
}

/* Logo image ka size lock karna */
.brand_logo {
  width: 45px !important;    
  height: 45px !important;   
  flex-shrink: 0 !important; /* Image ko squeeze hone se rokna */
  object-fit: contain !important;
}

/* Text Container ko wrap hone se rokna */
.brand_text {
  display: flex !important;
  flex-direction: column !important;
  flex-shrink: 0 !important;        
  min-width: 180px !important;      
  white-space: nowrap !important;   /* Text ko line break hone se rokna */
  line-height: 1.1 !important;
  gap: 2px !important;
}

.brand_text strong {
  display: block !important;
  font-family: var(--font-display) !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  line-height: 1.0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.brand_text small {
  display: block !important;
  font-family: var(--font-body) !important;
  font-size: 0.62rem !important;
  color: var(--gold-light) !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  line-height: 1.0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* --- Mobile Body Background Parallax Fix --- */
@media (max-width: 768px) {
  body {
    background-attachment: scroll !important;  /* Mobile par image scroll hogi, freeze nahi */
    background-position: center center !important; /* Image center mein show hogi */
    background-size: cover !important;         /* Poori screen cover karegi */
  }
}