/* =========================================================
   SHEETAL MAKEOVER — Luxury Beauty Studio
   Design tokens
   Background ivory #FBF7F1 | Card ivory #FFFDFB
   Champagne gold #C9A15F | Deep gold #A87C3F
   Blush pink #F1D9DC | Rose beige #E8D6C3
   Warm brown (text) #4A342A | Muted brown #7A6154
========================================================= */
:root {
  --ivory: #FBF7F1;
  --ivory-card: #FFFDFB;
  --gold: #C9A15F;
  --gold-deep: #A87C3F;
  --gold-light: #E8D2A6;
  --blush: #F1D9DC;
  --blush-deep: #E8B7BE;
  --rose-beige: #E8D6C3;
  --brown: #4A342A;
  --brown-soft: #7A6154;
  --white: #ffffff;

  --font-display: 'Playfair Display', serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Poppins', sans-serif;
  --font-serif-alt: 'Cormorant Garamond', serif;

  --shadow-soft: 0 20px 50px -20px rgba(74, 52, 42, 0.18);
  --shadow-card: 0 10px 30px -12px rgba(74, 52, 42, 0.14);
  --ease: cubic-bezier(.19, 1, .22, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  /* Default cursor is now visible alongside custom cursor */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--brown);
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 300;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
}

section {
  position: relative;
}

::selection {
  background: var(--gold-light);
  color: var(--brown);
}

.script-text {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold-deep);
  line-height: 1;
  display: inline-block;
}

.eyebrow {
  font-family: var(--font-body);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 14px;
}

.eyebrow.center {
  text-align: center;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  color: var(--brown);
  line-height: 1.15;
}

.section-heading .script-text {
  font-size: 1.15em;
}

.section-heading.center {
  text-align: center;
}

.section-subtitle {
  color: var(--brown-soft);
  font-size: 1rem;
  max-width: 520px;
  margin-top: 14px;
}

.section-subtitle.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head {
  margin-bottom: 56px;
}

/* =========== SCROLLBAR / PROGRESS =========== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width .1s linear;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease;
  display: none;
}

@media (min-width: 769px) {

  .cursor-dot,
  .cursor-ring {
    display: block;
  }
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-deep);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-deep);
  transition: width .25s var(--ease), height .25s var(--ease), transform .06s linear, opacity .3s ease, border-color .25s ease;
}

.cursor-ring.hovering {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
  background: rgba(201, 161, 95, .08);
}

/* =========== PRELOADER =========== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.preloader-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(201, 161, 95, .25);
  border-top: 1px solid var(--gold-deep);
  border-radius: 50%;
  animation: spin 1.4s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.preloader-monogram {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold-deep);
  letter-spacing: 2px;
}

.preloader-monogram span {
  color: var(--brown);
}

.preloader-name {
  font-family: var(--font-body);
  letter-spacing: .3em;
  font-size: .7rem;
  text-transform: uppercase;
  color: var(--brown-soft);
}

/* =========== NAVBAR =========== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 26px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  flex: 1;
}

.nav-right {
  justify-content: flex-end;
}

.nav-link {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brown);
  position: relative;
  padding-bottom: 4px;
  transition: color .3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-deep);
  transition: width .35s var(--ease);
}

.nav-link:hover::after,
.nav-link.active-link::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--gold-deep);
}

.btn-book {
  border: 1px solid var(--gold-deep);
  padding: 10px 22px;
  border-radius: 30px;
}

.btn-book::after {
  display: none;
}

.btn-book:hover {
  background: var(--gold-deep);
  color: var(--white);
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 20px;
}

.logo-img {
  height: 160px;
  width: auto;
  object-fit: contain;
  transition: transform .3s ease;
}

.nav-logo:hover .logo-img {
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1200;
}

.hamburger span {
  width: 100%;
  height: 1.5px;
  background: var(--brown);
  transition: transform .35s var(--ease), opacity .3s ease, background .3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 78%;
  max-width: 340px;
  background: var(--ivory-card);
  z-index: 1100;
  box-shadow: -20px 0 50px -20px rgba(0, 0, 0, .2);
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  display: flex;
  align-items: center;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  width: 100%;
  padding: 0 44px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brown);
  display: inline-block;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .4s ease, transform .4s ease;
}

.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.open .mobile-link:nth-child(1) {
  transition-delay: .05s;
}

.mobile-menu.open li:nth-child(1) .mobile-link {
  transition-delay: .05s;
}

.mobile-menu.open li:nth-child(2) .mobile-link {
  transition-delay: .1s;
}

.mobile-menu.open li:nth-child(3) .mobile-link {
  transition-delay: .15s;
}

.mobile-menu.open li:nth-child(4) .mobile-link {
  transition-delay: .2s;
}

.mobile-menu.open li:nth-child(5) .mobile-link {
  transition-delay: .25s;
}

.mobile-menu.open li:nth-child(6) .mobile-link {
  transition-delay: .3s;
}

.mobile-menu.open li:nth-child(7) .mobile-link {
  transition-delay: .35s;
}

.mobile-book {
  font-family: var(--font-body) !important;
  font-size: .85rem !important;
  text-transform: uppercase;
  letter-spacing: .1em;
  border: 1px solid var(--gold-deep);
  padding: 12px 22px;
  border-radius: 30px;
  width: fit-content;
}

/* =========== BUTTONS =========== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 40px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn .arrow {
  position: relative;
  z-index: 2;
  transition: transform .35s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(5px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(120deg, var(--gold-deep), var(--gold));
  box-shadow: 0 14px 30px -14px rgba(168, 124, 63, .6);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: translateX(-120%) skewX(-15deg);
  transition: transform .6s ease;
}

.btn-primary:hover::before {
  transform: translateX(120%) skewX(-15deg);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px -14px rgba(168, 124, 63, .75);
}

.btn-outline {
  color: var(--brown);
  border: 1px solid var(--brown);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  transform: translateY(-3px);
}

.btn-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .6);
}

.btn-light:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* =========== HERO =========== */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 40px 60px;
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}

