/* ==========================================
   SAKSHI MAKEOVERS - LUXURY DESIGN SYSTEM
   Palette: Lúmora Luxury — Plum & Gold
   - Deep Plum:      #2C1020
   - Dark Plum:      #3D1A2E
   - Plum Mid:       #6B3558
   - Mauve:          #8B6070
   - Warm Cream:     #F2EBE0
   - Ivory:          #FAF6F0
   - Antique Gold:   #C9A84C
   - Rich Gold:      #E2C068
   - Warm Sand:      #D4C4A8
   - Deep Charcoal:  #1A0D14
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-white: #FFFFFF;
  --color-porcelain: #FAF6F0;
  --color-cream: #F2EBE0;
  --color-cream-card: #FFFFFF;
  --color-sand: #E8DECE;
  --color-camel: #C9A84C;
  --color-gold: #C9A84C;
  --color-gold-light: #E2C068;
  --color-gold-dark: #A07830;
  --color-emerald: #6B3558;
  --color-emerald-deep: #2C1020;
  --color-moss: #3D1A2E;
  --color-sage: #6B3558;
  --color-sage-light: #F5EBF2;
  --color-olive-deep: #2C1020;
  --color-olive-darker: #1A0D14;
  --color-text-main: #2C1020;
  --color-text-muted: #6B3558;
  --color-text-light: #8B6070;
  
  /* BORDERS */
  --border-gold: #C9A84C;
  --border-dark: #2C1020;
  --border-emerald: #3D1A2E;
  --border-subtle: rgba(44, 16, 32, 0.35);
  
  /* SHADOWS */
  --shadow-soft: 0 10px 30px rgba(44, 16, 32, 0.15);
  --shadow-hover: 0 20px 45px rgba(44, 16, 32, 0.28);
  --shadow-gold: 0 10px 25px rgba(201, 168, 76, 0.35);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ==========================================
   KENBURNS SLIDER HERO (Tanya Arora Style)
========================================== */
.kenburns-hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kenburns-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.kenburns-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 20%;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.8s ease-in-out, transform 9s ease-out;
}

.kenburns-slide.active {
  opacity: 1;
  transform: scale(1);
}

.kenburns-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(44, 16, 32, 0.72) 0%, rgba(44, 16, 32, 0.42) 48%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 2;
}

.kenburns-caption {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 9rem 2rem 5rem;
}

.kenburns-caption-content {
  max-width: 680px;
  text-align: left;
}

.hero-cinematic-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #E6CA65;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-cinematic-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.12;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-cinematic-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: #EAE3D6;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

/* Tanya Arora Style Side Buttons */
.btn-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn-link-circle {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C5A059 0%, #A37E36 100%);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 0 8px rgba(197, 160, 89, 0.3), 0 15px 35px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
  animation: pulseBounce 3s infinite ease-in-out;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-link-circle:hover {
  transform: scale(1.12);
  background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
  box-shadow: 0 0 0 16px rgba(212, 175, 55, 0.45), 0 20px 45px rgba(0,0,0,0.6);
  color: #FFFFFF;
}

@keyframes pulseBounce {
  0%, 100% {
    box-shadow: 0 0 0 8px rgba(197, 160, 89, 0.3), 0 15px 35px rgba(0,0,0,0.5);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(197, 160, 89, 0.15), 0 20px 40px rgba(0,0,0,0.6);
  }
}

.hero-quick-pill {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: #FFFFFF;
  color: var(--color-olive-deep);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  transition: var(--transition);
}

.hero-quick-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-olive-deep);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* Header & Navigation */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(44, 16, 32, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: var(--transition);
}

.header.scrolled {
  position: fixed;
  box-shadow: 0 5px 20px rgba(44, 16, 32, 0.4);
  background: rgba(44, 16, 32, 0.97);
}

.top-bar {
  background: #1A0D14;
  color: var(--color-sand);
  font-size: 0.85rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 1.5rem;
}

.top-info a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-sand);
}

.top-info a:hover {
  color: var(--color-gold-light);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5)) brightness(1.25);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-olive-deep);
  letter-spacing: 0.02em;
}

.logo-text span {
  color: var(--color-gold);
  font-style: italic;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #FFFFFF;
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-gold-light);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #2C1020;
  border: 1.5px solid #C9A84C;
  border-radius: 16px;
  padding: 10px 0;
  min-width: 250px;
  box-shadow: 0 15px 35px rgba(44, 16, 32, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: #FAF6F0;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(201, 168, 76, 0.18);
  color: #E2C068;
  padding-left: 26px;
}

.dropdown-divider {
  height: 1px;
  background: rgba(201, 168, 76, 0.25);
  margin: 6px 0;
}

.dropdown-item.view-all-link {
  color: #E2C068;
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #FFFFFF;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary, .btn-gold {
  background: #2C1020 !important;
  color: #FAF6F0 !important;
  border: 1.5px solid #C9A84C !important;
  box-shadow: 0 6px 20px rgba(44, 16, 32, 0.35);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.btn-primary:hover, .btn-gold:hover {
  background: #3D1A2E !important;
  color: #E2C068 !important;
  border-color: #E2C068 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(44, 16, 32, 0.45);
}

.btn-outline, .btn-outline-gold, .btn-outline-dark {
  background: transparent;
  border: 1.5px solid #2C1020;
  color: #2C1020;
  font-weight: 700;
}

.btn-outline:hover, .btn-outline-gold:hover, .btn-outline-dark:hover {
  background: #2C1020;
  color: #E2C068;
  border-color: #2C1020;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 16, 32, 0.28);
}

/* Container & Sections */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

/* Glassmorphism Card with Dark Borders & Shadows */
.glass-card {
  background: var(--color-white);
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--border-dark);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.glass-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

/* ==========================================
   EDITORIAL IMPACT & TESTIMONIAL SECTION
========================================== */
.impact-section {
  background: var(--color-cream);
  padding: 7rem 0;
  border: none;
  position: relative;
  overflow: hidden;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.impact-col-left {
  display: flex;
  flex-direction: column;
}

.impact-tag {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-dark);
  margin-bottom: 1rem;
}

.impact-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  line-height: 1.15;
  color: var(--color-olive-deep);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.impact-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.impact-stats-row {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.stat-item h3 {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.impact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-olive-deep);
}

.impact-btn span.icon-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.impact-btn:hover span.icon-arrow {
  transform: translateX(4px);
  background: var(--color-olive-deep);
}

/* Middle Quotes Column */
.impact-col-middle {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-left: 1rem;
  border-left: 1px solid var(--border-subtle);
}

.quote-block {
  position: relative;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--color-gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: -0.5rem;
}

.quote-text {
  font-size: 1.05rem;
  color: var(--color-text-main);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.quote-author h5 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-olive-deep);
}

.quote-author p {
  font-size: 0.825rem;
  color: var(--color-text-muted);
}

/* Right Enhanced Artist Photo Column */
.impact-col-right {
  position: relative;
}

.artist-photo-container {
  position: relative;
  z-index: 1;
}

.artist-photo-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(59, 70, 40, 0.18);
  border: 1px solid var(--border-gold);
}

.artist-photo-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.artist-photo-wrapper:hover img {
  transform: scale(1.04);
}

.glass-overlay-card {
  position: absolute;
  top: -1.5rem;
  left: -2rem;
  width: 170px;
  height: 290px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
  z-index: 2;
}

.gold-glow-border {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 75%;
  height: 75%;
  border-radius: 24px;
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.35);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 992px) {
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .impact-col-middle {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border-subtle);
    padding-top: 2rem;
  }
  .glass-overlay-card {
    display: none;
  }
}

/* ==========================================
   LUXURY EDITORIAL FOOTER (Light Theme)
========================================== */
.footer {
  background: var(--color-porcelain);
  color: var(--color-olive-deep);
  padding: 5.5rem 0 2.5rem;
  border-top: 2px solid var(--color-olive-deep);
  position: relative;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 3.5rem;
}

.footer-brand-wrap img {
  height: 65px;
  width: auto;
  margin-bottom: 1.25rem;
  display: block;
}

.footer-brand-wrap p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 520px;
}

.footer-newsletter-wrap h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-olive-deep);
  margin-bottom: 0.8rem;
}

.footer-newsletter-wrap p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border-radius: 8px;
  border: 1.5px solid var(--border-dark);
  background: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-olive-deep);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.newsletter-btn {
  background: var(--color-olive-deep);
  color: var(--color-white);
  border: 1.5px solid var(--color-olive-deep);
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-olive-darker);
}

/* 4-Column Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

.footer-col h5 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-olive-deep);
  margin-bottom: 1.25rem;
  font-weight: 700;
  position: relative;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--color-gold);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.65rem;
}

.footer-col a {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1.5px solid var(--border-dark);
  color: var(--color-olive-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(10,21,16,0.12);
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-olive-darker);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

@media (max-width: 992px) {
  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Floating Action Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Modal Popup */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 45, 25, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--color-white);
  border-radius: 20px;
  width: 100%;
  max-width: 580px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-gold);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--color-cream);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-text-main);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--color-olive-deep);
  color: white;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-olive-deep);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid var(--color-sand);
  border-radius: 10px;
  background: var(--color-porcelain);
  color: var(--color-text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
  background: var(--color-white);
}

/* ==========================================
   BRIDAL SHOWCASE SLIDER
========================================== */
.bridal-showcase-section {
  padding: 90px 0 70px;
  background: #FAF6F0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(44, 16, 32, 0.08);
  border-bottom: 1px solid rgba(44, 16, 32, 0.08);
}

.bridal-showcase-section .section-tag {
  color: #C9A84C;
}

.bridal-showcase-section .section-title {
  color: #2C1020;
}

.bridal-showcase-section .section-subtitle {
  color: #6B5B65;
}

/* Outer wrapper — holds arrows, track, dots */
.bs-outer-wrap {
  position: relative;
  padding: 0 1rem;
  max-width: 1340px;
  margin: 0 auto;
}

.bs-arrow, .bs-dots, .bs-counter {
  display: none !important;
}

/* Overflow clip for the sliding track */
.bs-track-container {
  overflow: hidden;
  padding: 40px 10px;
}

/* The scrolling track */
.bs-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  align-items: center;
}

/* Each slide - side slides are scaled down */
.bs-slide {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(0.92);
  opacity: 0.8;
}

/* Center slide is enlarged & elevated */
.bs-slide.active-focus {
  transform: scale(1.12) !important;
  opacity: 1 !important;
  z-index: 10;
}

/* The card itself */
.bs-card {
  border-radius: 24px;
  overflow: hidden;
  background: #FFFFFF !important;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(44, 16, 32, 0.08);
  border: 1.5px solid rgba(201, 168, 76, 0.3) !important;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.bs-slide.active-focus .bs-card {
  box-shadow: 0 25px 60px rgba(44, 16, 32, 0.22), 0 0 0 2px #C9A84C !important;
  border-color: #C9A84C !important;
}

/* Image area */
.bs-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.05;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
}

.bs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.bs-card:hover .bs-img {
  transform: scale(1.05);
}

.bs-look-badge {
  display: none !important;
}

/* Bottom label strip */
.bs-card-label {
  padding: 4px 8px 8px;
  text-align: center;
  background: transparent !important;
}

.bs-card-stars {
  color: #C9A84C;
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
  font-weight: 700;
}

.bs-card-stars span {
  color: #2C1020;
  font-size: 0.78rem;
  margin-left: 4px;
}

.bs-card-label h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #2C1020 !important;
  margin: 4px 0 6px;
  line-height: 1.25;
  text-shadow: none !important;
}

.bs-card-label p {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: #5A4B55 !important;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}



/* Prev / Next Arrows */
.bs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2.5px solid var(--color-olive-deep);
  color: var(--color-olive-deep);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(44, 16, 32, 0.25);
}

.bs-arrow:hover {
  background: var(--color-emerald);
  color: var(--color-white);
  border-color: var(--color-emerald);
  transform: translateY(-60%) scale(1.1);
}

