/* ============================================================
   ROOT VARIABLES
============================================================ */
:root {
  --pink:        #F8C8DC;
  --pink-deep:   #e89ab8;
  --lavender:    #CBAACB;
  --lav-deep:    #9d74b0;
  --gold:        #C9973A;
  --gold-light:  #F7E7CE;
  --gold-bright: #f0b429;
  --white:       #FFFFFF;
  --cream:       #fdf8f5;
  --text:        #2a1a2a;
  --text-mid:    #5a3a5a;
  --text-light:  #8a6a8a;
  --r-lg:        22px;
  --r-xl:        36px;
  --r-pill:      999px;
}

/* ============================================================
   BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  /* cursor: none; */
}

/* ============================================================
   CUSTOM CURSOR
============================================================ */
#cursor-dot, #cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .08s;
}
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  transition: width .25s, height .25s, opacity .25s, border-color .25s;
}
.cursor-hover #cursor-ring {
  width: 54px; height: 54px;
  border-color: var(--pink-deep);
  opacity: .7;
}

/* ============================================================
   LOADER
============================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  background: #1a0d1a;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
#page-loader.hide { opacity: 0; visibility: hidden; }
.loader-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--pink);
  letter-spacing: 4px;
  margin-bottom: 2.5rem;
  animation: loader-brand-pulse 1.5s ease-in-out infinite;
}
.loader-brand span { color: var(--gold); }
@keyframes loader-brand-pulse {
  0%,100% { opacity: .6; }
  50%      { opacity: 1; }
}
.loader-bar-wrap {
  width: 200px; height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  border-radius: 2px;
  animation: loader-fill 2s ease forwards;
}
@keyframes loader-fill { from { width: 0; } to { width: 100%; } }
.loader-petals { display: flex; gap: 8px; margin-bottom: 2rem; }
.petal {
  width: 10px; height: 10px;
  background: var(--pink);
  border-radius: 50% 0 50% 0;
  animation: petal-spin 1.4s ease-in-out infinite;
}
.petal:nth-child(2) { animation-delay: .2s; background: var(--lavender); }
.petal:nth-child(3) { animation-delay: .4s; background: var(--gold-light); }
.petal:nth-child(4) { animation-delay: .6s; background: var(--pink-deep); }
@keyframes petal-spin {
  0%,100% { transform: rotate(0) scale(1); opacity: .6; }
  50%      { transform: rotate(180deg) scale(1.4); opacity: 1; }
}

/* ============================================================
   FLOATING ORBS (background mood)
============================================================ */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  animation: orb-drift linear infinite;
}
.orb-1 { width: 500px; height: 500px; background: rgba(248,200,220,.25); top: -120px; right: -100px; animation-duration: 18s; }
.orb-2 { width: 400px; height: 400px; background: rgba(203,170,203,.2); bottom: 10%; left: -120px; animation-duration: 22s; animation-delay: -8s; }
.orb-3 { width: 300px; height: 300px; background: rgba(247,231,206,.2); top: 40%; right: 5%; animation-duration: 15s; animation-delay: -4s; }
@keyframes orb-drift {
  0%,100% { transform: translateY(0) scale(1); }
  33%      { transform: translateY(-30px) scale(1.04); }
  66%      { transform: translateY(20px) scale(.97); }
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar-sky {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(248,200,220,.25);
  transition: box-shadow .4s, background .4s;
  padding: 1rem 0;
}
.navbar-sky.scrolled {
  box-shadow: 0 8px 40px rgba(203,170,203,.2);
  background: rgba(255,255,255,.95);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-logo em { color: var(--gold); font-style: normal; }
.nav-logo-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 3px 3px;
  vertical-align: middle;
}
.nav-item-link {
  font-size: .83rem;
  font-weight: 500;
  color: var(--text-mid) !important;
  letter-spacing: .4px;
  padding: .4rem 1rem !important;
  position: relative;
  transition: color .3s;
}
.nav-item-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 1.5px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  transform: scaleX(0);
  transition: transform .3s ease;
  border-radius: 2px;
}
.nav-item-link:hover { color: var(--gold) !important; }
.nav-item-link:hover::after { transform: scaleX(1); }
.btn-nav {
  font-size: .82rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), #e8a830);
  color: #fff !important;
  border: none;
  border-radius: var(--r-pill);
  padding: .5rem 1.5rem;
  letter-spacing: .5px;
  transition: box-shadow .35s, transform .25s;
  text-decoration: none;
  display: inline-block;
}
.btn-nav:hover {
  box-shadow: 0 0 24px rgba(201,151,58,.5), 0 6px 20px rgba(201,151,58,.25);
  transform: translateY(-2px);
}