.hero-decor {
  position: absolute;
  pointer-events: none;
}

.hero-decor-sparkle {
  color: var(--gold);
  font-size: 1.2rem;
  animation: twinkle 3s ease-in-out infinite;
}

.sparkle-1 {
  top: 20%;
  right: 38%;
  animation-delay: .3s;
}

.sparkle-2 {
  bottom: 28%;
  right: 44%;
  animation-delay: 1.2s;
  font-size: .8rem;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: .25;
    transform: scale(.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.hero-text {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  color: var(--brown);
  line-height: 1.1;
}

.hero-heading span {
  display: block;
}

.hero-script {
  font-size: 1.2em;
  margin-top: 2px;
  transform: translateX(10px);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--brown);
  font-weight: 400;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Hero Features */
.hero-features {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.hf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.hf-icon {
  font-size: 1.4rem;
  font-style: normal;
  border: 1px solid rgba(201, 161, 95, .4);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #FFFDFB;
}

.hf-item span {
  font-size: 0.75rem;
  color: var(--brown-soft);
  line-height: 1.4;
  letter-spacing: 0.05em;
}

/* Hero Visual Right Side */
.hero-visual {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hv-circle-bg {
  position: absolute;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle at top right, #FBF7F1, #E8D2A6 150%);
  border-radius: 50%;
  z-index: 1;
  box-shadow: inset -10px -10px 40px rgba(0, 0, 0, 0.05);
}

.hv-ring {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 2px solid rgba(201, 161, 95, .6);
  border-radius: 50%;
  z-index: 0;
  left: 10px;
  top: 40px;
}

.hv-main-img {
  position: relative;
  z-index: 3;
  width: 110%;
  max-width: 520px;
  height: auto;
  bottom: -20px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.hv-badge {
  position: absolute;
  bottom: 80px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: #2A1A1E;
  border-radius: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(42, 26, 30, 0.2), 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hv-badge span {
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--gold-light);
  line-height: 1;
}

.hv-badge strong {
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 400;
  margin-top: 4px;
}

.hv-polaroid {
  position: absolute;
  background: #fff;
  padding: 8px 8px 30px 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 5;
  width: 140px;
  transition: transform 0.4s var(--ease);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hv-polaroid img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.hv-swiper-wrapper {
  position: absolute;
  top: 280px;
  /* Center of the 480px ring at top 40px */
  left: 490px;
  /* Right edge of the ring (left 10px + width 480px) */
  transform: translate(-50%, -50%);
  width: 150px;
  height: 480px;
  /* Tall enough for orbit */
  z-index: 10;
}

.heroSwiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hv-polaroid.hp-slide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.4s var(--ease);
}

.hv-polaroid.hp-slide:hover {
  transform: scale(1.1) !important;
}

/* =========== HERO HIGHLIGHTS =========== */
.hero-highlights {
  position: absolute;
  top: 60px;
  right: -80px; /* Adjust based on preference */
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}

.highlight-item:hover {
  transform: scale(1.05);
}

.highlight-ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  padding: 3px; /* Space for the gradient border */
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.highlight-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ivory); /* Creates the gap between image and ring */
}

.highlight-item span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--brown-dark);
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

/* =========== STORY MODAL =========== */
.story-modal {
  position: fixed;
  inset: 0;
  background: #111;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.story-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.story-progress-container {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  display: flex;
  gap: 4px;
  z-index: 10001;
}

.story-progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.story-progress-fill {
  height: 100%;
  width: 0%;
  background: #fff;
  transition: width 0.1s linear;
}

.story-close {
  position: absolute;
  top: 35px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10001;
  opacity: 0.8;
}

.story-close:hover {
  opacity: 1;
}

.story-nav {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: 10000;
  cursor: pointer;
}

.story-nav-left {
  left: 0;
}

.story-nav-right {
  right: 0;
}

.story-media {
  width: 100%;
  height: 100%;
  max-width: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Typical for stories */
}

/* =========== ANIMATIONS: reveal helpers =========== */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
  transition-delay: var(--d, 0s);
  filter: blur(6px);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-45px);
}