.bs-prev { left: 0; }
.bs-next { right: 0; }

/* Dots */
.bs-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.bs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(44, 16, 32, 0.25);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--color-olive-deep);
  padding: 0;
}

.bs-dot.active {
  background: var(--color-gold);
  border-color: var(--color-olive-deep);
  width: 30px;
  border-radius: 6px;
}

/* Slide counter */
.bs-counter {
  position: absolute;
  bottom: 1rem;
  right: 4.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-olive-deep);
  letter-spacing: 0.1em;
}

.bs-counter #bsCurrent {
  color: var(--color-emerald);
  font-size: 1.2rem;
}
  color: rgba(234,227,214,0.6);
  letter-spacing: 0.1em;
}

.bs-counter #bsCurrent {
  color: var(--color-gold-light);
  font-size: 1.1rem;
}

/* Responsive — tablet: show 2 cards */
@media (max-width: 1024px) {
  .bs-slide {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
  .bs-outer-wrap {
    padding: 0 3.5rem 4rem;
  }
}

/* Responsive — mobile: show 1 card */
@media (max-width: 640px) {
  .bs-slide {
    flex: 0 0 100%;
  }
  .bs-outer-wrap {
    padding: 0 3rem 4rem;
  }
  .bs-card {
    height: 400px;
  }
  .bs-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  .bs-counter {
    right: 3rem;
  }
}

/* ==========================================
   CONTACT US PAGE - LUXURY EDITORIAL LAYOUT
========================================== */
.contact-hero-banner {
  padding: 10rem 1.5rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(245,239,232,0.95) 0%, rgba(249,246,241,1) 100%),
              radial-gradient(circle at 50% 30%, rgba(214,189,159,0.25) 0%, transparent 70%);
  border-bottom: 1px solid var(--border-subtle);
}

.contact-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  color: var(--color-olive-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-hero-sub {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* 2-Column Info & Photos Grid */
.contact-split-section {
  padding: 5.5rem 0;
  background: var(--color-white);
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Image Composition with Overlapping Circle */
.contact-image-composition {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.contact-main-img-wrap {
  width: 80%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(61, 51, 42, 0.14);
  border: 1px solid var(--border-gold);
}

.contact-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.contact-circle-inset {
  position: absolute;
  top: 22%;
  right: 0%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 7px solid var(--color-white);
  box-shadow: 0 18px 40px rgba(61, 51, 42, 0.22);
  z-index: 2;
}

.contact-circle-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

/* Right Details Column */
.contact-details-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.contact-details-col h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-olive-deep);
  margin-bottom: 0.3rem;
}

.contact-details-col .address-sub {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.contact-details-col h4 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--color-olive-deep);
  margin-bottom: 0.4rem;
}

.contact-details-col .hours-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.call-now-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-sand) 100%);
  border: 1px solid var(--color-gold);
  color: var(--color-olive-deep);
  padding: 0.85rem 2.5rem;
  border-radius: 35px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  margin-bottom: 2.2rem;
  box-shadow: 0 6px 20px rgba(214, 189, 159, 0.35);
  transition: var(--transition);
}

.call-now-pill:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(214, 189, 159, 0.5);
}

.social-follow-wrap h5 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-olive-deep);
  margin-bottom: 1rem;
}

.social-icons-row {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
}

.social-circle-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-olive-deep);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(61, 51, 42, 0.15);
}

.social-circle-btn:hover {
  background: var(--color-gold);
  color: var(--color-olive-darker);
  transform: translateY(-3px) scale(1.08);
}

/* Full-width Section Divider Banner */
.contact-banner-divider {
  background: linear-gradient(135deg, #F5EFE8 0%, #F9F6F1 50%, #EADCC9 100%);
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.contact-banner-divider h2 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-olive-deep);
  margin-bottom: 0.5rem;
}

.contact-banner-divider p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* Form Section (Form on Left, Image composition on Right) */
.contact-form-section {
  padding: 5.5rem 0;
  background: var(--color-porcelain);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-styled-form {
  background: var(--color-white);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
}

.contact-styled-form .form-control {
  background: var(--color-porcelain);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
}

.contact-styled-form .form-control:focus {
  border-color: var(--color-gold);
  background: var(--color-white);
}

/* PERSUASIVE CALL TO ACTION BANNER */
.contact-cta-banner {
  background: linear-gradient(180deg, #EADCC9 0%, #F5EFE8 100%);
  padding: 5.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border-gold);
}

.contact-cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-olive-deep);
  margin-bottom: 1.8rem;
}

@media (max-width: 992px) {
  .contact-split-grid, .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-main-img-wrap {
    width: 88%;
    height: 380px;
  }
  .contact-circle-inset {
    width: 170px;
    height: 170px;
    top: 28%;
    right: 0%;
  }
  .contact-styled-form {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .section-title {
    font-size: 2.1rem;
  }
}



/* ==========================================
   EDITORIAL MAKEUP BANNER
========================================== */
.makeup-banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 2rem;
  border-top: 2px solid rgba(44, 16, 32, 0.12);
  border-bottom: 2px solid rgba(44, 16, 32, 0.12);
}

/* Full-bleed background image */
.makeup-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  /* Very light overlay so text is readable but image shows through */
  filter: brightness(1.05) saturate(0.9);
}

/* Soft warm semi-transparent overlay for text legibility on light bg */
.makeup-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(251, 249, 244, 0.55) 0%,
    rgba(255, 255, 255, 0.65) 40%,
    rgba(255, 255, 255, 0.65) 60%,
    rgba(251, 249, 244, 0.55) 100%
  );
  z-index: 1;
}

/* Gold foliage decorative corners */
.banner-leaf {
  position: absolute;
  width: 160px;
  height: 160px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.22;
  z-index: 2;
  pointer-events: none;
}

.banner-leaf-tr {
  top: -10px;
  right: -10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M180,20 Q160,60 120,80 Q140,40 180,20Z M160,10 Q130,50 90,60 Q120,30 160,10Z M140,5 Q110,40 75,45 Q100,20 140,5Z' fill='%23D4AF37' opacity='0.8'/%3E%3C/svg%3E");
  transform: rotate(0deg);
}

.banner-leaf-bl {
  bottom: -10px;
  left: -10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M20,180 Q60,160 80,120 Q40,140 20,180Z M10,160 Q50,130 60,90 Q30,120 10,160Z M5,140 Q40,110 45,75 Q20,100 5,140Z' fill='%23D4AF37' opacity='0.8'/%3E%3C/svg%3E");
  transform: rotate(0deg);
}

/* Center content container */
.makeup-banner-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

/* Small presenter label */
.makeup-banner-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--color-gold-dark);
}

/* Main heading */
.makeup-banner-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-olive-deep);
  letter-spacing: -0.01em;
  margin: 0;
}

.makeup-banner-heading em {
  font-style: italic;
  color: var(--color-emerald);
  font-weight: 400;
}

/* Ornamental gold divider */
.makeup-banner-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 260px;
}

.divider-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.divider-ornament {
  color: var(--color-gold);
  font-size: 1.4rem;
  line-height: 1;
  filter: drop-shadow(0 1px 3px rgba(212,175,55,0.4));
}

/* Tagline text */
.makeup-banner-tagline {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0;
}

/* CTA row */
.makeup-banner-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.makeup-banner-ctas .btn-outline {
  border-color: var(--color-olive-deep);
  color: var(--color-olive-deep);
}

.makeup-banner-ctas .btn-outline:hover {
  background: var(--color-olive-deep);
  color: #fff;
}

/* Stats row */
.makeup-banner-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(212,175,55,0.4);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(13,43,29,0.1);
}

.banner-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.banner-stat strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-olive-deep);
  line-height: 1;
}

.banner-stat span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.banner-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212,175,55,0.5);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .makeup-banner {
    min-height: 420px;
    padding: 4rem 1.5rem;
  }
  .makeup-banner-heading {
    font-size: 2.4rem;
  }
  .makeup-banner-stats {
    gap: 1rem;
    padding: 0.85rem 1.2rem;
  }
  .banner-stat strong {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .makeup-banner-stats {
    flex-wrap: wrap;
    border-radius: 20px;
  }
  .banner-stat-divider {
    display: none;
  }
}

/* ==========================================
   THE COLLECTIONS — Editorial 4-Card Layout
========================================== */
.collections-section {
  background: var(--color-porcelain);
  padding: 6rem 0 7rem;
}

.collections-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.collections-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-olive-deep);
  line-height: 1.1;
  margin-top: 0.4rem;
}

/* 4-column equal grid */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Each card */
.collection-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(44, 16, 32, 0.12);
  border: 1.5px solid #C9A84C;
  transition: transform 0.38s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.38s ease, border-color 0.38s ease;
  background: #2C1020;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(44, 16, 32, 0.28);
  border-color: #E2C068;
}

/* Image area — top portion */
.collection-card-image {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: #1f0b16;
}

.collection-card-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-card-image img {
  transform: scale(1.06);
}

/* Remove curved mask that was overlapping and cutting the image */
.collection-card-image::after {
  display: none;
}

/* Tag chip (Featured, Trending…) */
.collection-tag-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #2C1020;
  color: #C9A84C;
  border: 1px solid #C9A84C;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.28rem 0.75rem;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Body: dark plum coloured panel at the bottom */
.collection-card-body {
  background: #2C1020;
  padding: 0.5rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.collection-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0;
}

.collection-card-body p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #E8DECE;
  line-height: 1.6;
  margin: 0;
}

/* CTA arrow link */
.collection-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-gold-light);
  margin-top: 0.4rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.collection-cta span {
  transition: transform 0.3s ease;
  display: inline-block;
}

.collection-card:hover .collection-cta {
  color: #FFFFFF;
  gap: 0.7rem;
}

.collection-card:hover .collection-cta span {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1100px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .collections-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 600px) {
  .collections-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .collections-title {
    font-size: 2rem;
    letter-spacing: 0.04em;
  }
  .collection-card-body h3 {
    font-size: 1.15rem;
  }
  .collection-card-body p {
    font-size: 0.8rem;
  }
}


.beauty-collage-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.beauty-collage-header .section-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.beauty-collage-header h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-olive-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.beauty-collage-header p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Masonry grid using CSS columns */
.collage-masonry {
  column-count: 4;
  column-gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.collage-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--color-olive-deep);
  box-shadow: 0 8px 28px rgba(44, 16, 32, 0.22);
  cursor: pointer;
  display: block;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collage-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(44, 16, 32, 0.38);
  z-index: 5;
}

.collage-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collage-item:hover img {
  transform: scale(1.07);
}

/* Size variants for Pinterest variety */
.collage-item.tall img {
  aspect-ratio: 3/5;
}

.collage-item.medium img {
  aspect-ratio: 4/5;
}

.collage-item.wide img {
  aspect-ratio: 4/3;
}

.collage-item.square img {
  aspect-ratio: 1/1;
}

/* Label overlay at bottom */
.collage-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.1rem 1rem;
  background: linear-gradient(to top, rgba(44, 16, 32, 0.85) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.collage-item:hover .collage-label {
  transform: translateY(0);
}

.collage-label-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold-light);
}

.collage-label-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

/* Gold corner badge on some items */
.collage-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-gold);
  color: var(--color-olive-deep);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.65rem;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(10,21,16,0.25);
}

