/* =========================================================
   WBSK — Dr. Waqar Bin Saif Khattak
   Theme: charcoal + gold, serif headings
   ========================================================= */

:root{
  --dark:        #0b0e13;
  --dark-2:      #12161d;
  --dark-3:      #1a2029;
  --cream:       #f7f4ef;
  --gold:        #c8a45c;
  --gold-light:  #f0dca4;
  --gold-dark:   #8f6d2f;
  --gold-soft:   rgba(200,164,92,.28);
  --text-light:  #cfd3da;

  /* Nastaliq aakhir mein fallback hai: jo lafz English font mein nahi hote
     (yani Urdu), browser un ke liye khud Nastaliq utha leta hai — is se
     mili-juli (English + Urdu) lines bhi theek dikhti hain */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", "Noto Nastaliq Urdu", serif;
  --sans:  "Jost", "Segoe UI", system-ui, -apple-system, "Noto Nastaliq Urdu", sans-serif;

  --nav-h:       92px;   /* navbar height at top */
  --nav-h-small: 70px;   /* navbar height after scroll */
  --ease:        cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing: border-box; }

body{
  margin:0;
  background: var(--dark);
  color: var(--text-light);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.gold-text{
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   NAVBAR
   ========================================================= */

.wbsk-nav{
  height: var(--nav-h);
  padding: 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(200,164,92,.14);
  transition: height .45s var(--ease), background-color .45s var(--ease), box-shadow .45s var(--ease);
}

.wbsk-nav.is-scrolled{
  height: var(--nav-h-small);
  background: rgba(11,14,19,.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 34px rgba(0,0,0,.55);
  border-bottom-color: var(--gold-soft);
}

/* menu khula ho to background hamesha poora solid rahe (scroll ke bawajood) */
.wbsk-nav.menu-open,
.wbsk-nav.menu-open.is-scrolled{
  background: var(--dark);
  backdrop-filter: none;
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
  border-bottom-color: var(--gold-soft);
}

.wbsk-nav > .container-fluid{
  height: 100%;
  align-items: center;
}

/* ---- Brand ---- */

.navbar-brand{
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 0;
  margin: 0;
}

.brand-mark{
  display: block;
  width: 66px;
  height: 58px;
  flex: 0 0 auto;
  transition: width .45s var(--ease), height .45s var(--ease);
}
.is-scrolled .brand-mark{ width: 54px; height: 47px; }

.brand-logo{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* agar file abhi tak add nahi hui to alt text gold mein dikhega */
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--gold);
  /* dark navbar pe gold thoda dab jata hai — halka sa uthaya hai */
  filter: brightness(1.1) saturate(1.05);
  transition: transform .55s var(--ease), filter .55s var(--ease);
}

.navbar-brand:hover .brand-logo{
  transform: scale(1.07);
  filter: brightness(1.18) saturate(1.1) drop-shadow(0 0 11px rgba(200,164,92,.5));
}

.brand-text{ display: flex; flex-direction: column; line-height: 1.2; }

.brand-name{
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
  white-space: nowrap;
  transition: font-size .45s var(--ease);
}
.is-scrolled .brand-name{ font-size: 1.2rem; }

.brand-sub{
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  transition: opacity .35s var(--ease);
}
.is-scrolled .brand-sub{ opacity: .75; }

/* ---- Links ---- */

.navbar-nav{ gap: .35rem; }

.wbsk-nav .nav-link{
  position: relative;
  padding: .55rem .95rem;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: #e6e8ec;
  transition: color .3s var(--ease);
}

.wbsk-nav .nav-link::after{
  content:"";
  position: absolute;
  left: .95rem;
  right: .95rem;
  bottom: .15rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s var(--ease);
}

.wbsk-nav .nav-link:hover,
.wbsk-nav .nav-link:focus-visible,
.wbsk-nav .nav-link.active{ color: var(--gold); }

.wbsk-nav .nav-link:hover::after,
.wbsk-nav .nav-link:focus-visible::after,
.wbsk-nav .nav-link.active::after{ transform: scaleX(1); }

/* ---- Gold button ---- */

.btn-gold{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  overflow: hidden;
  padding: .72rem 1.5rem;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #14100a;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}

/* shine sweep */
.btn-gold::before{
  content:"";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 55%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  transition: left .65s var(--ease);
}
.btn-gold:hover::before{ left: 130%; }

.btn-gold:hover,
.btn-gold:focus-visible{
  color: #14100a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200,164,92,.32);
}

.btn-ico{ width: 17px; height: 17px; fill: currentColor; flex: 0 0 auto; }

/* ---- Mobile toggler ---- */

.navbar-toggler{
  width: 46px; height: 40px;
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 0;
  border: 1px solid var(--gold-soft);
  border-radius: 2px;
  box-shadow: none !important;
}
.toggler-bar{
  display: block;
  width: 22px; height: 1.5px;
  margin: 0 auto;
  background: var(--gold);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.navbar-toggler:not(.collapsed) .toggler-bar:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.navbar-toggler:not(.collapsed) .toggler-bar:nth-child(2){ opacity: 0; }
.navbar-toggler:not(.collapsed) .toggler-bar:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   HERO SLIDER
   ========================================================= */

.hero-section{
  position: relative;
  margin-top: var(--nav-h);
  background: var(--dark);
}

/* anchor links fixed navbar ke neeche na chhup jayen */
html{ scroll-behavior: smooth; }
section[id]{ scroll-margin-top: var(--nav-h); }


.hero-carousel{ position: relative; overflow: hidden; }

/* mobile aur desktop ke alag sliders — sirf ek waqt mein ek */
.only-mobile { display: none; }
.only-desktop{ display: block; }
/* tablet (iPad) bhi mobile jaisa: 1024px tak mobile wale sliders */
@media (max-width: 1024.98px){
  .only-mobile { display: block; }
  .only-desktop{ display: none; }
}

/* mobile hero banners — 1201x1309 (ratio 0.917).
   Phone par poori chaurai + apna ratio = koi crop nahi, koi khali jagah nahi. */
.hero-img-m{
  display: block;
  width: 100%;
  aspect-ratio: 1201 / 1309;
  object-fit: cover;
}

/* TABLET (768–1024px): sirf Slider 1 par desktop wale chaure banners.
   Wajah: mobile banner portrait hai; tablet ki chaurai par usay aadhi height
   mein fit karne se upar-neeche se cut hota tha. Desktop banner (2.4:1)
   poori chaurai par bilkul fit aa jata hai — na crop, na khali jagah.
   Before & After (Slider 2) par tablet mein mobile wale hi rehte hain. */
@media (min-width: 768px) and (max-width: 1024.98px){
  .hero-section .only-desktop{ display: block; }
  .hero-section .only-mobile { display: none; }
}

/* results banners — poori chaurai, apna ratio.
   Yahan crop nahi karte kyunki ye before/after hain, kaatna theek nahi. */
.results-img-m{
  display: block;
  width: 100%;
  aspect-ratio: 1201 / 1309;
  object-fit: cover;
}

.hero-img{
  display: block;
  width: 100%;
  aspect-ratio: 2.4 / 1;   /* desktop banners ka apna ratio — koi crop nahi */
  object-fit: cover;
}

/* slide transition — nayi slide right se aa kar left ko sarakti hai */
.hero-carousel .carousel-item{
  transition: transform .9s cubic-bezier(.65,.05,.36,1);
}

/* first paint entrance */
.hero-section{ animation: heroIn 1s var(--ease) both; }
@keyframes heroIn{
  from{ opacity: 0; transform: translateY(18px); }
  to  { opacity: 1; transform: none; }
}

/* ---- Arrows ---- */

.hero-arrow{
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  transform: translateY(-50%);
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: rgba(11,14,19,.42);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .4s var(--ease), background-color .4s var(--ease),
              border-color .4s var(--ease), transform .4s var(--ease);
}
.hero-arrow-prev{ left: 26px; }
.hero-arrow-next{ right: 26px; }

.hero-carousel:hover .hero-arrow,
.hero-arrow:focus-visible{ opacity: 1; }

.hero-arrow:hover{
  background: var(--gold);
  border-color: var(--gold);
}
.hero-arrow-prev:hover{ transform: translateY(-50%) translateX(-4px); }
.hero-arrow-next:hover{ transform: translateY(-50%) translateX(4px); }

.hero-arrow svg{
  width: 20px; height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .4s var(--ease);
}
.hero-arrow:hover svg{ stroke: #14100a; }

/* ---- Indicators (gold dashes with progress fill) ---- */

.hero-indicators{
  position: absolute;
  left: 0; right: 0;
  bottom: 22px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.hero-indicators button{
  width: 34px; height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.3);
  overflow: hidden;
  cursor: pointer;
  transition: width .45s var(--ease), background-color .3s var(--ease);
}
.hero-indicators button:hover{ background: rgba(255,255,255,.55); }
.hero-indicators button.active{ width: 62px; background: rgba(255,255,255,.22); }

.hero-indicators button i{
  display: block;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left center;
}
.hero-indicators button.active i{
  animation: barFill var(--slide-ms, 6000ms) linear forwards;
}
@keyframes barFill{ from{ transform: scaleX(0); } to{ transform: scaleX(1); } }

/* paused (hover) — progress bhi ruk jaye */
.hero-carousel.is-paused .hero-indicators button.active i{ animation-play-state: paused; }

/* =========================================================
   REUSABLE — eyebrow + scroll reveal
   ========================================================= */

.eyebrow{
  display: block;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  text-indent: .42em;      /* letter-spacing ki wajah se center thoda hat jata hai */
}

.reveal{
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: none; }

/* =========================================================
   QUOTES SECTION
   ========================================================= */

.quotes-section{
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 68px) 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(200,164,92,.12);
  border-bottom: 1px solid rgba(200,164,92,.12);
}

/* halke gold glow — dono taraf */
.q-glow{
  position: absolute;
  top: 50%;
  width: 460px; height: 460px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,92,.13) 0%, transparent 68%);
  pointer-events: none;
}
.q-glow-l{ left: -190px; }
.q-glow-r{ right: -190px; }

.quotes-inner{
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

/* bara gold quotation mark */
.q-mark{
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 8.5rem);
  font-weight: 700;
  line-height: .5;
  margin: 22px 0 2px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .85;
}

/* saari quotes ek hi jagah stack — height sabse lambi wali ke barabar */
.q-stage{ display: grid; }

/* purani quote pehle gayab hoti hai, phir nayi aati hai —
   warna dono ek doosre ke upar overlap karti thin */
.q-item{
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .35s var(--ease),
              transform .35s var(--ease),
              visibility 0s linear .35s;
}
.q-item.is-active{
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity .45s var(--ease) .35s,
              transform .45s var(--ease) .35s,
              visibility 0s linear .35s;
}

.q-item p{
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3.4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: .01em;
  color: #f2f0ec;
}

.q-item em{
  font-style: italic;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* flourish divider */
.q-flourish{ margin: 22px auto 14px; width: min(200px, 58%); }
.q-flourish svg{
  display: block; width: 100%; height: auto;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  stroke-linecap: round;
  opacity: .75;
}
.q-flourish .q-diamond,
.q-flourish .q-dot{ fill: var(--gold); stroke: none; }

/* lines ka draw effect jab section nazar mein aaye */
.q-flourish svg path:not(.q-diamond){
  stroke-dasharray: 86;
  stroke-dashoffset: 86;
}
.reveal.is-visible .q-flourish svg path:not(.q-diamond){
  animation: drawLine 1s var(--ease) .35s forwards;
}
@keyframes drawLine{ to{ stroke-dashoffset: 0; } }

.q-flourish .q-diamond,
.q-flourish .q-dot{
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.reveal.is-visible .q-flourish .q-diamond{ animation: popIn .55s var(--ease) .95s both; }
.reveal.is-visible .q-flourish .q-dot{ animation: popIn .45s var(--ease) 1.15s both; }
@keyframes popIn{
  0%  { opacity: 0; transform: scale(.2); }
  60% { opacity: 1; transform: scale(1.25); }
  100%{ opacity: 1; transform: scale(1); }
}

.q-author{
  display: block;
  font-style: normal;
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  text-indent: .28em;
}

/* dots */
.q-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.q-dots button{
  width: 8px; height: 8px;
  padding: 0;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.q-dots button:hover{ border-color: var(--gold); transform: scale(1.25); }
.q-dots button.is-active{ background: var(--gold); border-color: var(--gold); transform: scale(1.25); }

/* ---- mobile: font chhota, height munasib ---- */

/* desktop par poori quote, mobile par chhoti — dono ek hi waqt mein na dikhein */
.q-short{ display: none; }
.q-full { display: inline; }

@media (max-width: 767.98px){
  .quotes-section{ padding: 36px 0; }
  .quotes-section .eyebrow{ font-size: .62rem; letter-spacing: .3em; text-indent: .3em; }
  .q-mark{ font-size: 3.2rem; margin: 12px 0 0; }

  /* chhoti quote + chhota font = har sentence ek hi line mein */
  .q-full { display: none; }
  .q-short{ display: inline; }
  /* fluid — 320px par ~14.7px se 767px par ~21.6px tak, hamesha ek line */
  .q-item p{ font-size: clamp(.92rem, 4.4vw, 1.35rem); line-height: 1.45; white-space: nowrap; }

  .q-flourish{ margin: 14px auto 10px; width: 150px; }
  .q-author{ font-size: .62rem; letter-spacing: .2em; text-indent: .2em; }
  .q-dots{ margin-top: 14px; gap: 8px; }
  .q-dots button{ width: 7px; height: 7px; }
  .q-glow{ width: 300px; height: 300px; }
}

@media (max-width: 420px){
  .quotes-section{ padding: 30px 0; }
  .q-mark{ font-size: 2.8rem; }
  .q-flourish{ width: 130px; }
}

/* =========================================================
   SERVICES
   ========================================================= */

.services-section{
  padding: clamp(58px, 7vw, 96px) 0;
  background: var(--dark);
}

.sec-head{ text-align: center; margin-bottom: clamp(32px, 4vw, 52px); }

.sec-title{
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: .01em;
  color: #f2f0ec;
}

/* ---- rail + arrows ---- */

.rail-wrap{ position: relative; }

/* .rail-track — services aur reviews dono isi ko istemal karte hain */
.rail-track{
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.rail-track::-webkit-scrollbar{ display: none; }

.rail-btn{
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px; height: 46px;
  display: none;                 /* JS zaroorat par dikhata hai */
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: rgba(11,14,19,.82);
  backdrop-filter: blur(6px);
  transition: background-color .35s var(--ease), border-color .35s var(--ease), opacity .35s var(--ease);
}
.rail-wrap.is-scrollable .rail-btn{ display: grid; }
.rail-prev{ left: -14px; }
.rail-next{ right: -14px; }

.rail-btn svg{
  width: 18px; height: 18px;
  fill: none; stroke: var(--gold);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .35s var(--ease);
}
.rail-btn:hover{ background: var(--gold); border-color: var(--gold); }
.rail-btn:hover svg{ stroke: #14100a; }
.rail-btn[disabled]{ opacity: .28; pointer-events: none; }

/* ---- card ---- */

.svc-card{
  position: relative;
  flex: 0 0 78%;
  scroll-snap-align: start;
  display: block;
  overflow: hidden;
  /* 1:1 — images crop nahi hoti (Hydra Facial pe text baked hai).
     Height barhane ke liye card chaura kiya hai, ratio nahi. */
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(200,164,92,.16);
  text-decoration: none;
  isolation: isolate;
  transition: border-color .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
}

.svc-img{ position: absolute; inset: 0; display: block; overflow: hidden; }
.svc-img img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.1s var(--ease);
}

/* neeche se dark gradient — caption parhne ke liye */
.svc-card::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top,
              rgba(6,8,11,.94) 0%,
              rgba(6,8,11,.72) 26%,
              rgba(6,8,11,.15) 58%,
              rgba(6,8,11,.05) 100%);
  transition: opacity .5s var(--ease);
}

.svc-body{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: block;
  padding: 22px 20px 24px;
}

.svc-rule{
  display: block;
  width: 30px; height: 1px;
  margin-bottom: 12px;
  background: var(--gold);
  transition: width .5s var(--ease);
}

.svc-title{
  display: block;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
}

.svc-sub{
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  font-size: .8rem;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  opacity: 0;
  transition: max-height .5s var(--ease), opacity .45s var(--ease), margin-top .5s var(--ease);
}

/* gold arrow — hover pe */
.svc-go{
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(11,14,19,.4);
  opacity: 0;
  transform: translate(6px, -6px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), background-color .45s var(--ease);
}
.svc-go svg{
  width: 16px; height: 16px;
  fill: none; stroke: var(--gold);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .45s var(--ease);
}

/* ---- hover ---- */

.svc-card:hover,
.svc-card:focus-visible{
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0,0,0,.55);
}
.svc-card:hover .svc-img img,
.svc-card:focus-visible .svc-img img{ transform: scale(1.09); }

.svc-card:hover .svc-rule,
.svc-card:focus-visible .svc-rule{ width: 62px; }

.svc-card:hover .svc-sub,
.svc-card:focus-visible .svc-sub{ max-height: 60px; margin-top: 8px; opacity: 1; }

.svc-card:hover .svc-go,
.svc-card:focus-visible .svc-go{ opacity: 1; transform: none; }
.svc-card:hover .svc-go{ background: var(--gold); }
.svc-card:hover .svc-go svg{ stroke: #14100a; }

/* ---- stagger reveal ---- */

.rail-wrap.reveal .svc-card{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease),
              border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.rail-wrap.reveal.is-visible .svc-card{ opacity: 1; transform: none; }
.rail-wrap.reveal.is-visible .svc-card:nth-child(1){ transition-delay: .05s; }
.rail-wrap.reveal.is-visible .svc-card:nth-child(2){ transition-delay: .17s; }
.rail-wrap.reveal.is-visible .svc-card:nth-child(3){ transition-delay: .29s; }
.rail-wrap.reveal.is-visible .svc-card:nth-child(4){ transition-delay: .41s; }
.rail-wrap.reveal.is-visible .svc-card:nth-child(n+5){ transition-delay: .5s; }

/* ---- card widths ---- */

/* mobile par Specialties ko upar uthao — padding kam */
@media (max-width: 767.98px){
  .services-section{ padding: 28px 0 38px; }
  .services-section .sec-head{ margin-bottom: 20px; }
  .services-section .sec-title{ margin-top: 7px; }

  /* heading har phone par ek line mein rahe (360px par tootti thi) */
  .sec-title{ font-size: clamp(1.35rem, 6.4vw, 2.1rem); }
}

@media (min-width: 576px){ .svc-card{ flex-basis: 62%; } }
@media (min-width: 768px){ .svc-card{ flex-basis: 46%; } }
/* desktop pe 3 cards — chaure hone se lambe bhi hote hain (1:1),
   chautha card slide kar ke aata hai */
@media (min-width: 992px){ .svc-card{ flex-basis: calc((100% - 44px) / 3); } }

@media (max-width: 991.98px){
  .rail-prev{ left: 4px; }
  .rail-next{ right: 4px; }
}

/* =========================================================
   REVIEWS
   ========================================================= */

.reviews-section{
  padding: clamp(58px, 7vw, 96px) 0;
  background: var(--dark);
  border-top: 1px solid rgba(200,164,92,.1);
}

.rev-card{
  position: relative;
  flex: 0 0 85%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 26px;
  background: var(--dark-2);
  border: 1px solid rgba(200,164,92,.16);
  overflow: hidden;
  transition: border-color .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
}

.rev-card:hover{
  border-color: var(--gold-soft);
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(0,0,0,.5);
}

/* halka sa bara quote mark — background mein */
.rev-quote{
  position: absolute;
  top: -14px; right: 14px;
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: .1;
  pointer-events: none;
}

.rev-stars{ display: flex; gap: 4px; margin-bottom: 16px; }
.rev-stars svg{ width: 15px; height: 15px; fill: var(--gold); }

.rev-text{
  margin: 0 0 24px;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
}

/* Urdu — Nastaliq ko zyada line-height chahiye hoti hai */
.rev-urdu{
  font-family: "Noto Nastaliq Urdu", var(--sans);
  font-size: .95rem;
  line-height: 2.5;
  text-align: right;
}

.rev-who{
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;              /* hamesha card ke neeche chipka rahe */
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.rev-avatar{
  position: relative;
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  overflow: hidden;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold);
  background: rgba(200,164,92,.07);
}

/* Asli tasveer chahiye to bas <span class="rev-avatar"> ke andar
   <img src="images/reviews/ahmed.jpg" alt=""> daal dein — baqi khud handle ho jayega.
   (Sirf asli mareez ki, unki ijazat ke sath.) */
.rev-avatar img{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.rev-meta{ display: flex; flex-direction: column; line-height: 1.35; }

.rev-name{
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: #fff;
}
.rev-city{
  font-size: .7rem;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .85;
}

/* stagger reveal */
.rail-wrap.reveal .rev-card{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease),
              border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.rail-wrap.reveal.is-visible .rev-card{ opacity: 1; transform: none; }
.rail-wrap.reveal.is-visible .rev-card:nth-child(1){ transition-delay: .05s; }
.rail-wrap.reveal.is-visible .rev-card:nth-child(2){ transition-delay: .17s; }
.rail-wrap.reveal.is-visible .rev-card:nth-child(3){ transition-delay: .29s; }
.rail-wrap.reveal.is-visible .rev-card:nth-child(n+4){ transition-delay: .38s; }

@media (min-width: 576px){ .rev-card{ flex-basis: 66%; } }
@media (min-width: 768px){ .rev-card{ flex-basis: 46%; } }
@media (min-width: 992px){ .rev-card{ flex-basis: calc((100% - 44px) / 3); } }

/* =========================================================
   RESULTS — Slider 2 (cream section)
   ========================================================= */

.results-section{
  padding: clamp(58px, 7vw, 96px) 0;
  background: var(--cream);
}

/* cream par gold halka par jata hai — gehra gold istemal kiya hai */
.eyebrow-dark{ color: var(--gold-dark); }
.sec-title-dark{ color: #171a20; }
.gold-text-dark{
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.results-frame{
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid rgba(143,109,47,.3);
  box-shadow: 0 26px 60px rgba(23,26,32,.16);
}

.results-carousel{ overflow: hidden; }

.results-img{
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;      /* banner ka apna ratio — koi crop nahi */
  object-fit: cover;
}

.results-carousel .carousel-item{
  transition: transform .9s cubic-bezier(.65,.05,.36,1);
}

/* ---- arrows ---- */

.res-arrow{
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(11,14,19,.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .4s var(--ease), background-color .4s var(--ease),
              border-color .4s var(--ease), transform .4s var(--ease);
}
.res-arrow-prev{ left: 18px; }
.res-arrow-next{ right: 18px; }

.results-carousel:hover .res-arrow,
.res-arrow:focus-visible{ opacity: 1; }

.res-arrow:hover{ background: var(--gold); border-color: var(--gold); }
.res-arrow-prev:hover{ transform: translateY(-50%) translateX(-4px); }
.res-arrow-next:hover{ transform: translateY(-50%) translateX(4px); }

.res-arrow svg{
  width: 19px; height: 19px;
  fill: none; stroke: #fff;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .4s var(--ease);
}
.res-arrow:hover svg{ stroke: #14100a; }

/* ---- dots ---- */

.res-dots{
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.res-dots button{
  width: 9px; height: 9px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color .35s var(--ease), transform .35s var(--ease);
}
.res-dots button:hover{ transform: scale(1.25); }
.res-dots button.active{ background: var(--gold); border-color: var(--gold); transform: scale(1.25); }

/* sirf ek hi image ho to arrows/dots ka koi matlab nahi — JS ye class lagata hai */
.results-carousel.is-single .res-arrow,
.results-carousel.is-single .res-dots{ display: none; }

@media (max-width: 767.98px){
  .res-arrow{ width: 38px; height: 38px; opacity: 1; }
  .res-arrow-prev{ left: 8px; }
  .res-arrow-next{ right: 8px; }
  .res-arrow svg{ width: 16px; height: 16px; }
  .res-dots{ bottom: 10px; }
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-section{
  padding: clamp(58px, 7vw, 96px) 0;
  background: var(--cream);
}

.about-grid{
  display: grid;
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}

.about-media{
  position: relative;
  border: 1px solid rgba(143,109,47,.3);
  box-shadow: 0 24px 56px rgba(23,26,32,.16);
  overflow: hidden;
}
.about-media img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;    /* image square hai — koi crop nahi */
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about-media:hover img{ transform: scale(1.03); }

.about-title{ margin-top: 12px; }

.about-lead{
  margin: 18px 0 0;
  max-width: 50ch;
  font-size: .96rem;
  font-weight: 300;
  line-height: 1.8;
  color: #4a4f57;
}

/* credentials */
.about-list{
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
@media (min-width: 420px){
  .about-list{ grid-template-columns: 1fr 1fr; column-gap: 22px; }
}

.about-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  font-weight: 400;
  color: #2b2f36;
}
.about-list svg{
  flex: 0 0 auto;
  width: 17px; height: 17px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* CTA */
.about-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* cream par outline button */
.btn-line{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .72rem 1.5rem;
  border: 1px solid rgba(23,26,32,.28);
  background: transparent;
  color: #171a20;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .35s var(--ease), background-color .35s var(--ease),
              color .35s var(--ease), transform .35s var(--ease);
}
.btn-line .btn-ico{ fill: currentColor; }
.btn-line:hover,
.btn-line:focus-visible{
  border-color: #171a20;
  background: #171a20;
  color: var(--cream);
  transform: translateY(-2px);
}

/* dono column ek sath na aayen — text thoda baad mein */
.about-body.reveal{ transition-delay: .15s; }

@media (min-width: 992px){
  .about-grid{ grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.wa-float{
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 1040;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 26px rgba(37,211,102,.38);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.wa-float svg{ width: 30px; height: 30px; fill: #fff; }
.wa-float:hover{ transform: scale(1.08); box-shadow: 0 14px 34px rgba(37,211,102,.5); }

.wa-float::after{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse{
  0%  { transform: scale(1);   opacity: .7; }
  70% { transform: scale(1.55);opacity: 0; }
  100%{ transform: scale(1.55);opacity: 0; }
}

/* =========================================================
   UNDER DEVELOPMENT PAGES (hair-transplant.html / skin.html)
   ========================================================= */

.dev-section{
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 78vh;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: var(--dark);
  text-align: center;
}

/* dono taraf halka gold glow */
.dev-section::before,
.dev-section::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 520px; height: 520px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,92,.12) 0%, transparent 68%);
  pointer-events: none;
}
.dev-section::before{ left: -210px; }
.dev-section::after { right: -210px; }

.dev-inner{ position: relative; max-width: 620px; margin: 0 auto; padding: 0 18px; }

/* ---- ghoomta hua gold ring ---- */

.dev-ring{
  position: relative;
  display: grid;
  place-items: center;
  width: 118px; height: 118px;
  margin: 0 auto 30px;
}
.dev-ring svg{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  fill: none;
  transform: rotate(-90deg);
}
.dev-ring-bg{ stroke: rgba(200,164,92,.16); stroke-width: 1.5; }
.dev-ring-arc{
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 82 245;
  transform-origin: 60px 60px;
  animation: devSpin 2.6s linear infinite;
}
@keyframes devSpin{ to{ transform: rotate(360deg); } }

.dev-ring-ico svg{
  position: static;
  width: 40px; height: 40px;
  transform: none;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- text ---- */

.dev-title{
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 500;
  letter-spacing: .01em;
  color: #f2f0ec;
}

.dev-badge{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding: .5rem 1.1rem;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.dev-badge::before{
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: devPulse 1.6s ease-in-out infinite;
}
@keyframes devPulse{
  0%,100%{ opacity: 1;  transform: scale(1); }
  50%    { opacity: .3; transform: scale(.7); }
}

.dev-text{
  margin: 24px auto 0;
  max-width: 46ch;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,.6);
}

.dev-cta{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

/* dark background par outline button */
.btn-ghost{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .72rem 1.5rem;
  border: 1px solid rgba(255,255,255,.28);
  background: transparent;
  color: #fff;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .35s var(--ease), background-color .35s var(--ease),
              color .35s var(--ease), transform .35s var(--ease);
}
.btn-ghost .btn-ico{ fill: currentColor; }
.btn-ghost:hover,
.btn-ghost:focus-visible{
  border-color: var(--gold);
  background: var(--gold);
  color: #14100a;
  transform: translateY(-2px);
}

@media (max-width: 575.98px){
  .dev-section{ min-height: 70vh; padding: calc(var(--nav-h) + 40px) 0 60px; }
  .dev-ring{ width: 96px; height: 96px; margin-bottom: 24px; }
  .dev-ring-ico svg{ width: 33px; height: 33px; }
  .dev-cta .btn-gold,
  .dev-cta .btn-ghost{ width: 100%; justify-content: center; }
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer{
  padding: clamp(50px, 6vw, 78px) 0 0;
  background: var(--dark);
  border-top: 1px solid rgba(200,164,92,.16);
}

.foot-grid{
  display: grid;
  gap: 42px;
  padding-bottom: clamp(38px, 4.5vw, 58px);
}

.foot-logo{ width: 74px; margin-bottom: 16px; }
.foot-logo img{
  width: 100%; height: auto; display: block;
  filter: brightness(1.1) saturate(1.05);
}

.foot-name{
  margin: 0;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: #fff;
}
.foot-role{
  margin: 3px 0 0;
  font-size: .63rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.foot-blurb{
  margin: 16px 0 0;
  max-width: 34ch;
  font-size: .84rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
}

/* ---- headings ---- */

.foot-head{
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 12px;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
}
.foot-head::after{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 1px;
  background: var(--gold);
}

.foot-label{
  display: block;
  margin: 26px 0 13px;
  font-size: .66rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ---- social ---- */

.foot-social{ display: flex; gap: 11px; flex-wrap: wrap; }

.foot-social a{
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold);
  transition: background-color .35s var(--ease), border-color .35s var(--ease),
              color .35s var(--ease), transform .35s var(--ease);
}
.foot-social a:hover{
  background: var(--gold);
  border-color: var(--gold);
  color: #14100a;
  transform: translateY(-3px);
}
.foot-social svg{ width: 17px; height: 17px; fill: currentColor; }
.foot-social .soc-line{
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.foot-social .soc-dot{ fill: currentColor; stroke: none; }

/* ---- links ---- */

.foot-links,
.foot-contact{ list-style: none; margin: 0; padding: 0; }

.foot-links li{ margin-bottom: 11px; }
.foot-links a{
  position: relative;
  font-size: .86rem;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.foot-links a::before{
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.foot-links a:hover{ color: var(--gold); padding-left: 17px; }
.foot-links a:hover::before{ width: 11px; }

/* ---- contact ---- */

.foot-contact li{
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
  font-size: .85rem;
  font-weight: 300;
  color: rgba(255,255,255,.62);
}
.foot-contact a{ color: inherit; text-decoration: none; transition: color .3s var(--ease); }
.foot-contact a:hover{ color: var(--gold); }

.foot-ico{
  flex: 0 0 auto;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
}
.foot-ico svg{
  width: 16px; height: 16px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- appointment column ---- */

.foot-appt .btn-gold{
  margin-top: 20px;
  white-space: nowrap;      /* tang column mein do lines mein toot raha tha */
  padding: .72rem 1.25rem;
  font-size: .72rem;
  letter-spacing: .13em;
}

/* ---- bottom bar ---- */

.foot-bottom{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.foot-bottom p{
  margin: 0;
  font-size: .76rem;
  font-weight: 300;
  color: rgba(255,255,255,.38);
}
.foot-fine{ letter-spacing: .1em; text-transform: uppercase; font-size: .66rem !important; }

@media (min-width: 576px){
  .foot-grid{ grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px){
  .foot-grid{ grid-template-columns: 1.5fr 1fr 1.35fr 1.15fr; gap: 34px; }
}

/* WhatsApp floating button footer ke buttons se na takraye */
@media (max-width: 575.98px){
  .foot-bottom{ padding-bottom: 82px; }
}

/* =========================================================
   MOBILE SECTION ORDER
   Mobile par Quotes, Specialties (Services) ke BAAD aati hai.
   Desktop par tarteeb waisi hi rehti hai jaisi sketch mein thi.
   ========================================================= */

@media (max-width: 1024.98px){
  body{ display: flex; flex-direction: column; }

  .hero-section    { order: 1; }
  .services-section{ order: 2; }   /* Our Specialties */
  .quotes-section  { order: 3; }   /* Hair & Aesthetic quotes */
  .results-section { order: 4; }
  .reviews-section { order: 5; }
  .about-section   { order: 6; }
  .site-footer     { order: 7; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px){
  :root{ --nav-h: 74px; --nav-h-small: 66px; }

  .wbsk-nav{ height: auto; min-height: var(--nav-h); }
  /* scroll par height fix na ho — warna khula hua menu navbar ke
     background se bahar nikal jata hai aur background gayab lagta hai */
  .wbsk-nav.is-scrolled{ height: auto; min-height: var(--nav-h-small); }
  .wbsk-nav > .container-fluid{ padding-top: .6rem; padding-bottom: .6rem; }
  .is-scrolled .brand-mark{ width: 46px; height: 46px; }

  .brand-name{ font-size: 1.02rem; white-space: normal; }
  .is-scrolled .brand-name{ font-size: 1.02rem; }
  .brand-sub{ font-size: .52rem; letter-spacing: .16em; white-space: normal; }

  .navbar-collapse{
    margin-top: .75rem;
    border-top: 1px solid rgba(200,164,92,.14);
    padding: .5rem 0 1rem;
  }
  .navbar-nav{ gap: 0; }
  .wbsk-nav .nav-link{ padding: .8rem .25rem; }
  .wbsk-nav .nav-link::after{ left: .25rem; right: auto; width: 34px; }
  .nav-cta{ margin-top: .85rem; }
  .btn-gold{ justify-content: center; width: 100%; }
}

/* tablet: button poori chaurai na le — sirf phone pe full-width */
@media (min-width: 576px) and (max-width: 991.98px){
  .btn-gold{ width: auto; padding: .8rem 2.2rem; }
  .nav-cta{ align-self: flex-start; }

  .hero-indicators{ bottom: 12px; gap: 8px; }
  .hero-indicators button{ width: 22px; }
  .hero-indicators button.active{ width: 40px; }
}

/* =========================================================
   MOBILE HERO — alag portrait banners (Slider N mobile.png)
   Ye banners khud poore design hain (bara text + CTA), isliye
   yahan na crop hai na HTML caption — bas asli ratio par dikhao.
   ========================================================= */

@media (max-width: 767.98px){
  /* arrows hata do — banner ke text par aa jate hain, swipe kaafi hai */
  .hero-arrow{ display: none; }

  /* mobile par ab alag banners hain (images/slider1/Mobile/) jo 1201x1309 ke
     hain — 430px chaurai par ~469px height, yani screen ka taqreeban aadha.
     Koi crop nahi hoti. */
  .hero-indicators{ bottom: 14px; }

  /* indicators banner ke neeche wale hisse par na chadhein */
  .hero-indicators{ bottom: 14px; }
}

@media (max-width: 575.98px){
  .navbar-brand{ gap: .6rem; max-width: calc(100% - 62px); }
  .brand-mark{ width: 44px; height: 44px; }
  .brand-name{ font-size: .95rem; }
  .is-scrolled .brand-name{ font-size: .95rem; }
  .brand-sub{ font-size: .44rem; letter-spacing: .07em; }

  .hero-indicators{ bottom: 8px; }
  .hero-indicators button{ height: 2px; }
  .wa-float{ right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .wa-float svg{ width: 26px; height: 26px; }
  .temp-next{ padding: 80px 18px; }
}

/* bohot chhoti screens — tagline hata do, warna 2 lines mein tootti hai */
@media (max-width: 359.98px){
  .brand-sub{ display: none; }
  .brand-name{ font-size: .88rem; line-height: 1.25; }
  .brand-mark{ width: 40px; height: 40px; }
  .is-scrolled .brand-mark{ width: 38px; height: 38px; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* =========================================================
   HAIR TRANSPLANT PAGES (hair-transplant / methods / blogs)
   ========================================================= */

/* ---- page ka upar wala hissa ---- */

.page-head{
  position: relative;
  overflow: hidden;
  /* nav-h isliye zaroori hai ke navbar fixed hai — us ke ilawa upar/neeche
     ki khali jagah kam rakhi hai */
  padding: calc(var(--nav-h) + 28px) 0 28px;
  background: var(--dark);
  text-align: center;
}
.ph-glow{
  position: absolute;
  top: 50%;
  width: 460px; height: 460px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,92,.13) 0%, transparent 68%);
  pointer-events: none;
}
.ph-glow-l{ left: -200px; }
.ph-glow-r{ right: -200px; }

.ph-inner{ position: relative; max-width: 760px; margin: 0 auto; padding: 0 18px; }

.ph-title{
  margin: 9px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 5.4vw, 3.4rem);
  font-weight: 500;
  color: #f2f0ec;
}
.ph-lead{
  margin: 12px auto 0;
  max-width: 60ch;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.62);
}

/* mobile par aur bhi tight */
@media (max-width: 767.98px){
  .page-head{ padding: calc(var(--nav-h) + 20px) 0 22px; }
  .ph-title{ margin-top: 7px; }
  .ph-lead{ margin-top: 10px; font-size: .85rem; line-height: 1.65; }
}

/* ---- Methods / Packages ke do bare cards ---- */

.ht-choose{ padding: 10px 0 clamp(48px, 6vw, 84px); background: var(--dark); }

.ht-grid{
  display: grid;
  gap: 26px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px){ .ht-grid{ grid-template-columns: 1fr 1fr; } }

.ht-card{
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(200,164,92,.16);
  text-decoration: none;
  isolation: isolate;
  transition: border-color .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
}
.ht-img{ position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; flex: 0 0 auto; }
.ht-img img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.ht-body{
  position: relative;
  z-index: 2;
  display: block;
  flex: 1 1 auto;
  padding: 20px 22px 24px;
  background: var(--dark-2);
}
.ht-title{
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: #fff;
  line-height: 1.2;
}
.ht-sub{
  display: block;
  margin-top: 8px;
  font-size: .8rem;
  font-weight: 300;
  letter-spacing: .04em;
  color: rgba(255,255,255,.7);
}

.ht-card:hover,
.ht-card:focus-visible{
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0,0,0,.55);
}
.ht-card:hover .ht-img img{ transform: scale(1.07); }
.ht-card:hover .svc-rule{ width: 62px; }

/* ---- gol gold arrow (cards par) ---- */

.mth-go{
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(11,14,19,.4);
  opacity: 0;
  transform: translate(6px, -6px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), background-color .45s var(--ease);
}
.mth-go svg{
  width: 16px; height: 16px;
  fill: none; stroke: var(--gold);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .45s var(--ease);
}
.ht-card:hover .mth-go,
.mth-card:hover .mth-go{ opacity: 1; transform: none; background: var(--gold); }
.ht-card:hover .mth-go svg,
.mth-card:hover .mth-go svg{ stroke: #14100a; }

/* ---- single slider ---- */

.ht-slider-sec{ padding: clamp(48px, 6vw, 84px) 0; background: var(--cream); }
.ht-slider-sec picture{ display: block; }

/* desktop/tablet: chaura banner (2.4:1) */
.ht-slide-img{
  display: block;
  width: 100%;
  aspect-ratio: 2.4 / 1;
  object-fit: cover;
}
/* phone: portrait wala version — warna banner sirf ~179px lamba reh jata hai */
@media (max-width: 767.98px){
  .ht-slide-img{ aspect-ratio: 1201 / 1309; }
}

/* ---- 6 method cards ka grid ---- */

.mth-sec{ padding: 10px 0 clamp(54px, 7vw, 92px); background: var(--dark); }

.mth-grid{
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;      /* mobile par bhi 2 per row */
}
@media (min-width: 992px){ .mth-grid{ grid-template-columns: repeat(3, 1fr); } }

.mth-card{
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(200,164,92,.16);
  text-decoration: none;
  isolation: isolate;
  transition: border-color .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
}
.mth-img{ position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; flex: 0 0 auto; }
.mth-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.mth-img-empty{
  background:
    radial-gradient(circle at 50% 40%, rgba(200,164,92,.12) 0%, transparent 62%),
    var(--dark-2);
}
.mth-body{
  position: relative;
  z-index: 2;
  display: block;
  flex: 1 1 auto;
  padding: 18px 20px 20px;
  background: var(--dark-2);
}
.mth-name{
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: #fff;
  line-height: 1.2;
}
.mth-sub{
  display: block;
  margin-top: 6px;
  font-size: .76rem;
  font-weight: 300;
  letter-spacing: .04em;
  color: rgba(255,255,255,.65);
}

.mth-card:hover,
.mth-card:focus-visible{
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(0,0,0,.5);
}
.mth-card:hover .mth-img img{ transform: scale(1.08); }
.mth-card:hover .svc-rule{ width: 62px; }

.mth-card.is-soon{ opacity: .55; pointer-events: none; }

/* ---- blog / article ---- */

.bl-sec{ padding: clamp(46px, 6vw, 82px) 0; background: var(--cream); }

.bl-article{
  max-width: 780px;
  margin: 0 auto;
  color: #33383f;
}

.bl-div{                 /* ENGLISH VERSION / اردو ورژن jaise dividers */
  margin: 54px 0 26px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(143,109,47,.3);
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.bl-article > .bl-div:first-child{ margin-top: 0; }

.bl-h{
  margin: 34px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.8vw, 1.6rem);
  font-weight: 600;
  line-height: 1.3;
  color: #171a20;
}

/* Word ki Heading1 / Title — bari heading */
.bl-h2{
  margin-top: 44px;
  font-size: clamp(1.45rem, 3.4vw, 2rem);
}
.bl-article > .bl-h:first-child,
.bl-article > .bl-h2:first-child{ margin-top: 0; }

/* Word ke line breaks (<w:br>) — point agli line par hi rahe */
.bl-article br{ line-height: 2.4; }

/* paragraph ke andar ka bold/italic jaisa file mein hai */
.bl-article strong{ font-weight: 600; color: #22262c; }
.bl-article em{ font-style: italic; }

.bl-article p{
  margin: 0 0 16px;
  font-size: .96rem;
  font-weight: 300;
  line-height: 1.9;
  color: #4a4f57;
}

.bl-list{
  margin: 0 0 20px;
  padding-left: 20px;
  list-style: none;
}
.bl-list li{
  position: relative;
  margin-bottom: 10px;
  padding-left: 16px;
  font-size: .93rem;
  font-weight: 300;
  line-height: 1.8;
  color: #4a4f57;
}
.bl-list li::before{
  content: "";
  position: absolute;
  left: 0; top: .78em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Urdu — Nastaliq, dayein se bayein */
.bl-article .ur{
  font-family: "Noto Nastaliq Urdu", var(--sans);
  font-size: .95rem;
  line-height: 2.6;
  text-align: right;
}
.bl-list li.ur{ padding-left: 0; padding-right: 16px; }
.bl-list li.ur::before{ left: auto; right: 0; }
.bl-h[dir="rtl"]{ text-align: right; font-family: "Noto Nastaliq Urdu", var(--serif); line-height: 2; }

.bl-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(143,109,47,.25);
}

@media (max-width: 575.98px){
  .ht-title{ font-size: 1.6rem; }

  /* 2 cards ek row mein — is liye card chhota, text bhi chhota */
  .mth-grid{ gap: 13px; }
  .mth-body{ padding: 13px 13px 15px; }
  .mth-name{ font-size: 1.12rem; }
  .mth-sub{ font-size: .66rem; line-height: 1.45; margin-top: 4px; }
  .mth-body .svc-rule{ width: 22px; margin-bottom: 8px; }

  .bl-cta .btn-gold,
  .bl-cta .btn-line{ width: 100%; justify-content: center; }
}

/* Word ki apni alignment (w:jc) */
.bl-article .ta-c{ text-align: center; }
.bl-article .ta-j{ text-align: justify; }

/* =========================================================
   RESULTS GALLERY (results.html)
   ========================================================= */

.rg-sec{ padding: 10px 0 clamp(54px, 7vw, 92px); background: var(--dark); }

.rg-grid{
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;          /* mobile: 2 per row */
}
@media (min-width: 768px){ .rg-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px){ .rg-grid{ grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.rg-item{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(200,164,92,.16);
  cursor: zoom-in;
  transition: border-color .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
}
.rg-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}
.rg-item:hover,
.rg-item:focus-visible{
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(0,0,0,.5);
}
.rg-item:hover img{ transform: scale(1.05); }

/* bari karne ka ishara */
.rg-zoom{
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(11,14,19,.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
.rg-item:hover .rg-zoom{ opacity: 1; transform: none; }
.rg-zoom svg{
  width: 15px; height: 15px;
  fill: none; stroke: var(--gold);
  stroke-width: 1.8; stroke-linecap: round;
}

/* =========================================================
   LIGHTBOX — card bara kar ke dekhne ke liye
   ========================================================= */

.lb{
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(6,8,11,.94);
  backdrop-filter: blur(6px);
}
.lb.is-open{ display: grid; animation: lbIn .3s var(--ease); }
@keyframes lbIn{ from{ opacity: 0; } to{ opacity: 1; } }

.lb-img{
  max-width: min(96vw, 900px);
  max-height: 88vh;
  width: auto; height: auto;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 30px 70px rgba(0,0,0,.7);
}

.lb-btn{
  position: absolute;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: rgba(11,14,19,.75);
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.lb-btn:hover{ background: var(--gold); border-color: var(--gold); }
.lb-btn svg{
  width: 20px; height: 20px;
  fill: none; stroke: var(--gold);
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .3s var(--ease);
}
.lb-btn:hover svg{ stroke: #14100a; }

.lb-close{ top: 18px; right: 18px; }
.lb-prev { left: 18px;  top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

.lb-count{
  position: absolute;
  bottom: 18px; left: 0; right: 0;
  text-align: center;
  font-size: .74rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.55);
}

@media (max-width: 575.98px){
  .rg-grid{ gap: 12px; }
  .lb{ padding: 10px; }
  .lb-btn{ width: 40px; height: 40px; }
  .lb-close{ top: 10px; right: 10px; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
  .lb-img{ max-height: 78vh; }
}

/* body scroll band jab lightbox khula ho */
body.lb-open{ overflow: hidden; }

/* home page — "View All Results" button */
.rg-cta{ margin-top: clamp(26px, 3.5vw, 40px); text-align: center; }
.rg-cta .btn-line{ border-color: rgba(143,109,47,.4); }

/* results card ka caption — sirf naam, halka aur saaf */
.rg-cap{
  display: block;
  flex: 1 1 auto;
  padding: 13px 14px 15px;
  text-align: left;
  background: var(--dark-2);
}
.rg-rule{
  display: block;
  width: 22px; height: 1px;
  margin-bottom: 8px;
  background: var(--gold);
  transition: width .45s var(--ease);
}
.rg-item:hover .rg-rule{ width: 46px; }
.rg-name{
  display: block;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.35;
}

/* Load More */
.rg-item.is-hidden{ display: none; }

.rg-more{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: clamp(30px, 4vw, 46px);
}
.rg-more.is-done #loadMore{ display: none; }
.rg-shown{
  font-size: .7rem;
  letter-spacing: .22em;
  color: rgba(255,255,255,.4);
}
.rg-shown b{ color: var(--gold); font-weight: 500; }

@media (max-width: 575.98px){
  .rg-cap{ padding: 10px 11px 12px; }
  .rg-name{ font-size: .68rem; letter-spacing: .1em; }
}

/* =========================================================
   RESULTS PAGE — "apni bari" wala CTA
   ========================================================= */

.rg-book{
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 7vw, 88px) 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(200,164,92,.16);
  text-align: center;
}
.rgb-glow{
  position: absolute;
  left: 50%; top: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,92,.13) 0%, transparent 62%);
  pointer-events: none;
}
.rgb-inner{ position: relative; max-width: 720px; margin: 0 auto; padding: 0 18px; }

.rgb-title{
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.4vw, 2.7rem);
  font-weight: 500;
  line-height: 1.25;
  color: #f2f0ec;
}
.rgb-lead{
  margin: 16px auto 0;
  max-width: 52ch;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,.62);
}
.rgb-cta{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.rgb-note{
  margin: 24px 0 0;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

@media (max-width: 575.98px){
  .rgb-cta .btn-gold,
  .rgb-cta .btn-ghost{ width: 100%; justify-content: center; }
  .rgb-lead{ font-size: .88rem; }
}