.reveal-right {
  transform: translateX(45px);
}

.reveal-scale {
  transform: scale(.92);
}

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-scale.in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0);
}

/* =========== ABOUT =========== */
.about {
  padding: 60px 40px 60px;
  background: var(--ivory);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.about-grid img {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.about-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-card);
  z-index: 5;
  position: relative;
}

.ab-img-1 {
  height: 260px;
  border-radius: 40px 12px 12px 12px;
  animation: float-subtle 6s ease-in-out infinite;
}

.ab-img-2 {
  height: 320px;
  border-radius: 12px 40px 12px 12px;
  margin-top: 40px;
  animation: float-subtle 7s ease-in-out infinite 1s;
}

.ab-img-3 {
  height: 320px;
  border-radius: 12px 12px 12px 40px;
  margin-top: -40px;
  animation: float-subtle 8s ease-in-out infinite 0.5s;
}

.ab-img-4 {
  height: 260px;
  border-radius: 12px 12px 40px 12px;
  animation: float-subtle 6.5s ease-in-out infinite 1.5s;
}

@keyframes float-subtle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-leaf {
  position: absolute;
  top: -40px;
  left: -40px;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: .7;
  transform: rotate(-15deg);
  z-index: 1;
}

.about-subtitle {
  font-family: var(--font-serif-alt);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brown-soft);
  margin: 14px 0 18px;
}

.about-desc {
  color: var(--brown-soft);
  max-width: 560px;
  font-size: .98rem;
}

.embossed-text {
  text-shadow:
    1px 1px 0px rgba(232, 210, 166, 0.5),
    2px 2px 0px rgba(201, 161, 95, 0.4),
    3px 3px 0px rgba(168, 124, 63, 0.3),
    4px 4px 8px rgba(74, 52, 42, 0.15);
  transform: translateZ(0);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 44px;
}

.feature-card {
  padding: 44px 24px 34px;
  position: relative;
  background: linear-gradient(180deg, var(--ivory-card) 0%, rgba(255, 253, 251, 0.6) 100%);
  border: 1px solid rgba(201, 161, 95, 0.25);
  border-radius: 140px 140px 16px 16px;
  box-shadow: 0 10px 30px rgba(74, 52, 42, 0.04);
  text-align: center;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  margin: 0 auto 20px;
  font-size: 1.2rem;
  transition: transform .5s var(--ease), background .5s var(--ease), color .5s var(--ease);
}

.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: .88rem;
  color: var(--brown-soft);
}

.feature-line {
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold-deep);
  margin: 18px auto 0;
  transition: width .5s var(--ease);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(74, 52, 42, 0.08);
  border-color: var(--gold);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(90deg);
  background: var(--gold);
  color: #fff;
}

.feature-card:hover .feature-line {
  width: 40px;
}

/* =========== SERVICES =========== */
.services {
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .55;
  background:
    radial-gradient(circle at 8% 12%, rgba(241, 217, 220, .7), transparent 40%),
    radial-gradient(circle at 94% 82%, rgba(232, 214, 195, .6), transparent 42%);
}

.services>* {
  position: relative;
  z-index: 1;
}