/* ============================================================
   HERO
============================================================ */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg,
    #fff5fa 0%,
    #fce4ef 20%,
    #f8c8dc 40%,
    #ddbde8 65%,
    #cbaacb 85%,
    #b890c8 100%
  );
  z-index: 0;
}
/* Diagonal ribbon */
.hero-ribbon {
  position: absolute;
  bottom: -80px;
  left: -10%;
  right: -10%;
  height: 200px;
  background: #fff;
  transform: rotate(-3deg);
  z-index: 2;
}
/* Floating petals */
.hero-petal {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: .18;
  animation: hero-petal-float ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes hero-petal-float {
  0%,100% { transform: rotate(0deg) translateY(0); }
  50%      { transform: rotate(20deg) translateY(-20px); }
}
canvas#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 3; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(201,151,58,.35);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  padding: .4rem 1.2rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  animation: blink-dot 2s ease infinite;
}
@keyframes blink-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.6); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #1a0d1a;
}
.hero-title-italic {
  font-style: italic;
  color: transparent;
  background: linear-gradient(135deg, var(--gold), #e8a830, var(--pink-deep));
  -webkit-background-clip: text;
  background-clip: text;
  display: block;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: var(--text-mid);
  letter-spacing: 1px;
}
.hero-divider-line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.btn-glow-gold {
  background: linear-gradient(135deg, #d4a031, #f0b429, #c9893a);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  padding: .85rem 2.4rem;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .6px;
  transition: box-shadow .4s, transform .3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}
.btn-glow-gold::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold-bright), var(--pink), var(--gold));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity .4s;
  animation: btn-border-spin 3s linear infinite;
}
.btn-glow-gold:hover {
  color: #fff;
  box-shadow: 0 0 40px rgba(201,151,58,.6), 0 8px 32px rgba(201,151,58,.3);
  transform: translateY(-3px) scale(1.03);
}
.btn-glow-gold:hover::before { opacity: 1; }
@keyframes btn-border-spin {
  from { filter: hue-rotate(0deg); }
  to   { filter: hue-rotate(360deg); }
}
.btn-ghost-light {
  background: rgba(255,255,255,.4);
  color: var(--text);
  border: 1.5px solid rgba(42,26,42,.25);
  border-radius: var(--r-pill);
  padding: .83rem 2.4rem;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .5px;
  backdrop-filter: blur(6px);
  transition: background .35s, border-color .35s, color .35s, transform .3s, box-shadow .35s;
  display: inline-block;
  text-decoration: none;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.7);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(203,170,203,.25);
}

/* Hero image frame */
.hero-img-frame {
  position: relative;
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 44px;
  background: linear-gradient(135deg, var(--pink), var(--lavender), var(--gold-light));
  z-index: -1;
  animation: frame-rotate 6s linear infinite;
}
@keyframes frame-rotate {
  0%   { filter: hue-rotate(0deg) brightness(1); }
  50%  { filter: hue-rotate(20deg) brightness(1.1); }
  100% { filter: hue-rotate(0deg) brightness(1); }
}
.hero-img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
  filter: brightness(1.03) saturate(1.1);
  transition: transform .6s ease;
}
.hero-img-frame:hover img { transform: scale(1.03); }
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: .9rem 1.2rem;
  box-shadow: 0 12px 40px rgba(120,80,140,.15);
  animation: float-card 4s ease-in-out infinite;
}
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero-float-card-1 { bottom: 30px; left: -20px; }
.hero-float-card-2 { top: 40px; right: -20px; }
.fcard-icon { font-size: 1.5rem; }
.fcard-num { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--text); }
.fcard-label { font-size: .72rem; color: var(--text-light); font-weight: 500; }
.fcard-stars { color: #f5b800; font-size: .8rem; }

/* scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.scroll-cue span {
  font-size: .68rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid var(--text-mid);
  border-radius: 12px;
  position: relative;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scroll-anim 1.8s ease infinite;
}
@keyframes scroll-anim {
  0%   { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ============================================================
   SECTION SHARED
============================================================ */
.section-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}
.section-title-main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
.gold-underline {
  display: inline-block;
  position: relative;
}
.gold-underline::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  border-radius: 2px;
  animation: underline-grow .8s ease forwards;
  transform-origin: left;
}
@keyframes underline-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.section-desc {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.85;
  font-weight: 300;
}