/* Collage CTA row at bottom */
.collage-cta-row {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .collage-masonry {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .collage-masonry {
    column-count: 2;
    column-gap: 10px;
  }
  .collage-item {
    margin-bottom: 10px;
  }
  .beauty-collage-header h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  .collage-masonry {
    column-count: 2;
  }
}

/* ==========================================
   INDEX PAGE — SPLIT HERO (Left + Right Slider)
========================================== */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 80px;
  overflow: hidden;
}
.split-hero-left {
  background: linear-gradient(145deg, #FBF9F4 0%, #F5F2EB 60%, #EFE8DC 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5rem 3.5rem 5rem 5rem;
  position: relative;
  overflow: hidden;
}
.split-hero-left-deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.split-hero-text {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
.split-hero-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-gold-dark);
  margin-bottom: 1.2rem;
}
.split-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-olive-deep);
  margin-bottom: 1.3rem;
  letter-spacing: -0.02em;
}
.split-hero-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-emerald);
}
.split-hero-sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 420px;
}
.split-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
}
.split-hero-watch {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-olive-deep);
  transition: all 0.3s ease;
}
.split-hero-watch:hover {
  color: var(--color-emerald);
  gap: 0.9rem;
}
.watch-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 4px 16px rgba(44, 16, 32, 0.18);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.split-hero-watch:hover .watch-icon {
  background: var(--color-gold);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}
.split-hero-badges {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(44, 16, 32, 0.12);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.3;
}
.badge-icon { font-size: 1.1rem; }
.hero-badge small {
  display: block;
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.72rem;
}
.split-hero-right {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.split-slider {
  position: absolute;
  inset: 0;
}
.split-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: scale(1.04);
  animation: none;
}
.split-slide.active {
  opacity: 1;
  animation: splitKenburns 6s ease-out forwards;
}
@keyframes splitKenburns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}
.split-hero-float-card {
  position: absolute;
  bottom: 2rem;
  left: 1.8rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 50px;
  padding: 0.6rem 1.3rem;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  z-index: 10;
  box-shadow: 0 6px 22px rgba(44, 16, 32, 0.18);
}
.float-card-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-olive-deep);
  line-height: 1;
}
.float-card-sep { font-size: 1rem; color: rgba(44, 16, 32, 0.35); }
.float-card-total {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.split-slider-dots {
  position: absolute;
  bottom: 2rem;
  right: 1.8rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.split-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}
.split-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(44, 16, 32, 0.3);
}
@media (max-width: 900px) {
  .split-hero { grid-template-columns: 1fr; min-height: auto; }
  .split-hero-left { padding: 6rem 2rem 3rem; }
  .split-hero-right { height: 55vw; min-height: 320px; }
}
@media (max-width: 600px) {
  .split-hero-heading { font-size: 2.6rem; }
  .split-hero-badges { gap: 1rem; }
}

/* ==========================================
   INDEX PAGE — CIRCLE CTA BUTTON (cinematic hero remnant)
========================================== */
.circle-cta-btn {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D6BD9F 0%, #C8AE8D 100%);
  color: #26201B;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem;
  line-height: 1.3;
  box-shadow: 0 0 0 10px rgba(214, 189, 159, 0.3), 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 2px solid #FFFFFF;
}
.circle-cta-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 0 0 18px rgba(214, 189, 159, 0.45), 0 20px 45px rgba(214, 189, 159, 0.7);
  background: linear-gradient(135deg, #ECE1D0 0%, #D6BD9F 100%);
}
.hero-quick-pill {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: #FFFFFF;
  color: var(--color-olive-deep);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  transition: var(--transition);
}
.hero-quick-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .hero-cinematic { min-height: 85vh; padding: 7.5rem 1rem 5rem; }
  .hero-cinematic-title { font-size: 2.3rem; }
  .hero-cinematic-subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .circle-cta-btn { width: 120px; height: 120px; font-size: 0.7rem; }
  .hero-quick-pill { bottom: 1rem; right: 1rem; font-size: 0.75rem; padding: 0.5rem 1rem; }
}

/* ==========================================
   INDEX PAGE — FEATURES STRIP
========================================== */
.features-strip {
  background: var(--color-olive-deep);
  color: var(--color-sand);
  padding: 3rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-box {
  text-align: center;
  padding: 1rem;
}
.feature-icon {
  font-size: 2rem;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
}
.feature-box h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}
.feature-box p {
  font-size: 0.875rem;
  color: rgba(234, 227, 214, 0.75);
}

/* ==========================================
   INDEX PAGE — SERVICE CARDS
========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border-dark);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-gold);
}
.service-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  overflow: hidden;
  position: relative;
  background: var(--color-surface, #fbf8f5);
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-content { padding: 1.75rem; }
.service-content h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.service-content p {
  color: var(--color-text-muted);
  font-size: 0.925rem;
  margin-bottom: 1.25rem;
}

/* ==========================================
   INDEX PAGE — TESTIMONIAL CARDS
========================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card { padding: 2rem; position: relative; }
.quote-icon {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--color-gold);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text-main);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.client-info { display: flex; align-items: center; gap: 0.75rem; }
.client-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-sage);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.client-details h5 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-olive-deep);
}
.client-details span { font-size: 0.8rem; color: var(--color-gold); }

/* ==========================================
   INDEX PAGE — PREMIUM FULLSCREEN HERO
========================================== */
.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
  background: #ffffff;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}
.hero-leaf-deco {
  position: absolute;
  top: 80px;
  right: 0;
  width: 280px;
  height: 280px;
  z-index: 2;
  opacity: 0.7;
  pointer-events: none;
}
.hero-full-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold-light);
  margin-bottom: 1.2rem;
  position: relative;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  .hero-cinematic-title { font-size: 2.3rem; }
  .hero-cinematic-subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .circle-cta-btn { width: 120px; height: 120px; font-size: 0.7rem; }
  .hero-quick-pill { bottom: 1rem; right: 1rem; font-size: 0.75rem; padding: 0.5rem 1rem; }
}

/* ==========================================
   INDEX PAGE — FEATURES STRIP
========================================== */
.features-strip {
  background: var(--color-olive-deep);
  color: var(--color-sand);
  padding: 3rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-box {
  text-align: center;
  padding: 1rem;
}
.feature-icon {
  font-size: 2rem;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
}
.feature-box h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}
.feature-box p {
  font-size: 0.875rem;
  color: rgba(234, 227, 214, 0.75);
}

/* ==========================================
   INDEX PAGE — SERVICE CARDS
========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border-dark);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-gold);
}
.service-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  overflow: hidden;
  position: relative;
  background: var(--color-surface, #fbf8f5);
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-content { padding: 1.75rem; }
.service-content h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.service-content p {
  color: var(--color-text-muted);
  font-size: 0.925rem;
  margin-bottom: 1.25rem;
}

/* ==========================================
   INDEX PAGE — TESTIMONIAL CARDS
========================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card { padding: 2rem; position: relative; }
.quote-icon {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--color-gold);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text-main);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.client-info { display: flex; align-items: center; gap: 0.75rem; }
.client-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-sage);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.client-details h5 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-olive-deep);
}
.client-details span { font-size: 0.8rem; color: var(--color-gold); }

/* ==========================================
   INDEX PAGE — PREMIUM FULLSCREEN HERO
========================================== */
.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
  background: #FAF6F0;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(250, 246, 240, 0.94) 0%, rgba(245, 238, 227, 0.96) 100%);
}
.hero-leaf-deco {
  position: absolute;
  top: 80px;
  right: 0;
  width: 280px;
  height: 280px;
  z-index: 2;
  opacity: 0.7;
  pointer-events: none;
}
.hero-full-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #C9A84C;
  margin-bottom: 1.2rem;
  position: relative;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #C9A84C;
  vertical-align: middle;
  margin: 0 8px;
}
.hero-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: #2C1020;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}
.hero-italic-line {
  font-style: italic;
  font-weight: 400;
  color: #C9A84C;
}
.hero-name-line {
  color: #C9A84C;
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  display: block;
  margin-top: 0.1em;
}
.hero-desc {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  color: #4A3540;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 460px;
}
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #C9A84C;
  line-height: 1;
}
.hero-stat-lbl {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2C1020;
  font-weight: 700;
  margin-top: 0.2rem;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(0,0,0,0.15);
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2C1020;
  color: #FAF6F0;
  border: 1.5px solid #C9A84C;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(44, 16, 32, 0.35);
}
.btn-hero-primary:hover {
  background: #3D1A2E;
  color: #E2C068;
  border-color: #E2C068;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(44, 16, 32, 0.45);
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #2C1020;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.82rem 1.8rem;
  border-radius: 50px;
  border: 1.5px solid #2C1020;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}
.btn-hero-outline:hover {
  background: #2C1020;
  color: #E2C068;
  border-color: #2C1020;
  transform: translateY(-2px);
}
.hero-trust-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #4A3540;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-trust-badge i { color: #C9A84C; }
.hero-trust-badge span:first-child { font-size: 1rem; }
.hero-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-stack {
  position: relative;
  width: 420px;
  height: 520px;
}
.hero-img-main {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 440px;
  border-radius: 180px 180px 24px 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 4px rgba(212,175,55,0.35);
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.35s ease, transform 0.4s ease;
}
.hero-img-main:hover img { transform: scale(1.04); }
.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(44, 16, 32, 0.22);
  border: 1px solid rgba(201, 168, 76, 0.45);
  z-index: 10;
}
.floating-badge-icon {
  font-size: 1.3rem;
  color: #C9A84C;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-floating-badge strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  color: #2C1020;
  line-height: 1.25;
}
.hero-floating-badge small {
  font-size: 0.72rem;
  color: #6B5B65;
  font-weight: 600;
}
.hero-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 180px;
  border-radius: 100px 100px 16px 16px;
  overflow: hidden;
  border: 3px solid rgba(212,175,55,0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.hero-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.35s ease, transform 0.4s ease;
}
.hero-img-accent:hover img { transform: scale(1.06); }
.hero-ring-deco {
  position: absolute;
  top: -20px;
  right: 40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px dashed rgba(212,175,55,0.4);
  animation: spin-slow 18s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.hero-full-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.6rem;
}
.hero-fdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hero-fdot.active {
  background: var(--color-gold-light);
  width: 24px;
  border-radius: 4px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.6), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}