.packages-swiper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 60px; /* Space for pagination */
}
.packages-pagination .swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.5;
}
.packages-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold-deep);
}

.package-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(201, 161, 95, .3);
  border-radius: 30px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
  color: #fff;
  transition: transform .4s var(--ease), border-color .4s ease, box-shadow .4s ease;
  height: auto;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
}

.pkg-left {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(201, 161, 95, .2);
  padding-bottom: 20px;
}

.pkg-logo {
  width: 100px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(201, 161, 95, .4)) brightness(1.2);
}

.pkg-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 10px;
  line-height: 1.2;
}

.pkg-price {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  background: rgba(201, 161, 95, .15);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--gold);
  margin-bottom: 15px;
  display: inline-block;
}

.pkg-sub {
  font-family: var(--font-serif-alt);
  font-size: 0.95rem;
  font-style: italic;
  color: #bbb;
}

.pkg-right {
  width: 100%;
  text-align: left;
}

.pkg-right ul {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.pkg-right li {
  font-size: .95rem;
  color: #ddd;
  margin-bottom: 14px;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.pkg-right li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
  font-size: .8rem;
}

.pkg-right li strong {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 1rem;
}

.pkg-addons,
.pkg-brands {
  width: 100%;
  border-top: 1px solid rgba(201, 161, 95, .3);
  padding-top: 18px;
}

.pkg-addons p,
.pkg-brands p {
  font-size: .85rem;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pkg-addons .highlight {
  color: #fff;
  font-weight: 600;
}

@media (max-width:900px) {
  .package-card {
    flex-direction: column;
    padding: 30px 24px;
    gap: 30px;
    border-radius: 30px;
  }

  .pkg-left {
    border-right: none;
    border-bottom: 1px solid rgba(201, 161, 95, .2);
    padding-right: 0;
    padding-bottom: 30px;
  }

  .pkg-right li {
    font-size: .9rem;
  }
}

/* =========== OTHER SERVICES (GRID) =========== */
.other-services {
  padding: 80px 20px;
  position: relative;
  background-color: #fefcfb;
}

.os-grid-container {
  max-width: 1100px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.os-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 0 1 calc(25% - 16px);
  min-width: 240px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.os-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 161, 95, 0.1);
}

.os-icon {
  width: 54px;
  height: 54px;
  background: #fdf5f5; /* light pink background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid rgba(201, 161, 95, 0.1);
}

.os-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brown-dark);
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .os-card {
    flex: 0 1 calc(33.333% - 16px);
  }
}

@media (max-width: 768px) {
  .os-card {
    flex: 0 1 calc(50% - 16px);
  }
}

@media (max-width: 480px) {
  .os-card {
    flex: 0 1 100%;
  }
}

/* =========== OUR STORY (INSTAGRAM REELS) =========== */
.our-story {
  padding: 100px 40px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.reels-swiper {
  max-width: 1200px;
  margin: 20px auto 0;
  padding-bottom: 50px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  color: var(--gold-deep);
  background: var(--ivory-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--gold-deep);
  color: #fff;
}

@media (max-width: 768px) {
  .slider-nav {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 20px;
  }
}

.reel-wrapper {
  background: var(--ivory-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  aspect-ratio: 9/16;
  max-height: 580px;
  position: relative;
}

.reel-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(168, 124, 63, 0.15);
}

.reel-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
}

/* White box to hide the View Profile button at the top right */
.overlay-hide-profile-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 100px;
  height: 40px;
  background: #fff;
  z-index: 10;
}

/* White box to hide only the likes count at the bottom */
.overlay-hide-likes {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px; /* Covers the likes text while leaving icons above it visible */
  background: #fff;
  z-index: 10;
  border-radius: 0 0 20px 20px;
}

/* =========== PARALLAX BANNER =========== */
.parallax-banner {
  height: 70vh;
  min-height: 460px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  inset: -10% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 18, 14, .45), rgba(30, 18, 14, .6));
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.parallax-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 32px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

/* =========== WHY CHOOSE US =========== */
.why-choose {
  padding: 130px 40px;
  background: var(--ivory);
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 30px 10px;
  border-left: 1px solid rgba(201, 161, 95, .25);
}

.stat-item:first-child {
  border-left: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold-deep);
  display: block;
}

.stat-label {
  color: var(--brown-soft);
  font-size: .85rem;
  margin-top: 8px;
  letter-spacing: .03em;
}