/* Scroll reveal */
.sr { opacity: 0; transform: translateY(50px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.sr.sr-left  { transform: translateX(-50px); }
.sr.sr-right { transform: translateX(50px); }
.sr.sr-scale { transform: scale(.92); }
.sr.in { opacity: 1; transform: none; }
.sr-d1 { transition-delay: .1s; }
.sr-d2 { transition-delay: .2s; }
.sr-d3 { transition-delay: .3s; }
.sr-d4 { transition-delay: .4s; }
.sr-d5 { transition-delay: .5s; }
.sr-d6 { transition-delay: .6s; }

/* ============================================================
   MARQUEE STRIP
============================================================ */
.marquee-strip {
  background: linear-gradient(90deg, #1a0d1a, #2e1030, #1a0d1a);
  overflow: hidden;
  padding: .85rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee-scroll 20s linear infinite;
  white-space: nowrap;
}
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(248,200,220,.7);
  letter-spacing: 1px;
  flex-shrink: 0;
}
.marquee-dot { color: var(--gold); margin: 0 1rem; }

/* ============================================================
   ABOUT
============================================================ */
.about-section { background: var(--cream); overflow: hidden; }
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
  box-shadow: 0 32px 80px rgba(120,60,120,.18);
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-radius: var(--r-xl);
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.about-shape {
  position: absolute;
  top: -20px; left: -20px;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  border-radius: 50% 0 50% 0;
  opacity: .45;
  animation: shape-spin 12s linear infinite;
}
@keyframes shape-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.about-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  color: #3a1a3a;
  font-size: .78rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: .35rem 1rem;
  letter-spacing: .3px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(248,200,220,.12);
  border: 1px solid rgba(248,200,220,.3);
  transition: background .3s, transform .3s, box-shadow .3s;
}
.about-feature:hover {
  background: rgba(248,200,220,.22);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(203,170,203,.2);
}
.about-feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: #3a1a3a;
}

/* ============================================================
   SERVICES
============================================================ */
.services-section { background: #fff; }
.service-card-new {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(203,170,203,.2);
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s;
  cursor: default;
  background: #fff;
  height: 100%;
}
.service-card-new:hover {
  transform: translateY(-14px) scale(1.01);
  box-shadow: 0 32px 72px rgba(203,170,203,.35);
}
.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.service-card-new:hover .service-img { transform: scale(1.07); }
.service-img-wrap { overflow: hidden; }
.service-body {
  padding: 1.6rem;
}
.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--pink);
  line-height: 1;
  margin-bottom: .3rem;
  opacity: .6;
}
.service-name-new {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .6rem;
}
.service-desc-new {
  font-size: .84rem;
  color: var(--text-light);
  line-height: 1.78;
}
.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-top: 1rem;
  transition: gap .3s;
}
.service-cta-link:hover { gap: .7rem; color: var(--gold); }
.service-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  padding: .3rem .9rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .5px;
  border: 1px solid rgba(201,151,58,.25);
}

/* ============================================================
   GALLERY
============================================================ */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.g-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1 / 1;   /* sab items square rahenge */
}

.g-item:nth-child(1) {
  aspect-ratio: 2 / 2;   /* jo 2 row span kar raha hai uska ratio adjust */
}