@media (max-width: 992px) {
  .services-grid,
  .testimonial-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-full {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 4rem;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(44, 16, 32, 0.85) 0%,
      rgba(61, 26, 46, 0.68) 50%,
      rgba(44, 16, 32, 0.90) 100%
    );
  }
  .hero-full-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 1.25rem;
    gap: 2rem;
  }
  .hero-img-col {
    display: block;
    margin: 1.5rem auto 0;
    width: 100%;
    max-width: 380px;
  }
  .hero-img-stack {
    position: relative;
    width: 100%;
    height: auto;
  }
  .hero-img-main {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45), 0 0 20px rgba(212, 175, 55, 0.25);
    border: 2px solid var(--color-gold, #d4af37);
    position: relative;
  }
  .hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .hero-img-accent {
    display: none;
  }
  .hero-floating-badge {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  .hero-eyebrow::before, .hero-eyebrow::after { display: none; }
  .hero-stats-row, .hero-ctas, .hero-trust-row { justify-content: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-full-dots {
    bottom: 15px;
  }
}


/* ==========================================
   PAGE BANNERS & INNER PAGES STYLES
========================================== */
.page-banner {
  background: linear-gradient(135deg, #F5EDE0 0%, #EDE0CC 100%);
  color: var(--color-text-main);
  padding: 9rem 0 5rem;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.page-banner h1 {
  color: var(--color-text-main);
  font-size: 3.2rem;
  margin-bottom: 0.5rem;
}
.services-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  align-items: center;
}
.service-detail-card:nth-child(even) {
  grid-template-columns: 1.3fr 1fr;
}
.service-detail-card:nth-child(even) .service-detail-img {
  order: 2;
}
.service-detail-img {
  height: 380px;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-body {
  padding: 2.5rem;
}
.service-detail-body h3 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}
.service-price-tag {
  display: inline-block;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--color-gold);
  color: var(--color-olive-deep);
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.service-features-list {
  margin: 1.25rem 0 1.75rem;
}
.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
}
.service-features-list i {
  color: var(--color-gold);
  font-size: 0.85rem;
}
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  border: 1px solid var(--border-gold);
  background: var(--color-white);
  color: var(--color-olive-deep);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-btn {
  background: #2C1020;
  color: #FAF6F0;
  border: 1.5px solid #C9A84C;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(44, 16, 32, 0.3);
}

.newsletter-btn:hover {
  background: #3D1A2E;
  border-color: #E2C068;
  color: #E2C068;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(44, 16, 32, 0.4);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--color-olive-deep);
  color: var(--color-white);
  border-color: var(--color-olive-deep);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.portfolio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  background: #1a1018;
  cursor: pointer;
}
.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(44, 16, 32, 0.25), 0 0 20px rgba(201, 168, 76, 0.2);
  border-color: rgba(201, 168, 76, 0.6);
}
.portfolio-item.is-hidden {
  display: none !important;
}
.portfolio-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}
.portfolio-item:hover img {
  transform: scale(1.08);
}
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1.5rem 1.25rem;
  background: linear-gradient(0deg, rgba(28, 10, 20, 0.95) 0%, rgba(28, 10, 20, 0.75) 60%, transparent 100%);
  color: white;
  transform: translateY(0);
  opacity: 1;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.portfolio-zoom-btn {
  position: absolute;
  top: -45px;
  right: 1.25rem;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #C9A84C, #E2C068);
  color: #2C1020;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  opacity: 0;
  transform: scale(0.6) rotate(-15deg);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.portfolio-item:hover .portfolio-zoom-btn {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.portfolio-overlay h4 {
  color: #FAF6F0;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.portfolio-overlay span {
  font-size: 0.85rem;
  color: var(--color-gold-light, #E2C068);
  font-weight: 500;
}

/* ==========================================
   PORTFOLIO LIGHTBOX MODAL (FULL IMAGE VIEW)
========================================== */
.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1.5rem;
}
.portfolio-lightbox.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 6, 14, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  color: #FAF6F0;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.lightbox-close:hover {
  background: linear-gradient(135deg, #C9A84C, #E2C068);
  color: #2C1020;
  transform: scale(1.1) rotate(90deg);
  border-color: #E2C068;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(44, 16, 32, 0.85);
  border: 1.5px solid rgba(201, 168, 76, 0.6);
  color: #FAF6F0;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}
.lightbox-prev {
  left: 28px;
}
.lightbox-next {
  right: 28px;
}
.lightbox-nav:hover {
  background: linear-gradient(135deg, #C9A84C, #E2C068);
  color: #2C1020;
  border-color: #E2C068;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}
.lightbox-content {
  position: relative;
  z-index: 10;
  max-width: 90vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}
.portfolio-lightbox.active .lightbox-content {
  transform: scale(1);
}
.lightbox-img-wrap {
  max-height: 74vh;
  max-width: 86vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(201, 168, 76, 0.25);
  border: 2px solid rgba(201, 168, 76, 0.5);
  background: #10060e;
}
.lightbox-img-wrap img {
  max-height: 74vh;
  max-width: 86vw;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease;
}
.lightbox-info {
  margin-top: 1.1rem;
  text-align: center;
  color: #FAF6F0;
  max-width: 680px;
  padding: 0 1rem;
}
.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.lightbox-badge {
  background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(226,192,104,0.15));
  border: 1px solid rgba(201, 168, 76, 0.6);
  color: #E2C068;
  padding: 0.2rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lightbox-counter {
  color: rgba(250, 246, 240, 0.65);
  font-size: 0.8rem;
  font-weight: 600;
}
.lightbox-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.lightbox-info p {
  font-size: 0.95rem;
  color: #E2C068;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .portfolio-item img {
    height: 320px;
  }
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 16px; right: 16px; width: 42px; height: 42px; }
  .lightbox-img-wrap { max-height: 68vh; }
  .lightbox-img-wrap img { max-height: 68vh; }
  .lightbox-info h3 { font-size: 1.25rem; }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .portfolio-item img {
    height: 340px;
  }
  .lightbox-img-wrap { max-height: 60vh; }
  .lightbox-img-wrap img { max-height: 60vh; }
  .lightbox-nav {
    top: auto;
    bottom: 20px;
    transform: none;
  }
  .lightbox-prev {
    left: 25%;
    transform: translateX(-50%);
  }
  .lightbox-next {
    right: 25%;
    transform: translateX(50%);
  }
  .lightbox-nav:hover {
    transform: scale(1.1);
  }
  .lightbox-info {
    margin-top: 0.75rem;
    margin-bottom: 60px;
  }
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-gold);
}
.blog-img {
  height: 240px;
  overflow: hidden;
  background: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
  display: block;
}
.blog-card:hover .blog-img img {
  transform: scale(1.06);
}
.blog-body {
  padding: 1.75rem;
}
.blog-meta {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}
.blog-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}
.read-more {
  font-weight: 600;
  color: var(--color-olive-deep);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.read-more:hover {
  color: var(--color-gold);
}
@media (max-width: 992px) {
  .service-detail-card, .service-detail-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .service-detail-card:nth-child(even) .service-detail-img {
    order: 1;
  }
  .service-detail-img { height: 260px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   THEME ICON STYLES & VECTOR ICONS
========================================== */
i.fa-solid, i.fa-brands, i.fa-regular {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.top-info i {
  color: var(--color-gold-light, #e8c96d);
  margin-right: 6px;
  font-size: 0.9rem;
}

.hero-eyebrow i {
  color: var(--color-gold-light, #e8c96d);
  margin: 0 6px;
  font-size: 0.75rem;
}

.hero-trust-badge i {
  color: var(--color-gold-light, #e8c96d);
  font-size: 0.95rem;
  margin-right: 4px;
}

.floating-badge-icon i {
  color: var(--color-gold-dark, #b8941f);
  font-size: 1.4rem;
}

.feature-icon i {
  color: var(--color-gold-light, #e8c96d);
  font-size: 2rem;
}

.promise-card-icon i {
  color: var(--color-gold, #d4af37);
  font-size: 2.2rem;
}

.bs-look-icon i {
  color: #FFFFFF;
  font-size: 1.8rem;
}

.footer-social-btn i {
  color: var(--color-gold-light, #e8c96d);
  font-size: 1.05rem;
  transition: color 0.3s ease;
}
.footer-social-btn:hover i {
  color: var(--color-white, #ffffff);
}

.whatsapp-float i {
  color: #FFFFFF;
  font-size: 1.8rem;
}

.mobile-toggle i {
  color: var(--color-gold, #d4af37);
  font-size: 1.3rem;
}

.about-hero-tag i {
  color: var(--color-gold-light, #e8c96d);
  margin-right: 6px;
}

.test-stars i {
  color: var(--color-gold, #d4af37);
  margin: 0 2px;
  font-size: 0.95rem;
}

.quote-icon i {
  color: var(--color-gold, #d4af37);
}

/* ==========================================
   ABOUT ME SECTION – Reference Design
   (Arched photo + text + social stats)
========================================== */

.about-me-section {
  background: #FAF6F0;
  padding: 90px 0;
  border-top: 1px solid rgba(44, 16, 32, 0.08);
  border-bottom: 1px solid rgba(44, 16, 32, 0.08);
}

.about-me-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}

/* --- Arched / Rounded-top photo frame --- */
.about-me-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-me-arch {
  position: relative;
  width: 340px;
  height: 440px;
  border-radius: 200px 200px 20px 20px;   /* arch top */
  overflow: hidden;
  border: 3px solid #C9A84C;
  box-shadow: 0 20px 50px rgba(44, 16, 32, 0.14), 0 0 0 10px rgba(201, 168, 76, 0.15);
  background: #FAF6F0;
  transition: box-shadow 0.35s ease;
}

.about-me-arch:hover {
  box-shadow: 0 28px 64px rgba(44, 16, 32, 0.22), 0 0 0 14px rgba(201, 168, 76, 0.25);
}

.about-me-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,1,0.5,1);
}

.about-me-arch:hover .about-me-photo {
  transform: scale(1.04);
}

/* --- Right content --- */
.about-me-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.about-me-eyebrow {
  display: inline-block;
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 10px;
}

.about-me-title {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 600;
  color: #2C1020;
  line-height: 1.15;
  margin-bottom: 22px;
}

.about-me-desc {
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.97rem;
  line-height: 1.75;
  color: #6B5B65;
  margin-bottom: 14px;
}

.about-me-desc--lead {
  font-size: 1.03rem;
  color: #2C1020;
  font-weight: 600;
  margin-bottom: 14px;
}

.about-me-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 36px;
  padding: 12px 30px;
  border: 1.5px solid #C9A84C;
  border-radius: 50px;
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FAF6F0;
  text-decoration: none;
  background: #2C1020;
  transition: var(--transition, all 0.35s ease);
  box-shadow: 0 6px 20px rgba(44, 16, 32, 0.2);
}

.about-me-btn:hover {
  background: #3D1A2E;
  color: #E2C068;
  border-color: #E2C068;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(44, 16, 32, 0.3);
}

/* --- Social Stats Row --- */
.about-me-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  border-top: 1px solid rgba(44, 16, 32, 0.12);
  padding-top: 24px;
}

.about-me-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-right: 16px;
  border-right: 1px solid rgba(44, 16, 32, 0.12);
}

.about-me-stat:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 16px;
}

.about-me-stat:not(:first-child) {
  padding-left: 16px;
}

.about-me-stat-label {
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9A84C;
}

.about-me-stat-num {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: #2C1020;
  line-height: 1.1;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-me-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-me-img-wrap {
    justify-content: center;
  }

  .about-me-arch {
    width: 260px;
    height: 340px;
  }

  .about-me-content {
    align-items: center;
  }

  .about-me-stats {
    justify-content: center;
  }

  .about-me-stat {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .about-me-section {
    padding: 60px 0;
  }

  .about-me-inner {
    padding: 0 20px;
  }

  .about-me-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about-me-stat {
    border-right: none;
    padding-right: 0;
    padding-left: 0 !important;
    align-items: center;
    text-align: center;
  }

  .about-me-arch {
    width: 220px;
    height: 290px;
  }
}

/* ==========================================
   FESTIVE & WEDDING EDITORIAL SECTION
   (Matching Reference Grid & Top Content Header)
========================================== */

.festive-editorial-section {
  background: #F7F2EC;
  padding: 85px 0 95px;
}

.festive-header {
  max-width: 680px;
  margin: 0 auto 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.festive-eyebrow {
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold, #D4AF37);
  margin-bottom: 12px;
  display: block;
}

.festive-heading {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--color-text-main, #2C1020);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.festive-heading em {
  color: var(--color-emerald, #3D1A2E);
  font-style: italic;
  text-transform: none;
}

.festive-offer-pill {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B8860B;
  background: rgba(212,175,55,0.14);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 7px 22px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.festive-sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6B6B6B;
  margin-bottom: 24px;
  text-align: center;
}

.festive-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background: #2C1020;
  color: #FAF6F0;
  border: 1.5px solid #C9A84C;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(44, 16, 32, 0.35);
}

.festive-btn:hover {
  background: #3D1A2E;
  color: #E2C068;
  border-color: #E2C068;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(44, 16, 32, 0.45);
}

/* ─── 5-Column Editorial Grid (Exact Reference Replica) ─── */
.festive-editorial-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  height: 480px;
  max-width: 1240px;
  margin: 0 auto 80px;
}

.feg-col {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Tall Columns (1, 3, 5) */
.feg-col--tall {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.feg-col--tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.feg-col--tall:hover img {
  transform: scale(1.05);
}

/* Stacked Columns (2, 4) */
.feg-col--stacked {
  gap: 16px;
}

.feg-card {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  position: relative;
}

.feg-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.feg-card:hover img {
  transform: scale(1.06);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .festive-editorial-grid {
    height: 420px;
    gap: 12px;
  }
  .feg-col--stacked { gap: 12px; }
}

@media (max-width: 860px) {
  .festive-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    height: auto;
    margin-bottom: 40px;
  }

  .feg-col--tall {
    height: 350px;
  }

  .feg-col--stacked {
    height: 350px;
    gap: 10px;
  }

  .feg-card {
    height: 170px;
  }
}

@media (max-width: 580px) {
  .festive-editorial-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    height: auto !important;
    margin-bottom: 30px !important;
  }

  .feg-col--tall {
    height: 310px !important;
  }

  .feg-col--stacked {
    height: 310px !important;
    gap: 8px !important;
  }

  .feg-card {
    height: 151px !important;
  }

  .feg-col--tall:last-child {
    grid-column: span 2;
    height: 240px !important;
  }

  .festive-header { margin-bottom: 30px; }
  .festive-sub { font-size: 0.88rem; }
}
/* ==========================================
   GLOBAL CONTACT FORM SECTION
   (Matching Reference Design: Rounded card, left details, right white card form)
========================================== */

.global-contact-section {
  padding: 80px 24px;
  background: #FAF7F2;
}

.gcs-container {
  max-width: 1140px;
  margin: 0 auto;
  background: linear-gradient(135deg, #F5EFE8 0%, #ECE3D8 100%);
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(44, 16, 32, 0.05);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative glow */
.gcs-container::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── Left Side: Content & Contact Details ─── */
.gcs-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.gcs-title {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--color-text-main, #2C1020);
  line-height: 1.15;
  margin-bottom: 16px;
}

.gcs-title em {
  font-style: italic;
  color: var(--color-emerald, #3D1A2E);
}

.gcs-sub {
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #6B6B6B;
  margin-bottom: 40px;
  max-width: 420px;
}

.gcs-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gcs-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--color-text-main, #2C1020);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.gcs-contact-item:hover {
  transform: translateX(4px);
  color: var(--color-gold, #D4AF37);
}

.gcs-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  color: var(--color-gold, #D4AF37);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.gcs-contact-item:hover .gcs-icon-badge {
  background: var(--color-gold, #D4AF37);
  color: #fff;
}

/* ─── Right Side: Floating White Form Card ─── */
.gcs-form-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 44px 38px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.gcs-form-title {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-text-main, #2C1020);
  margin-bottom: 24px;
}

.gcs-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gcs-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gcs-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: #4A4A4A;
}

.gcs-input {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid #E8E2D9;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: #333;
  background: #FAF8F5;
  outline: none;
  transition: all 0.3s ease;
}

textarea.gcs-input {
  border-radius: 16px;
  resize: vertical;
}

.gcs-input:focus {
  border-color: var(--color-gold, #D4AF37);
  background: #FFF;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

select.gcs-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%3C333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

.gcs-submit-btn {
  width: 100%;
  padding: 14px;
  border: 1.5px solid #C9A84C;
  border-radius: 50px;
  background: #2C1020;
  color: #FAF6F0;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(44, 16, 32, 0.35);
}

.gcs-submit-btn:hover {
  background: #3D1A2E;
  color: #E2C068;
  border-color: #E2C068;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(44, 16, 32, 0.45);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .gcs-container {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    border-radius: 20px;
    gap: 36px;
  }
  .global-contact-section {
    padding: 50px 16px;
  }
  .gcs-form-card {
    padding: 32px 24px;
  }
}

/* ==========================================
   EDITORIAL ABOUT HERO & PILLARS SECTION
   (Exact Replica of User Reference Design)
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');

.ab-ref-hero {
  width: 100%;
  overflow: hidden;
  background: #FFFFFF;
}

/* ─── Top Wave Section ─── */
.ab-ref-top {
  background: #FAF6F0; /* Luxury warm cream surface */
  padding: 90px 24px 0;
  position: relative;
}

.ab-ref-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}



/* Left Content */
.ab-ref-left {
  position: relative;
  padding-bottom: 40px;
}

.ab-ref-script {
  font-family: 'Alex Brush', cursive, var(--font-serif);
  font-size: 5.5rem;
  color: rgba(201, 168, 76, 0.25);
  position: absolute;
  top: -50px;
  left: -10px;
  pointer-events: none;
  line-height: 1;
}

.ab-ref-title {
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  font-weight: 800;
  color: #2C1020;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.ab-ref-sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.75;
  color: #6B5B65;
  max-width: 440px;
  margin-bottom: 32px;
}

.ab-ref-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #2C1020;
  color: #FAF6F0;
  border: 1.5px solid #C9A84C;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 24px rgba(44, 16, 32, 0.25);
}

.ab-ref-btn:hover {
  background: #3D1A2E;
  color: #E2C068;
  border-color: #E2C068;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(44, 16, 32, 0.38);
}

/* Right Arch Photo & Floating Profile Card */
.ab-ref-right {
  display: flex;
  justify-content: center;
  position: relative;
}

.ab-ref-arch-wrap {
  position: relative;
  width: min(380px, 85vw);
  height: 480px;
}

.ab-ref-arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 200px 200px 12px 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(44, 16, 32, 0.15);
  border: 2px solid #C9A84C;
}

/* Floating White Profile Card (Matching Reference Bottom-Left of Arch) */
.ab-ref-profile-card {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: #FFFFFF;
  padding: 22px 28px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(44, 16, 32, 0.12);
  max-width: 260px;
  z-index: 5;
  border: 1px solid rgba(201, 168, 76, 0.4);
}

.ab-ref-card-tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
  display: block;
  margin-bottom: 4px;
}

.ab-ref-card-name {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C1020;
  margin-bottom: 6px;
  line-height: 1.2;
}

.ab-ref-card-desc {
  font-family: var(--font-sans);
  font-size: 0.80rem;
  line-height: 1.5;
  color: #6B5B65;
}

/* Bottom SVG Wave */
.ab-ref-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}

.ab-ref-wave svg {
  width: 100%;
  height: 90px;
}

/* ─── Bottom Grid Section ─── */
.ab-ref-bottom {
  background: #FFFFFF;
  padding: 40px 24px 90px;
}

.ab-ref-bottom .ab-ref-container {
  align-items: flex-start;
  gap: 70px;
}

.ab-ref-intro {
  position: relative;
  padding-top: 20px;
}

.ab-ref-script-small {
  font-family: 'Alex Brush', cursive, var(--font-serif);
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.25);
  position: absolute;
  top: -30px;
  left: -5px;
  pointer-events: none;
}

.ab-ref-heading-small {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #2C1020;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.ab-ref-desc-small {
  font-family: var(--font-sans);
  font-size: 0.93rem;
  line-height: 1.75;
  color: #6B5B65;
  margin-bottom: 28px;
}

.ab-ref-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ab-ref-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: #2C1020;
}

.ab-bullet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C9A84C;
  display: inline-block;
  flex-shrink: 0;
}

/* 3x2 Circle Arch Grid (Exact Reference Replica) */
.ab-ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
}

.ab-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ab-grid-arch {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%; /* Clean circular arch */
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}

.ab-grid-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ab-grid-item:hover .ab-grid-arch {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.ab-grid-item:hover .ab-grid-arch img {
  transform: scale(1.08);
}

.ab-grid-lbl {
  font-family: var(--font-sans);
  font-size: 0.80rem;
  font-weight: 600;
  color: #6B5B54;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 992px) {
  .ab-ref-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ab-ref-profile-card {
    left: 10px;
    bottom: 10px;
  }
}

@media (max-width: 600px) {
  .ab-ref-top { padding: 60px 16px 0; }
  .ab-ref-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .ab-ref-arch-wrap { height: 380px; }
}

/* ════════════════════════════════════════════════════════════
   SERVICE PAGE LUXURY LAYOUT (Jewelry-Inspired UI Design)
════════════════════════════════════════════════════════════ */

/* Feature Badges Strip */
.svc-badge-strip {
  background: #FAF6F0;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  padding: 24px 0;
  margin-bottom: 60px;
}
.svc-badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.svc-badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #2C1020;
}
.svc-badge-icon {
  font-size: 1.4rem;
  color: #C9A84C;
}
.svc-badge-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2C1020;
}
.svc-badge-text span {
  font-size: 0.75rem;
  color: #8B6070;
}

/* Section Header */
.svc-sec-header {
  text-align: center;
  margin-bottom: 45px;
}
.svc-sec-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  display: block;
  margin-bottom: 8px;
}
.svc-sec-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #2C1020;
  font-weight: 600;
}

/* 4-Card Category Grid */
.svc-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}
.svc-cat-card {
  background: #FFFFFF;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(44, 16, 32, 0.08);
  box-shadow: 0 10px 30px rgba(44, 16, 32, 0.06);
  text-align: center;
  transition: all 0.35s ease;
}
.svc-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(44, 16, 32, 0.12);
  border-color: #C9A84C;
}
.svc-cat-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 270px;
  overflow: hidden;
  background: #FAF7F2;
}
.svc-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.svc-cat-card:hover .svc-cat-img img {
  transform: scale(1.08);
}
.svc-cat-body {
  padding: 20px 16px;
}
.svc-cat-body h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #2C1020;
  margin-bottom: 4px;
}
.svc-cat-body p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #8B6070;
}