/* =========== GALLERY (3D BOOK) =========== */
.gallery {
  padding: 60px 20px;
  background: var(--ivory);
  overflow: hidden;
}

.gallery-book-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 10px auto 0;
  perspective: 2500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 70px;
  animation: float-subtle 7s ease-in-out infinite;
}

.gallery-book {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: auto;
  aspect-ratio: 2 / 1.35;
  transform-style: preserve-3d;
  transform: rotateX(12deg);
}

.book-spine {
  position: absolute;
  top: 0;
  left: 50%;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, #a87c3f, #e8d2a6, #a87c3f);
  transform: translateX(-50%) translateZ(-10px);
  border-radius: 6px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.book-page {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  transform-style: preserve-3d;
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 4px 16px 16px 4px;
}

.page-front,
.page-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 4px 16px 16px 4px;
  overflow: hidden;
  background: var(--ivory-card);
  border: 8px solid var(--ivory);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15), inset 0 0 30px rgba(0, 0, 0, 0.05);
}

.page-back {
  transform: rotateY(180deg);
  border-radius: 16px 4px 4px 16px;
}

.page-front img,
.page-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, rgba(255, 255, 255, 0) 10%);
  pointer-events: none;
}

.page-back::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.15) 0%, rgba(255, 255, 255, 0) 10%);
  pointer-events: none;
}

.book-page.flipped {
  transform: rotateY(-180deg);
}

.book-controls {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 10;
}

.book-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ivory-card);
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}

.book-btn:hover {
  background: var(--gold-deep);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -8px rgba(168, 124, 63, 0.6);
}

/* =========== LIGHTBOX =========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 9, .94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: 82%;
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .4s ease, transform .4s ease;
}

.lightbox.open .lightbox-image {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--white);
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  transition: border-color .3s ease, transform .3s ease;
}

.lightbox-close:hover {
  border-color: var(--gold);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2.2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  transition: border-color .3s ease, background .3s ease;
}

.lightbox-nav:hover {
  border-color: var(--gold);
  background: rgba(201, 161, 95, .15);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* =========== TESTIMONIALS =========== */
.testimonials {
  padding: 130px 40px;
  background: linear-gradient(180deg, var(--ivory), var(--blush) 220%);
}

.testimonial-carousel {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform .6s var(--ease);
}

.testimonial-card {
  min-width: 100%;
  background: var(--ivory-card);
  border: 1px solid rgba(201, 161, 95, .2);
  border-radius: 22px;
  padding: 52px 44px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stars {
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 18px;
  font-size: 1rem;
}

.testimonial-quote {
  font-family: var(--font-serif-alt);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.5;
  margin-bottom: 28px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
  animation: float-subtle 5s ease-in-out infinite;
}

.testimonial-person h5 {
  font-family: var(--font-display);
  font-size: .95rem;
  text-align: left;
}

.testimonial-person span {
  font-size: .78rem;
  color: var(--brown-soft);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 34px;
}

.testi-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  color: var(--gold-deep);
  transition: background .3s ease, color .3s ease;
  font-size: 1rem;
}

.testi-btn:hover {
  background: var(--gold-deep);
  color: var(--white);
}

.testi-dots {
  display: flex;
  gap: 9px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(168, 124, 63, .3);
  transition: background .3s ease, transform .3s ease;
}

.testi-dot.active {
  background: var(--gold-deep);
  transform: scale(1.3);
}

/* =========== FAQ =========== */
.faq {
  padding: 130px 40px;
  background: var(--ivory);
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}

.faq-right img {
  border-radius: 20px 80px 20px 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gold-light);
}

.accordion {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid rgba(201, 161, 95, .25);
  border-radius: 14px;
  overflow: hidden;
  background: var(--ivory-card);
}

.accordion-head {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 500;
  color: var(--brown);
}

.accordion-icon {
  color: var(--gold-deep);
  font-size: 1.1rem;
  transition: transform .4s var(--ease);
}

.accordion-item.open .accordion-icon {
  transform: rotate(135deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}

.accordion-body p {
  padding: 0 24px 20px;
  color: var(--brown-soft);
  font-size: .88rem;
}

/* =========== FINAL CTA =========== */
.final-cta {
  padding: 150px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(241, 217, 220, .8), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(232, 214, 195, .8), transparent 45%),
    var(--ivory);
}

.cta-flower {
  position: absolute;
  color: var(--blush-deep);
  font-size: 2.2rem;
  opacity: .6;
  animation: float 8s ease-in-out infinite;
}