.g-item:nth-child(4) {
  aspect-ratio: 2 / 2;   /* jo 2 column span kar raha hai uska ratio adjust */
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1), filter .4s;
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(203,170,203,.5));
  opacity: 0;
  transition: opacity .4s;
}
.g-item:hover img { transform: scale(1.1); filter: brightness(1.08) saturate(1.15); }
.g-item:hover::after { opacity: 1; }
.g-item-label {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  padding: .3rem .9rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .3px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.g-item:hover .g-item-label { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
    .navbar>.container{
       justify-content: center !important;
       gap: 10px;
    }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-item:nth-child(1) { grid-row: span 1; }
  .g-item:nth-child(4) { grid-column: span 1; }
}

/* ============================================================
   STATS
============================================================ */
.stats-section {
  background: linear-gradient(135deg, #1a0d1a 0%, #2e1a38 50%, #1a0d2a 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F8C8DC' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-card-dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(248,200,220,.12);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: background .3s, border-color .3s, transform .4s;
  position: relative;
  overflow: hidden;
}
.stat-card-dark::before {
  content: '';
  position: absolute;
  top: -60%; left: -60%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(248,200,220,.08), transparent 30%);
  animation: card-spin 8s linear infinite;
}
@keyframes card-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.stat-card-dark:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(248,200,220,.3);
  transform: translateY(-6px);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-suffix { font-size: 2rem; }
.stat-icon-lg { font-size: 2rem; color: var(--pink); margin-bottom: .8rem; }
.stat-lbl {
  font-size: .85rem;
  color: rgba(248,200,220,.7);
  font-weight: 500;
  letter-spacing: .5px;
  margin-top: .5rem;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section { background: #fff; }
.testi-bg-blob {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(248,200,220,.3), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: blob-drift 10s ease-in-out infinite;
}
@keyframes blob-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(30px,-20px) scale(1.05); }
}
.testi-card {
  background: linear-gradient(135deg, rgba(248,200,220,.15), rgba(203,170,203,.08));
  border: 1px solid rgba(248,200,220,.35);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.8rem;
  text-align: center;
  backdrop-filter: blur(6px);
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.testi-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: var(--pink);
  opacity: .2;
  position: absolute;
  top: -20px; left: 20px;
  line-height: 1;
  pointer-events: none;
}
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.testi-name { font-size: .85rem; font-weight: 600; color: var(--gold); letter-spacing: .5px; margin-top: 1.2rem; }
.testi-loc  { font-size: .78rem; color: var(--text-light); }
.testi-stars { color: #f5b800; font-size: 1rem; letter-spacing: 3px; margin-bottom: 1rem; }
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--pink);
  margin: 0 auto 1rem;
  display: block;
}
/* Carousel arrows styled */
.testi-carousel .carousel-control-prev,
.testi-carousel .carousel-control-next {
  width: 44px; height: 44px;
  background: rgba(248,200,220,.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}
.testi-carousel .carousel-control-prev { left: -20px; }
.testi-carousel .carousel-control-next { right: -20px; }
.testi-carousel .carousel-control-prev-icon,
.testi-carousel .carousel-control-next-icon {
  filter: invert(40%) sepia(40%) saturate(400%) hue-rotate(290deg);
}
.testi-dots .carousel-indicators {
  position: relative;
  margin-top: 1.5rem;
  bottom: auto;
}
.testi-dots .carousel-indicators button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink-deep);
  border: none;
  opacity: .3;
  transition: opacity .3s, transform .3s;
}
.testi-dots .carousel-indicators button.active { opacity: 1; transform: scale(1.3); background: var(--gold); }