/* Package Options Grid (Variant Cards) */
.svc-pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}
.svc-pkg-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 8px 24px rgba(44, 16, 32, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.svc-pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(44, 16, 32, 0.1);
  border-color: #C9A84C;
}
.svc-pkg-img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 16px;
}
.svc-pkg-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #2C1020;
  margin-bottom: 6px;
}
.svc-pkg-price {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: #C9A84C;
  margin-bottom: 8px;
}
.svc-pkg-stars {
  color: #C9A84C;
  font-size: 0.75rem;
  margin-bottom: 14px;
}

/* Dark Exclusive Banner */
.svc-dark-banner {
  background: #2C1020;
  border-radius: 24px;
  padding: 50px;
  border: 1.5px solid #C9A84C;
  color: #FAF6F0;
  margin-bottom: 70px;
  box-shadow: 0 20px 50px rgba(44, 16, 32, 0.3);
}
.svc-dark-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}
.svc-dark-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid #C9A84C;
}
.svc-dark-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E2C068;
}
.svc-dark-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: #FFFFFF;
  margin: 10px 0 16px;
  line-height: 1.2;
}
.svc-dark-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #E8DECE;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* Craftsmanship / Our Story Row */
.svc-craft-row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  background: #FAF6F0;
  border-radius: 24px;
  padding: 50px 40px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  margin-bottom: 70px;
}
.svc-craft-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(44, 16, 32, 0.12);
}
.svc-craft-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-craft-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.svc-craft-bullet-icon {
  font-size: 1.25rem;
  color: #C9A84C;
  background: #2C1020;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-craft-bullet-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: #2C1020;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.svc-craft-bullet-text span {
  font-size: 0.8rem;
  color: #6B5B65;
}