.cta-flower-1 {
  top: 14%;
  left: 8%;
}

.cta-flower-2 {
  bottom: 14%;
  right: 10%;
  animation-delay: 2s;
  color: var(--gold);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 18px;
}

.final-cta p {
  color: var(--brown-soft);
  margin-bottom: 38px;
  font-size: 1.02rem;
}

.final-cta .hero-buttons {
  justify-content: center;
}

/* =========== CONTACT BOOKING FORM =========== */
.contact-booking {
  background: #111;
  color: #fff;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.contact-booking-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.contact-booking-image {
  flex: 1 1 400px;
  position: relative;
  display: flex;
  justify-content: center;
}

.contact-booking-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.contact-booking-content {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
}

.contact-booking-content .section-heading {
  margin-bottom: 20px;
  text-align: left;
}

.contact-subtitle {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-form .form-row {
  display: flex;
  gap: 20px;
}

.booking-form .form-group {
  flex: 1;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: italic;
  outline: none;
  transition: border-color 0.3s ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
}

.booking-form .submit-btn {
  align-self: center;
  margin-top: 10px;
  background: #E8B7BE; /* Pinkish color matching screenshot vibe but using theme variable */
  color: #111;
  border: none;
  font-weight: 600;
  padding: 16px 40px;
}

.booking-form .submit-btn:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(232, 183, 190, 0.2);
}

@media (max-width: 768px) {
  .booking-form .form-row {
    flex-direction: column;
  }
}

/* =========== CONTACT INFO =========== */
.contact-info {
  padding: 80px 40px;
  background: var(--ivory);
  border-top: 1px solid rgba(201, 161, 95, .2);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-item {
  text-align: center;
  padding: 30px 14px;
  border-radius: 16px;
  transition: transform .4s var(--ease), background .4s ease;
}

.contact-item:hover {
  transform: translateY(-6px);
  background: var(--ivory-card);
  box-shadow: var(--shadow-card);
}

.contact-icon {
  font-size: 1.6rem;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 12px;
}

.contact-item h5 {
  font-family: var(--font-display);
  font-size: .95rem;
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--brown-soft);
  font-size: .85rem;
}

/* =========== FOOTER =========== */
.footer {
  background: #3C2A21;
  color: #E9DCCF;
  padding: 90px 40px 0;
}

.footer-grid.custom-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-contact-heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 30px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact-list .contact-icon {
  font-size: 1.2rem;
  color: #e21b5a; /* Matching the pinkish icon color from screenshot */
  margin-top: 3px;
}

.footer-contact-list p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact-list a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: var(--gold);
}

.social-profile-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #222;
}

.sp-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sp-avatar-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 3px;
  background: #ccc;
}

.sp-avatar-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.insta-gradient {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.yt-avatar {
  background: #ff0000;
}

.sp-info h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.sp-info p {
  font-size: 0.85rem;
  color: #666;
}

.sp-bio {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #444;
}

.sp-btn {
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff !important;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin-top: auto;
}

.sp-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.insta-btn {
  background: #0095f6; /* Instagram blue */
}

.yt-btn {
  background: #ff0000; /* YouTube red */
}

.footer-bottom {
  border-top: 1px solid rgba(233, 220, 207, .15);
  padding: 24px 0;
  text-align: center;
  font-size: .8rem;
  color: #A9927E;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width:1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    column-count: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo {
    padding: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-image-wrap {
    order: 1;
    margin-bottom: 20px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-divider,
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .stat-item:nth-child(3) {
    border-left: none;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-right {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:640px) {
  .nav-container {
    padding: 0 20px;
  }

  .hero {
    padding: 120px 0 40px;
  }

  .hero-container {
    padding: 0 24px;
  }

  .about,
  .services,
  .why-choose,
  .gallery,
  .testimonials,
  .faq,
  .final-cta {
    padding: 90px 20px;
  }

  .contact-info {
    padding: 60px 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .service-card {
    padding: 24px 12px;
  }

  .gallery-grid {
    column-count: 1;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .testimonial-card {
    padding: 38px 24px;
  }

  .testimonial-quote {
    font-size: 1.1rem;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
  }
}

/* =========== REDUCED MOTION =========== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .2s !important;
    scroll-behavior: auto !important;
  }

  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-image,
  .about-float-img,
  .cta-flower {
    animation: none;
  }
}