/* ============================================================
   CTA
============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7e7ce 0%, #f5d07a 40%, #e8b96a 70%, #f7e7ce 100%);
  background-size: 200% 200%;
  animation: cta-bg-shift 6s ease-in-out infinite;
}
@keyframes cta-bg-shift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
}
.cta-title-main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #2a1a00;
  line-height: 1.2;
}
.cta-title-main em { font-style: italic; color: #7a4800; }
.btn-cta-dark {
  background: #1a0d1a;
  color: var(--gold-light);
  border: none;
  border-radius: var(--r-pill);
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .6px;
  transition: box-shadow .4s, transform .3s, background .3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}
.btn-cta-dark::before {
  content: '';
  position: absolute;
  top: 50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255,255,255,.15);
  transform: translateY(-50%) skewX(-25deg);
  transition: left .5s ease;
}
.btn-cta-dark:hover {
  color: #fff;
  box-shadow: 0 0 40px rgba(26,13,26,.3), 0 16px 48px rgba(26,13,26,.2);
  transform: translateY(-4px) scale(1.02);
}
.btn-cta-dark:hover::before { left: 120%; }

/* ============================================================
   FOOTER
============================================================ */
.footer-sky {
  background: linear-gradient(135deg, #1a0d1a 0%, #2a1030 100%);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--pink);
  letter-spacing: 1px;
  text-align: center;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(248,200,220,.5);
  font-size: .95rem;
}
.footer-h {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 1.2rem;
}
.footer-link-item {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .25s, padding-left .25s;
  margin-bottom: .55rem;
}
.footer-link-item:hover { color: var(--pink); padding-left: 6px; }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .7rem;
}
.footer-contact-row i { color: var(--pink); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-row a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .25s; }
.footer-contact-row a:hover { color: var(--pink); }
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(248,200,220,.2);
  color: rgba(248,200,220,.6);
  font-size: 1rem;
  text-decoration: none;
  transition: background .3s, border-color .3s, color .3s, transform .3s;
}
.footer-social-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #1a0d1a;
  transform: translateY(-4px) rotate(-5deg);
}
.footer-hr { border-color: rgba(255,255,255,.07); }
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.3); }

/* ============================================================
   MOBILE STICKY
============================================================ */
.mob-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1060;
  background: linear-gradient(135deg, var(--gold), #e8a830);
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
  text-decoration: none;
  box-shadow: 0 -8px 32px rgba(201,151,58,.35);
}
@media (max-width: 768px) {
  .mob-sticky { display: block; }
  body { padding-bottom: 56px; }
  .hero-float-card { display: none !important; }
  .hero-img-frame::before { inset: -6px; border-radius: 32px; }
  .about-img-accent { display: none; }
  .testi-carousel .carousel-control-prev { left: 0; }
  .testi-carousel .carousel-control-next { right: 0; }
}

/* ============================================================
   PROCESS / WHY US ROW
============================================================ */
.process-section { background: #fff; }
.process-step {
  text-align: center;
  padding: 2rem 1.2rem;
  position: relative;
   border: 1px solid rgba(248, 200, 220, 0.4);
    border-radius: 16px;
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 36px; right: -16%;
  width: 32%;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), transparent);
}
.process-step:last-child::after { display: none; }
.process-step:hover .process-num { 
    opacity: .9; color: var(--gold); 
}

.process-step:hover{
     transform: translateY(-8px);
  border-color: var(--pink);
}
@media (max-width: 768px) { .process-step::after { display: none; } }
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--pink);
  opacity: .4;
  line-height: 1;
  transition: opacity .3s, color .3s;
}