/* Gallery Grid */
.svc-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.svc-insta-item {
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(44, 16, 32, 0.08);
}
.svc-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-insta-item:hover img {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .svc-badge-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cat-grid, .svc-pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-dark-inner { grid-template-columns: 1fr; text-align: center; }
  .svc-craft-row { grid-template-columns: 1fr; }
  .svc-insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
  .svc-badge-grid { grid-template-columns: 1fr; }
  .svc-cat-grid, .svc-pkg-grid { grid-template-columns: 1fr; }
  .svc-insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   EDITORIAL ABOUT CARD SECTION (Exact Reference Replica)
════════════════════════════════════════════════════════════ */
.about-card-section {
  background: #FAF6F0;
  padding: 90px 24px;
}
.about-card-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  background: url('images/banner_makeup_bg.png') center/cover no-repeat;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 15px 45px rgba(44, 16, 32, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  overflow: hidden;
}
.about-card-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(4px);
  z-index: 1;
}
.about-card-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(44, 16, 32, 0.12);
}
.about-card-left {
  background: #FFFFFF;
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}
.about-card-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #2C1020;
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-card-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.75;
  color: #5A4B55;
  margin-bottom: 18px;
}
.about-card-right {
  height: 100%;
  min-height: 480px;
  position: relative;
}
.about-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (max-width: 900px) {
  .about-card-wrapper { padding: 24px; }
  .about-card-grid { grid-template-columns: 1fr; }
  .about-card-left { padding: 36px 28px; text-align: center; align-items: center; }
  .about-card-right { height: 360px; min-height: auto; }
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION (Exact Reference Image 2 Replica)
════════════════════════════════════════════════════════════ */
.t-ref-section {
  background: #FAF6F0;
  padding: 90px 24px;
}
.t-ref-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 32px;
  padding: 56px 40px;
  box-shadow: 0 20px 60px rgba(44, 16, 32, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.25);
  position: relative;
  overflow: hidden;
}
.t-ref-bg-quote {
  position: absolute;
  top: 10px;
  left: 36px;
  font-family: var(--font-serif);
  font-size: 11rem;
  line-height: 1;
  color: rgba(201, 168, 76, 0.08);
  pointer-events: none;
  user-select: none;
}
.t-ref-header {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 44px;
}
.t-ref-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: #2C1020;
  margin-bottom: 10px;
}
.t-ref-line {
  width: 50px;
  height: 3.5px;
  background: #C9A84C;
  border-radius: 3px;
  margin: 0 auto;
}
.t-ref-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.t-ref-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px 20px 24px;
  border: 1px solid rgba(44, 16, 32, 0.08);
  box-shadow: 0 10px 30px rgba(44, 16, 32, 0.06);
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.t-ref-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44, 16, 32, 0.12);
  border-color: #C9A84C;
}
.t-ref-card--active {
  transform: translateY(-12px);
  border: 2px solid #C9A84C;
  box-shadow: 0 20px 45px rgba(44, 16, 32, 0.14);
}
.t-ref-card--active:hover {
  transform: translateY(-16px);
}
.t-ref-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2C1020;
  color: #FAF6F0;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #C9A84C;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(44, 16, 32, 0.15);
}
.t-ref-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: #2C1020;
  margin-bottom: 2px;
}
.t-ref-role {
  font-family: var(--font-sans);
  font-size: 0.73rem;
  color: #C9A84C;
  font-weight: 600;
  margin-bottom: 16px;
}
.t-ref-quote-mark {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1;
  color: rgba(201, 168, 76, 0.25);
  margin-bottom: 6px;
}
.t-ref-text {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  line-height: 1.65;
  color: #5A4B55;
}

@media (max-width: 1024px) {
  .t-ref-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .t-ref-card--active {
    transform: none;
  }
}
@media (max-width: 600px) {
  .t-ref-wrapper {
    padding: 36px 20px;
  }
  .t-ref-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════
   HELP & SUPPORT MODAL STYLES
════════════════════════════════════════════════════════════ */
.help-modal-content {
  max-width: 680px;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 24px;
  padding: 40px 32px;
  background: #FFFFFF;
  border: 1.5px solid #C9A84C;
}
.help-modal-header {
  text-align: center;
  margin-bottom: 24px;
}
.help-modal-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #C9A84C;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.help-modal-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: #2C1020;
  margin-bottom: 6px;
}
.help-modal-sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #6B5B65;
}

.help-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.bs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0;
}

.bs-dot.active {
  background: #C9A84C !important;
  border-color: #FAF6F0 !important;
  width: 30px;
  border-radius: 6px;
}

/* Slide counter */
.bs-counter {
  position: absolute;
  bottom: 1rem;
  right: 4.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: #FAF6F0;
  letter-spacing: 0.1em;
}

.bs-counter #bsCurrent {
  color: #E2C068;
  font-size: 1.25rem;
}

.help-c-card {
  background: #FAF6F0;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 14px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #2C1020;
  transition: all 0.3s ease;
}
.help-c-card:hover {
  border-color: #C9A84C;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(44, 16, 32, 0.08);
}
.help-c-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2C1020;
  color: #C9A84C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.help-c-card strong {
  font-size: 0.8rem;
  display: block;
}
.help-c-card span {
  font-size: 0.72rem;
  color: #8B6070;
}

.help-faq-section h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #2C1020;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(44, 16, 32, 0.1);
  padding-bottom: 8px;
}
.help-faq-item {
  background: #FAF6F0;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(44, 16, 32, 0.06);
  overflow: hidden;
}
.help-faq-q {
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: #2C1020;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.help-faq-a {
  padding: 0 16px 14px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.6;
  color: #5A4B55;
}

.help-modal-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(44, 16, 32, 0.1);
}
.help-modal-footer p {
  font-size: 0.85rem;
  color: #2C1020;
  font-weight: 600;
}

@media (max-width: 600px) {
  .help-contact-cards { grid-template-columns: 1fr; }
  .help-modal-content { padding: 28px 18px; }
}

/* ==========================================
   ABOUT PAGE - BENEFIT & PROMISE SECTION (NEW LAYOUT)
========================================== */
.ab-benefit-section {
  padding: 6rem 0;
  background: #FAF6F0;
}
.ab-benefit-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

/* Left Image Composition with Floating Speech Bubbles */
.ab-b-img-comp {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.ab-b-main-arch {
  width: 78%;
  height: 480px;
  border-radius: 140px 140px 30px 30px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(44, 16, 32, 0.16);
  border: 2px solid #C9A84C;
}
.ab-b-main-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ab-b-secondary-arch {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  height: 280px;
  border-radius: 100px 100px 30px 30px;
  overflow: hidden;
  border: 5px solid #FFFFFF;
  box-shadow: 0 15px 35px rgba(44, 16, 32, 0.2);
  z-index: 2;
}
.ab-b-secondary-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Speech bubbles */
.ab-b-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 40px;
  padding: 8px 14px 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(44, 16, 32, 0.12);
  z-index: 4;
  max-width: 250px;
  transition: transform 0.3s ease;
}
.ab-b-bubble:hover {
  transform: translateY(-4px) scale(1.03);
}
.ab-b-bubble img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #C9A84C;
}
.ab-b-bubble span {
  font-size: 0.72rem;
  font-family: var(--font-sans);
  color: #2C1020;
  font-weight: 600;
  line-height: 1.35;
}

.b-top-left {
  top: 8px;
  left: -45px;
}
.b-mid-right {
  top: 22%;
  right: -45px;
}
.b-bot-left {
  bottom: 8px;
  left: -45px;
}

/* Right Content Column */
.ab-b-content-col h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: #2C1020;
  margin-bottom: 2.2rem;
  font-weight: 600;
}

.ab-b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem 1.8rem;
}
.ab-b-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ab-b-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FAF6F0;
  border: 1.5px solid #C9A84C;
  color: #C9A84C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.15);
}
.ab-b-info h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C1020;
  margin-bottom: 0.4rem;
}
.ab-b-info p {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  color: #6B5B65;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .ab-benefit-container { grid-template-columns: 1fr; gap: 3.5rem; }
  .ab-b-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   SERVICE PAGES - LUXURY HERO SECTION (REFERENCE MATCH)
========================================== */
.svc-luxury-hero {
  background: radial-gradient(circle at 75% 40%, rgba(242, 235, 224, 0.95) 0%, #FAF6F0 60%);
  padding: 130px 24px 80px;
  position: relative;
  overflow: hidden;
}

.svc-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left Column */
.svc-hero-left {
  position: relative;
  z-index: 2;
}

.svc-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  display: block;
  margin-bottom: 14px;
}

.svc-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  color: #2C1020;
  line-height: 1.1;
  margin-bottom: 22px;
}

.svc-sparkle {
  color: #C9A84C;
  font-size: 0.75em;
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
  animation: sparkleGlow 3s ease-in-out infinite alternate;
}

@keyframes sparkleGlow {
  0% { transform: scale(0.9) rotate(0deg); opacity: 0.75; }
  100% { transform: scale(1.25) rotate(15deg); opacity: 1; filter: drop-shadow(0 0 8px rgba(201,168,76,0.6)); }
}

.svc-hero-sub {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.75;
  color: #6B5B65;
  max-width: 480px;
  margin-bottom: 34px;
}

/* Pill CTA Button matching reference image */
.svc-hero-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 10px 8px 28px;
  background: #2C1020;
  color: #FAF6F0;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid #C9A84C;
  box-shadow: 0 8px 25px rgba(44, 16, 32, 0.25);
  transition: all 0.35s ease;
}

.svc-btn-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #C9A84C;
  color: #2C1020;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.35s ease;
}

.svc-hero-pill-btn:hover {
  background: #3D1A2E;
  color: #E2C068;
  border-color: #E2C068;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(44, 16, 32, 0.35);
}

.svc-hero-pill-btn:hover .svc-btn-circle {
  transform: translateX(4px);
  background: #E2C068;
}

/* Right Column Image Composition */
.svc-hero-img-composition {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

.svc-hero-main-circle {
  width: min(380px, 85vw);
  aspect-ratio: 1/1.1;
  border-radius: 50% 50% 40% 40%;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(44, 16, 32, 0.18);
  border: 3px solid #C9A84C;
  margin: 0 auto;
}

.svc-hero-main-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.svc-hero-main-circle:hover img {
  transform: scale(1.05);
}

/* Floating Sparkle Stars */
.svc-floating-star {
  position: absolute;
  color: #C9A84C;
  font-size: 1.8rem;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.4));
}
.star-top-left { top: 10px; left: -10px; }
.star-bot-mid { bottom: 40px; right: 20px; }

/* Floating Product / Service Inset Cards (Exact Reference Match) */
.svc-floating-prod-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 35px rgba(44, 16, 32, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  z-index: 5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-floating-prod-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 45px rgba(44, 16, 32, 0.22);
}

.svc-floating-prod-card img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.svc-prod-info {
  display: flex;
  flex-direction: column;
}

.svc-prod-info strong {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: #2C1020;
  line-height: 1.2;
  margin-bottom: 2px;
  white-space: nowrap;
}

.svc-rating {
  font-size: 0.7rem;
  color: #C9A84C;
  letter-spacing: 1px;
}
.svc-rating span {
  color: #6B5B65;
  font-weight: 600;
}

.svc-price-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: #2C1020;
  background: #FAF6F0;
  padding: 2px 8px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 4px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.card-top-right {
  top: 18%;
  right: -25px;
}

.card-bot-left {
  bottom: 12%;
  left: -30px;
}

@media (max-width: 992px) {
  .svc-hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .svc-hero-sub { margin-left: auto; margin-right: auto; }
  .card-top-right { right: 0; }
  .card-bot-left { left: 0; }
}

/* ==========================================
   GLOBAL TESTIMONIALS SECTION (REFERENCE MATCH)
========================================== */
.ab-test-section {
  background: #FFFFFF;
  padding: 80px 24px;
}
.ab-test-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}
.ab-test-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #C9A84C;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ab-test-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #2C1020;
  margin-bottom: 40px;
  font-weight: 600;
}
.ab-test-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 28px;
  align-items: stretch;
}

/* Left Tall Featured Card */
.ab-test-featured-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  box-shadow: 0 12px 30px rgba(44, 16, 32, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ab-test-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(44, 16, 32, 0.16);
  border-color: rgba(201, 168, 76, 0.6);
}
.ab-test-feat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
  display: block;
}
.ab-test-featured-card:hover .ab-test-feat-img {
  transform: scale(1.04);
}
.ab-test-feat-overlay {
  display: block !important;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 8, 16, 0.94) 0%, rgba(22, 8, 16, 0.6) 42%, rgba(0, 0, 0, 0.08) 75%, transparent 100%);
}
.ab-test-feat-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}
.ab-test-feat-quote {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FAF6F0;
  margin-bottom: 20px;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.ab-test-feat-author-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border: none;
  padding: 0;
}
.ab-test-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ab-test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #C9A84C;
  object-fit: cover;
}
.ab-test-author-info strong {
  display: block;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.ab-test-author-info span {
  display: block;
  color: #E2C068;
  font-size: 0.8rem;
}
.ab-test-quote-icon {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: rgba(255,255,255,0.22);
  line-height: 0.8;
}

/* Right 2x2 Grid */
.ab-test-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 100%;
}
.ab-test-card {
  background: #F8F4EE;
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  border: 1px solid rgba(44, 16, 32, 0.06);
  box-shadow: 0 4px 15px rgba(44, 16, 32, 0.03);
}
.ab-test-card:hover {
  transform: translateY(-3px);
  background: #FFFFFF;
  box-shadow: 0 12px 28px rgba(44, 16, 32, 0.08);
  border-color: #C9A84C;
}
.ab-test-card .ab-test-stars {
  color: #C9A84C;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-align: center;
}
.ab-test-card-text {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  line-height: 1.55;
  color: #4A3B45;
  margin-bottom: 16px;
  text-align: center;
  flex-grow: 1;
}
.ab-test-author-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ab-test-avatar-placeholder {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2C1020;
  color: #C9A84C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-sans);
}
.ab-test-author-meta strong {
  color: #2C1020;
  font-size: 0.88rem;
  display: block;
}
.ab-test-author-meta span {
  color: #8B6070;
  font-size: 0.75rem;
  display: block;
}

@media (max-width: 992px) {
  .ab-test-wrapper { padding: 40px 24px; }
  .ab-test-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ab-test-cards-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVENESS OVERHAUL (ALL PAGES)
========================================================================== */

/* 1. Global Mobile Reset & Overflow Prevention */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* 2. Tablets & Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .container, .about-me-inner, .gcs-container, .ab-test-wrapper, .svc-hero-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* 3. Tablets & Mobile Devices (<= 992px) */
@media (max-width: 992px) {
  /* Header & Navigation Drawer */
  .top-bar-inner {
    flex-direction: column !important;
    gap: 6px !important;
    text-align: center !important;
    padding: 6px 12px !important;
  }
  .top-info {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    font-size: 0.78rem !important;
  }
  .top-announcement {
    font-size: 0.78rem !important;
    text-align: center !important;
  }
  .header {
    background: #2C1020 !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 2px solid #C9A84C !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4) !important;
  }
  .nav-container {
    padding: 0.7rem 1.2rem !important;
  }
  .mobile-toggle {
    display: block !important;
    font-size: 1.6rem !important;
    color: #E2C068 !important;
    cursor: pointer !important;
    background: transparent !important;
    border: none !important;
    padding: 6px !important;
    z-index: 10001 !important;
  }
  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 85vw !important;
    max-width: 320px !important;
    height: 100vh !important;
    background: #FAF6F0 !important;
    flex-direction: column !important;
    padding: 75px 22px 40px !important;
    gap: 14px !important;
    box-shadow: -10px 0 40px rgba(44, 16, 32, 0.25) !important;
    transition: right 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
    z-index: 10000 !important;
    overflow-y: auto !important;
    transform: none !important;
  }
  .nav-menu.active {
    right: 0 !important;
  }
  .nav-menu .nav-link {
    color: #2C1020 !important;
    font-size: 1.08rem !important;
    font-weight: 600 !important;
    font-family: var(--font-serif, Georgia, serif) !important;
    letter-spacing: 0.05em !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(44, 16, 32, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-shadow: none !important;
    -webkit-font-smoothing: antialiased !important;
  }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: #C9A84C !important;
  }
  .nav-dropdown .dropdown-menu {
    position: static !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    min-width: 100% !important;
    border: none !important;
    border-left: 2px solid #C9A84C !important;
    border-radius: 0 10px 10px 0 !important;
    padding: 8px 12px !important;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
    background: rgba(44, 16, 32, 0.04) !important;
  }
  .nav-dropdown.open .dropdown-menu,
  .nav-dropdown.active .dropdown-menu {
    display: block !important;
  }
  .dropdown-item {
    color: #2C1020 !important;
    font-size: 0.9rem !important;
    padding: 8px 10px !important;
    white-space: normal !important;
    border-bottom: 1px solid rgba(44, 16, 32, 0.06) !important;
  }
  .dropdown-item:last-child {
    border-bottom: none !important;
  }
  .dropdown-item:hover {
    color: #C9A84C !important;
    background: transparent !important;
  }

  /* Homepage Main Hero */
  .hero-full {
    min-height: auto !important;
    padding-top: 110px !important;
    padding-bottom: 50px !important;
    background: #FAF6F0 !important;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(250, 246, 240, 0.96) 0%, rgba(245, 238, 227, 0.98) 100%) !important;
  }
  .hero-full-content, .hero-container {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
    text-align: center !important;
    padding: 0 16px !important;
  }
  .hero-text-col, .hero-left-col {
    align-items: center !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .hero-main-title, .hero-title {
    font-size: clamp(2.1rem, 7vw, 3.2rem) !important;
  }
  .hero-desc, .hero-sub {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-stats-row, .hero-ctas, .hero-trust-row {
    justify-content: center !important;
  }
  .hero-img-col { justify-content: center !important; }
  .hero-img-stack {
    width: 100% !important;
    max-width: 320px !important;
    height: 400px !important;
    margin: 0 auto !important;
  }
  .hero-img-main {
    width: 260px !important;
    height: 350px !important;
  }
  .hero-floating-badge {
    bottom: 15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    padding: 8px 12px !important;
  }
  .hero-img-accent { display: none !important; }

  /* About Me Section */
  .about-me-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center;
  }
  .about-me-content {
    align-items: center !important;
    text-align: center !important;
  }
  .about-me-arch {
    width: 290px !important;
    height: 380px !important;
    margin: 0 auto;
  }
  .about-me-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  .about-me-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(44, 16, 32, 0.1) !important;
    padding: 10px 0 !important;
    align-items: center !important;
  }
  .about-me-stat:last-child { border-bottom: none !important; }

  /* Service Pages Luxury Hero */
  .svc-luxury-hero { padding: 100px 16px 60px !important; }
  .svc-hero-container {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 40px !important;
  }
  .svc-hero-left { text-align: center; }
  .svc-hero-sub { margin: 0 auto 28px !important; }
  .svc-hero-pill-btn { margin: 0 auto; }
  .svc-hero-main-circle {
    width: 290px !important;
    height: 330px !important;
  }
  .card-top-right {
    top: -12px !important;
    right: 0 !important;
    padding: 8px 10px !important;
  }
  .card-bot-left {
    bottom: -12px !important;
    left: 0 !important;
    padding: 8px 10px !important;
  }
  .svc-floating-prod-card img { width: 42px !important; height: 42px !important; }
  .svc-prod-info strong { font-size: 0.75rem !important; }

  /* Photo Grids & Collections */
  .festive-editorial-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    height: auto !important;
  }
  .feg-col--tall {
    grid-row: span 1 !important;
    height: 330px !important;
    border-radius: 12px !important;
  }
  .feg-col--stacked {
    height: 330px !important;
    gap: 10px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .feg-card {
    flex: 1 !important;
    height: 160px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }
  .feg-col--tall img,
  .feg-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
  .feg-card img[src*="15.png"],
  .feg-card img[src*="11.png"] {
    object-position: center center !important;
  }
  .svc-cat-grid, .collection-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  /* MY JOURNEY Infographic Section */
  .ab-journey-flow {
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
  }
  .ab-journey-card {
    width: 100% !important;
    max-width: 360px !important;
  }
  .ab-journey-arrow {
    transform: rotate(90deg) !important;
    margin: -10px 0 !important;
  }

  /* Testimonials Grid */
  .ab-test-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .ab-test-featured-card {
    min-height: auto !important;
    padding: 0 !important;
  }
  .ab-test-feat-img {
    height: 320px !important;
  }
  .ab-test-feat-content {
    padding: 18px 20px !important;
  }

  /* Global Contact Form Section */
  .global-contact-section { padding: 60px 16px !important; }
  .gcs-container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .gcs-left { text-align: center; }
  .gcs-contact-list { align-items: center !important; }
  .gcs-form-card { padding: 28px 20px !important; }
  .gcs-row-2 { grid-template-columns: 1fr !important; }

  /* Footer */
  .footer-top-row {
    flex-direction: column !important;
    gap: 30px;
    text-align: center;
  }
  .footer-brand-wrap p { margin: 12px auto 0; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-btn { width: 100%; margin-top: 8px; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 30px; }
}

/* 4. Small Smartphones (<= 600px) */
@media (max-width: 600px) {
  .section { padding: 3.5rem 0 !important; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 12px; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  
  .festive-editorial-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    height: auto !important;
  }
  .feg-col--tall {
    height: 300px !important;
    border-radius: 12px !important;
  }
  .feg-col--stacked {
    height: 300px !important;
    gap: 8px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .feg-card {
    flex: 1 !important;
    height: 146px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }
  .feg-col--tall:last-child {
    grid-column: span 2 !important;
    height: 240px !important;
  }
  .feg-col--tall img,
  .feg-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
  .feg-card img[src*="15.png"],
  .feg-card img[src*="11.png"] {
    object-position: center center !important;
  }
  .svc-cat-grid, .collection-grid, .collections-grid, .services-grid { grid-template-columns: 1fr !important; }
  .ab-test-cards-grid { grid-template-columns: 1fr !important; }

  .bs-slider-viewport {
    overflow: hidden !important;
    padding: 15px 0 !important;
  }
  .bs-slide {
    width: 270px !important;
    max-width: 82vw !important;
    flex-shrink: 0 !important;
    transform: scale(1) !important;
    opacity: 1 !important;
    margin: 0 auto !important;
  }
  .bs-slide.active-focus {
    transform: scale(1.02) !important;
  }
  .bs-card {
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: 0 10px 28px rgba(44, 16, 32, 0.12) !important;
  }
  .bs-nav-prev, .bs-nav-next { width: 38px !important; height: 38px !important; font-size: 0.85rem !important; }

  /* Modals */
  .modal-content, .help-modal-content {
    width: 94vw !important;
    padding: 22px 16px !important;
    margin: 20px auto !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
  }
  .booking-form-grid { grid-template-columns: 1fr !important; }
  .help-contact-cards { grid-template-columns: 1fr !important; }

  .footer-links-grid { grid-template-columns: 1fr !important; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
/* ==========================================
   SPLIT SHOWCASE SECTION
   (Service Pages — Left Images + Right Text)
========================================== */

.svc-split-section {
  background: var(--color-porcelain, #FAF6F0);
  padding: 5.5rem 1.5rem;
  overflow: hidden;
}

.svc-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ---- Left: Overlapping Image Stack ---- */
.svc-split-images {
  position: relative;
  height: 480px;
}

.svc-split-img-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.svc-split-img-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.svc-split-img-front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  height: 80%;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  overflow: hidden;
  border: 5px solid var(--color-porcelain, #FAF6F0);
  box-shadow: 0 12px 40px rgba(44,16,32,0.15);
  z-index: 2;
}

.svc-split-img-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ---- Right: Text Content ---- */
.svc-split-content {}

.svc-split-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light, #8B6070);
  margin-bottom: 1.2rem;
}

.svc-split-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--color-text-main, #2C1020);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

.svc-split-desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--color-text-light, #8B6070);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2.2rem;
}

.svc-split-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-text-main, #2C1020);
  text-decoration: none;
  border-bottom: 2px solid var(--color-gold, #C9A84C);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
  margin-bottom: 3rem;
}

.svc-split-cta:hover {
  color: var(--color-gold, #C9A84C);
}

/* ---- Bottom Thumbnails Row ---- */
.svc-split-thumbs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.svc-split-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}

.svc-split-thumb:hover { opacity: 0.75; }

.svc-split-thumb-img {
  width: 80px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
}

.svc-split-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.svc-split-thumb span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-main, #2C1020);
  text-align: center;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
  .svc-split-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .svc-split-images { height: 340px; }
}

@media (max-width: 600px) {
  .svc-split-images { height: 260px; }
  .svc-split-section { padding: 3.5rem 1rem; }
  .svc-split-thumbs { gap: 0.75rem; }
  .svc-split-thumb-img { width: 70px; height: 62px; }
}

/* ==========================================
   FEATURED TRANSFORMATIONS / LOOK CATEGORIES
   (Service Pages — Magazine Card Grid)
========================================== */

.feat-transform-section {
  background: var(--color-cream, #F2EBE0);
  padding: 5rem 1.5rem 4.5rem;
}

.feat-transform-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.feat-transform-header {
  text-align: center;
  margin-bottom: 3rem;
}

.feat-transform-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold, #C9A84C);
  margin-bottom: 0.85rem;
}

.feat-transform-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--color-text-main, #2C1020);
  line-height: 1.2;
}

.feat-transform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feat-transform-card {
  background: #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(44, 16, 32, 0.09);
  transition: transform 0.32s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.32s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.feat-transform-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 40px rgba(44, 16, 32, 0.18);
}

.feat-transform-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.feat-transform-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.feat-transform-card:hover .feat-transform-img-wrap img {
  transform: scale(1.06);
}

.feat-transform-info {
  padding: 1.1rem 1.2rem 1.3rem;
  text-align: center;
}

.feat-transform-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-main, #2C1020);
  margin-bottom: 0.3rem;
}