.process-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: -1rem auto .8rem;
  box-shadow: 0 8px 24px rgba(203,170,203,.3);
  transition: transform .35s, box-shadow .35s;
}
.process-step:hover .process-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 16px 40px rgba(203,170,203,.4);
}
.process-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
}
.process-desc { font-size: .83rem; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   HERO ENTRANCE ANIMATIONS
============================================================ */
.ha-1 { animation: ha-fade-up .9s cubic-bezier(.16,1,.3,1) .3s both; }
.ha-2 { animation: ha-fade-up .9s cubic-bezier(.16,1,.3,1) .55s both; }
.ha-3 { animation: ha-fade-up .9s cubic-bezier(.16,1,.3,1) .75s both; }
.ha-4 { animation: ha-fade-up .9s cubic-bezier(.16,1,.3,1) .95s both; }
.ha-5 { animation: ha-fade-up .9s cubic-bezier(.16,1,.3,1) 1.1s both; }
.ha-img { animation: ha-fade-left 1s cubic-bezier(.16,1,.3,1) .5s both; }
@keyframes ha-fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ha-fade-left {
  from { opacity: 0; transform: translateX(50px) scale(.95); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* ============================================================
   RIBBON BADGE
============================================================ */
.ribbon-badge {
  position: absolute;
  top: 28px; right: -8px;
  background: var(--gold);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 4px 0 0 4px;
}
.ribbon-badge::after {
  content: '';
  position: absolute;
  bottom: -6px; right: 0;
  border: 3px solid #a07010;
  border-top-color: transparent;
  border-right-color: transparent;
}

.since-badge {
  display: inline-block;
  background: #f6c36b;
  color: #2d1b2e;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 15px;
}
/* Community Badge Section */
.community-badge {
  padding: 40px 20px 0px;
  text-align: center;
}

.community-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.community-text {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a0d1a;
  font-weight: 600;
}

.community-badge img {
  max-width: 350px;
  height: auto;
  transition: transform 0.3s ease;
  background-color: #fdf8fb;
  border-radius: 50px;
}

.community-badge img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .community-badge img {
    max-width: 180px;
  }
}
.top-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}
span.phone.btn-cta-dark {
    padding: 8px 24px;
    font-size: .82rem;
}
.footer-contact-row.footer-hours {
    flex-direction: column;
}
.footer-contact-row.footer-hours i.bi.bi-clock-fill {
    margin-right: 11px;
}
span.phone.btn-cta-dark a {
    color: #fff;
    text-decoration: none;
}

.lt-title{
	
	color:#c9973a;
}


/* ===== Banner ===== */
.blog-banner {
    padding: 60px 0 30px;
}

.blog-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.blog-subtitle {
    color: #8a6a8a;
    font-size: 16px;
}

/* ===== Grid Layout ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* ===== Card ===== */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ===== Image ===== */
.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* ===== Content ===== */
.blog-content {
    padding: 20px;
}

.blog-heading {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-heading a {
    text-decoration: none;
    color: #222;
}

.blog-heading a:hover {
    color: #c9973a;
}

/* Paragraph */
.blog-excerpt {
    color: #8a6a8a;
    font-size: 14px;
    line-height: 1.6;
}

/* Button */
.blog-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: #c9973a;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 13px;
    transition: 0.3s ease;
}

.blog-btn:hover {
    background: #b8862f;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-banner {
    position: relative;
    padding: 100px 0;
    background: url('https://skynailsflorence.com/wp-content/uploads/2026/04/blog33-1.jpg') center/cover no-repeat;
    z-index: 1;
}

/* Overlay */
.blog-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 10, 30, 0.7), rgba(200, 151, 58, 0.4));
    z-index: -1;
}

/* Text white */
.blog-title,
.blog-subtitle {
    color: #fff;
}

/* Subtitle softer */
.blog-subtitle {
    opacity: 0.85;
}
.blog-listing {
    padding-bottom: 80px;
}
/* ===== Banner ===== */
.single-blog-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5d0e6, #e8c3ec);
}

.banner-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner-meta {
    color: #8a6a8a;
}

/* ===== Layout ===== */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

/* ===== Main Content ===== */
.blog-main {
    max-width: 100%;
}

/* Featured Image */
.featured-image img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 20px;
}

/* Title */
.post-title {
    font-size: 28px;
    margin-bottom: 15px;
}

/* Content */
.post-content {
    color: #8a6a8a;
    line-height: 1.8;
    font-size: 15px;
}

.post-content p {
    margin-bottom: 15px;
}

/* ===== Sidebar ===== */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    padding: 20px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Sidebar Title */
.sidebar-title {
    margin-bottom: 20px;
}

/* Sidebar Post */
.sidebar-post {
    margin-bottom: 15px;
}

.sidebar-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    align-items: center;
}

/* Thumbnail */
.sidebar-thumb img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

/* Title */
.sidebar-content h4 {
    font-size: 14px;
    color: #333;
    margin: 0;
    transition: 0.3s;
}

.sidebar-link:hover h4 {
    color: #c9973a;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: relative;
        top: auto;
    }
}

.single-blog-banner .banner-title {
    color: #fff;
}

.single-blog-banner .banner-meta {
    color: #fff;
    opacity: 0.9;
}
.sidebar-date {
    display: block;
    font-size: 12px;
    color: #8a6a8a;
    margin-bottom: 4px;
}
.single-blog-content a {
    color: #c9973a !important;
}
.single-blog-content a:hover {
    text-decoration: underline;
}
.single-blog-section .post-content p a,
.single-blog-section .post-content p a:link,
.single-blog-section .post-content p a:visited,
.single-blog-section .post-content p a b,
.single-blog-section .post-content p a strong {
    color: #c9973a !important;
}