.feat-transform-info span {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-gold, #C9A84C);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 1024px) {
  .feat-transform-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .feat-transform-img-wrap { height: 240px; }
}

@media (max-width: 600px) {
  .feat-transform-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .feat-transform-img-wrap { height: 180px; }
  .feat-transform-section { padding: 3rem 1rem 2.5rem; }
}

/* ==========================================
   SVC DARK BANNER CARD
   (Service Pages — Dark Plum Promo Card)
========================================== */

.svc-dark-banner {
  padding: 2.5rem 0 3rem;
}

.svc-dark-inner {
  background: #2C1020;
  border-radius: 20px;
  padding: 2.8rem 3rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.svc-dark-inner::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.svc-dark-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  border: 1.5px solid rgba(201,168,76,0.45);
  display: block;
}

.svc-dark-tag {
  display: block;
  font-family: var(--font-sans, sans-serif);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold, #C9A84C);
  margin-bottom: 0.9rem;
}

.svc-dark-title {
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.svc-dark-desc {
  font-family: var(--font-sans, sans-serif);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.svc-dark-inner .btn {
  border-radius: 50px !important;
  padding: 0.75rem 2rem !important;
  font-size: 0.8rem !important;
  background: transparent !important;
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  letter-spacing: 0.04em;
  transition: background 0.25s, border-color 0.25s, color 0.25s !important;
}

.svc-dark-inner .btn:hover {
  background: var(--color-gold, #C9A84C) !important;
  border-color: var(--color-gold, #C9A84C) !important;
  color: #1A0D14 !important;
}

@media (max-width: 860px) {
  .svc-dark-inner {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 2rem 1.8rem;
  }
  .svc-dark-img { height: 200px; }
}

/* ==========================================
   BRIDAL STORY SCRAPBOOK SECTION
   (Magazine / Scrapbook Polaroid & Arch Layout)
========================================== */

.bridal-story-scrapbook {
  background: #FAF4E9;
  padding: 5rem 1.5rem 5.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.bs-top-bar {
  height: 5px;
  background: linear-gradient(90deg, #D4B2D8 0%, #E8A898 50%, #C9A84C 100%);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.bs-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

/* Washi tape sticker */
.bs-washi-tape {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 84px;
  height: 22px;
  background: rgba(232, 168, 152, 0.82);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(44, 16, 32, 0.12);
  z-index: 6;
}

/* Photo cards */
.bs-photo-card {
  position: relative;
  flex-shrink: 0;
}

.bs-arch-card {
  transform: rotate(-4deg);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.bs-arch-card:hover {
  transform: rotate(0deg) scale(1.04);
}

.bs-arch-img-wrap {
  width: 250px;
  height: 330px;
  border-radius: 120px 120px 14px 14px;
  overflow: hidden;
  border: 5px solid #FFFFFF;
  box-shadow: 0 14px 36px rgba(44, 16, 32, 0.12);
  background: #FFFFFF;
}

.bs-arch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bs-polaroid-card {
  transform: rotate(4deg);
  background: #FFFFFF;
  padding: 12px 12px 18px 12px;
  border-radius: 6px;
  box-shadow: 0 14px 36px rgba(44, 16, 32, 0.12);
  width: 240px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.bs-polaroid-card:hover {
  transform: rotate(0deg) scale(1.04);
}

.bs-polaroid-img-wrap {
  width: 100%;
  height: 250px;
  border-radius: 4px;
  overflow: hidden;
}

.bs-polaroid-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bs-polaroid-caption {
  display: block;
  text-align: center;
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text-main, #2C1020);
  margin-top: 10px;
}

/* Center Content */
.bs-content {
  max-width: 460px;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.bs-header-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.bs-branch-left,
.bs-branch-right {
  width: 50px;
  height: 18px;
}

.bs-title {
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-main, #2C1020);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

.bs-desc {
  font-family: var(--font-sans, sans-serif);
  font-size: 0.92rem;
  color: var(--color-text-light, #6E4A5B);
  line-height: 1.85;
  margin-bottom: 2.2rem;
  font-weight: 400;
}

.bs-link {
  display: inline-block;
  font-family: var(--font-sans, sans-serif);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-main, #2C1020);
  text-decoration: none;
  border-bottom: 1.5px solid var(--color-gold, #C9A84C);
  padding-bottom: 4px;
  transition: all 0.25s ease;
}

.bs-link:hover {
  color: var(--color-gold, #C9A84C);
  border-color: var(--color-text-main, #2C1020);
}

/* Sparkles */
.bs-sparkle {
  position: absolute;
  color: var(--color-gold, #C9A84C);
  font-size: 1.2rem;
  opacity: 0.75;
  pointer-events: none;
}

.bs-sparkle-1 {
  top: -20px;
  right: 15px;
}

.bs-sparkle-2 {
  bottom: 0px;
  left: 10px;
}

/* Botanical Illustrations on sides */
.bs-botanical {
  position: absolute;
  pointer-events: none;
  width: 90px;
  height: 200px;
}

.bs-botanical-left {
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.bs-botanical-right {
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive */
@media (max-width: 960px) {
  .bs-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .bs-arch-card, .bs-polaroid-card {
    transform: rotate(0deg);
  }
  .bs-botanical {
    display: none;
  }
}

@media (max-width: 520px) {
  .bridal-story-scrapbook {
    padding: 3.5rem 1rem 4rem;
  }
  .bs-arch-img-wrap {
    width: 210px;
    height: 270px;
  }
  .bs-polaroid-card {
    width: 210px;
  }
  .bs-polaroid-img-wrap {
    height: 220px;
  }
}

/* ==========================================
   PORTFOLIO LIGHTBOX PREVIEW MODAL
========================================== */

.portfolio-item {
  cursor: pointer;
}

.portfolio-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 13, 20, 0.94);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 24px;
}

.portfolio-lightbox.active {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 3px solid rgba(201, 168, 76, 0.45);
  object-fit: contain;
}

.lightbox-info {
  margin-top: 16px;
}

.lightbox-info h4 {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.lightbox-info span {
  font-family: var(--font-sans, sans-serif);
  font-size: 0.88rem;
  color: var(--color-gold, #C9A84C);
  letter-spacing: 0.05em;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 2.8rem;
  color: #FFFFFF;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  line-height: 1;
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--color-gold, #C9A84C);
  transform: scale(1.15);
}

/* =====================================================
   GLOBAL FAQ SECTION (Reference Replica Accordion)
===================================================== */
.global-faq-section {
  background: #FAF7F2;
  padding: 100px 24px;
}
.gfaq-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
  align-items: start;
}

/* Left Column */
.gfaq-left {
  position: sticky;
  top: 100px;
}
.gfaq-eyebrow {
  display: inline-block;
  font-family: var(--font-sans, sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-dark, #A07830);
  margin-bottom: 12px;
}
.gfaq-title {
  font-family: var(--font-serif, serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: #2C1020;
  line-height: 1.15;
  margin-bottom: 18px;
}
.gfaq-sub {
  font-family: var(--font-sans, sans-serif);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6B5B65;
  margin-bottom: 36px;
  max-width: 440px;
}
.gfaq-help-card {
  background: #F3ECE4;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(44, 16, 32, 0.06);
}
.gfaq-help-card h4 {
  font-family: var(--font-serif, serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #2C1020;
  margin-bottom: 10px;
}
.gfaq-help-card p {
  font-family: var(--font-sans, sans-serif);
  font-size: 0.85rem;
  line-height: 1.6;
  color: #6B5B65;
  margin-bottom: 20px;
}
.gfaq-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  background: #2C1020;
  color: #FFFFFF;
  border: 1.5px solid #C9A84C;
  border-radius: 50px;
  font-family: var(--font-sans, sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 16, 32, 0.2);
}
.gfaq-help-btn:hover {
  background: #3D1A2E;
  color: #E2C068;
  border-color: #E2C068;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 16, 32, 0.3);
}

/* Right Column (Accordion Cards) */
.gfaq-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gfaq-item {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(44, 16, 32, 0.07);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 16, 32, 0.03);
  transition: all 0.3s ease;
}
.gfaq-item:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 8px 30px rgba(44, 16, 32, 0.06);
}

.gfaq-item.active {
  border-color: #C9A84C;
  box-shadow: 0 10px 32px rgba(44, 16, 32, 0.08);
}
.gfaq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  outline: none;
}
.gfaq-question span:first-child {
  font-family: var(--font-serif, serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #2C1020;
  line-height: 1.35;
}
.gfaq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FAF6F0;
  color: #2C1020;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.gfaq-item.active .gfaq-icon {
  transform: rotate(180deg);
  background: #2C1020;
  color: #FFFFFF;
}
.gfaq-answer {
  display: none;
  padding: 0 28px 24px;
}
.gfaq-answer p {
  font-family: var(--font-sans, sans-serif);
  font-size: 0.92rem;
  line-height: 1.7;
  color: #5A4B55;
  margin: 0;
  border-top: 1px solid rgba(44, 16, 32, 0.06);
  padding-top: 16px;
}

@media (max-width: 900px) {
  .gfaq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gfaq-left {
    position: static;
  }
}


/* ==========================================
   PORTFOLIO LIGHTBOX STYLES
========================================== */

.portfolio-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.portfolio-lightbox.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 16, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 10001;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #E2C068;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}

.lightbox-close:hover {
  background: rgba(201, 168, 76, 0.35);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10001;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: #E2C068;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.2s;
}

.lightbox-nav:hover {
  background: rgba(201, 168, 76, 0.35);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-content {
  position: relative;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(90vw, 720px);
  width: 100%;
  gap: 1.25rem;
  padding: 1rem;
}

.lightbox-img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  max-height: 75vh;
}

.lightbox-img-wrap img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.35s ease;
  border-radius: 16px;
}

.lightbox-info {
  text-align: center;
  color: #F2EBE0;
}

.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.lightbox-badge {
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: #E2C068;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-family: var(--font-sans, sans-serif);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-counter {
  color: rgba(242, 235, 224, 0.55);
  font-size: 0.8rem;
  font-family: var(--font-sans, sans-serif);
}

.lightbox-info h3 {
  font-family: var(--font-serif, serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #F2EBE0;
  margin: 0 0 0.2rem;
}

.lightbox-info p {
  font-size: 0.85rem;
  color: rgba(242, 235, 224, 0.6);
  margin: 0;
}

/* Portfolio Grid & Item (agar already nahi hai) */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: #3D1A2E;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,8,16,0.88) 0%, rgba(20,8,16,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-zoom-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  background: rgba(201, 168, 76, 0.25);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: #E2C068;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-item:hover .portfolio-zoom-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.portfolio-overlay h4 {
  color: #F2EBE0;
  font-family: var(--font-serif, serif);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
  text-align: center;
}

.portfolio-overlay span {
  color: rgba(242, 235, 224, 0.65);
  font-size: 0.75rem;
  text-align: center;
}

@media (max-width: 600px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-nav { width: 40px; height: 40px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

