/* ==========================================================================
   RAVI MEHNDI STUDIO - LUXURY DESIGN SYSTEM & STYLESHEET
   Refined Indian Bridal Aesthetic | Editorial Luxury | Cream & Chocolate Palette
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-main: #FBF8F2;
  --bg-card: #FFFFFF;
  --bg-soft: #F5EFEB;
  --bg-cream-alt: #F0E8DF;
  --bg-dark: #19110B;
  --bg-dark-surface: #241A13;
  
  --text-dark: #23160E;
  --text-body: #4A3528;
  --text-muted: #7D6656;
  --text-light: #FAF6F0;
  --text-gold: #C6922C;

  --accent-gold: #D4AF37;
  --accent-gold-light: #F3E5AB;
  --accent-gold-dark: #A67C1E;
  --accent-gold-gradient: linear-gradient(135deg, #E8C872 0%, #C9972E 50%, #9F7216 100%);
  --accent-gold-soft-bg: rgba(212, 175, 55, 0.12);

  --btn-terracotta: #8C532E;
  --btn-terracotta-hover: #754220;
  --btn-gradient: linear-gradient(135deg, #96643D 0%, #7A4926 100%);

  --border-light: rgba(140, 83, 46, 0.15);
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-gold-strong: rgba(212, 175, 55, 0.8);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(44, 26, 17, 0.05);
  --shadow-md: 0 10px 30px rgba(44, 26, 17, 0.08);
  --shadow-lg: 0 20px 50px rgba(44, 26, 17, 0.12);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
  --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.35);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-script: 'Alex Brush', 'Italianno', cursive;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --container-max: 1320px;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
}

/* --------------------------------------------------------------------------
   RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-body);
}

body {
  font-family: var(--font-sans);
  line-height: 1.65;
  color: var(--text-body);
  background-color: var(--bg-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  position: relative;
}

.section-cream {
  background-color: var(--bg-soft);
}

.section-white {
  background-color: var(--bg-card);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */
.font-serif {
  font-family: var(--font-serif);
}

.font-display {
  font-family: var(--font-display);
}

.font-script {
  font-family: var(--font-script);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: #FFFFFF;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle-script {
  font-family: var(--font-script);
  font-size: 2.25rem;
  color: var(--accent-gold-dark);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.text-gold {
  color: var(--accent-gold);
}

.gold-gradient-text {
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.75rem auto 1.25rem auto;
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.ornament-divider::before,
.ornament-divider::after {
  content: '';
  height: 1px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* --------------------------------------------------------------------------
   BUTTONS & BADGES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--btn-gradient);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(122, 73, 38, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #A87146 0%, #87522B 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(122, 73, 38, 0.38);
  color: #FFFFFF;
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--btn-terracotta);
}

.btn-secondary:hover {
  background: var(--btn-terracotta);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(122, 73, 38, 0.2);
}

.btn-gold {
  background: var(--accent-gold-gradient);
  color: #19110B;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(201, 151, 46, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 151, 46, 0.45);
  color: #000000;
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 600;
  border: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.78rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(140, 83, 46, 0.08);
  color: var(--btn-terracotta);
  border: 1px solid rgba(140, 83, 46, 0.18);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-gold {
  background: var(--accent-gold-soft-bg);
  color: var(--accent-gold-dark);
  border-color: var(--border-gold);
}

/* --------------------------------------------------------------------------
   HEADER & NAVBAR
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(251, 248, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(140, 83, 46, 0.1);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background-color: rgba(251, 248, 242, 0.98);
  box-shadow: var(--shadow-sm);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-emblem {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF9EB 0%, #F5E5C9 100%);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-emblem svg {
  width: 32px;
  height: 32px;
  color: var(--accent-gold-dark);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--accent-gold-dark);
  line-height: 1.1;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--btn-terracotta);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta {
  display: inline-flex;
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-dark);
  font-size: 1.6rem;
  align-items: center;
  justify-content: center;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background-color: #FAF6F0;
  z-index: 2000;
  box-shadow: var(--shadow-dark);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25, 17, 11, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 600;
}

.mobile-nav-link:hover {
  color: var(--btn-terracotta);
  padding-left: 0.5rem;
}

/* --------------------------------------------------------------------------
   HERO SECTION (Matching Reference Screenshot `design.png`)
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-main);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 3.5rem;
  align-items: center;
}

/* Hero Left Column */
.hero-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-brand-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-emblem-lg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFFBF2 30%, #F5E3C0 100%);
  border: 2.5px solid var(--accent-gold);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.3rem;
  flex-shrink: 0;
  position: relative;
}

.hero-emblem-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-emblem-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--btn-terracotta);
  line-height: 1;
}

.hero-emblem-sub {
  font-size: 0.48rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.hero-brand-titles {
  display: flex;
  flex-direction: column;
}

.hero-brand-name {
  font-family: var(--font-serif);
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero-artist-script {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--text-dark);
  line-height: 1;
  margin-top: -0.2rem;
}

.hero-ornament {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent-gold);
  font-size: 0.95rem;
  margin: 0.9rem 0 1.25rem 0;
}

.hero-ornament::before,
.hero-ornament::after {
  content: '';
  height: 1.5px;
  width: 45px;
  background: var(--accent-gold);
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  width: 100%;
}

.hero-feature-badges {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
}

.badge-designer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #F0E6DA;
  border: 1px solid rgba(140, 83, 46, 0.18);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  width: fit-content;
}

.badge-designer-pill svg {
  width: 22px;
  height: 22px;
  color: var(--btn-terracotta);
}

.badge-collection-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.collection-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--btn-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--btn-terracotta);
  flex-shrink: 0;
}

.collection-text {
  display: flex;
  flex-direction: column;
}

.collection-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.collection-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   HERO RIGHT COLUMN - ASYMMETRIC IMAGE COLLAGE (Matching design.png)
   -------------------------------------------------------------------------- */
.hero-collage-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: transparent;
}

.collage-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(44, 26, 17, 0.1);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1), box-shadow 0.4s ease;
  background-color: var(--bg-cream-alt);
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.collage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(44, 26, 17, 0.18), 0 0 0 2px var(--accent-gold);
}

.collage-card:hover img {
  transform: scale(1.04);
}

/* Card Overlay Label Badge */
.card-pill-tag {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  background: rgba(18, 12, 8, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #FFFFFF;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-serif);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition-fast);
}

.collage-card:hover .card-pill-tag {
  background: rgba(18, 12, 8, 0.92);
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
}

/* Top Hero Card */
.collage-row-top {
  width: 100%;
}

.collage-card-hero-main {
  height: 290px;
}

/* Middle Rows (2 columns) */
.collage-row-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.collage-card-medium {
  height: 200px;
}

/* Bottom Row (4 columns) */
.collage-row-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.collage-card-small {
  height: 125px;
}

.collage-card-small .card-pill-tag {
  bottom: 0.5rem;
  left: 0.5rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
}

/* --------------------------------------------------------------------------
   REFERENCE BOTTOM STRIP (Matching design.png chocolate bar)
   -------------------------------------------------------------------------- */
.reference-bottom-bar {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 1.1rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.ref-bar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
}

.ref-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.ref-phone-badge:hover {
  background: var(--accent-gold-soft-bg);
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
  transform: translateY(-2px);
}

.ref-phone-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #19110B;
}

.ref-address-text {
  font-size: 0.95rem;
  color: rgba(250, 246, 240, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 900px;
}

/* --------------------------------------------------------------------------
   ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

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

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(212, 175, 55, 0.3);
}

.about-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-stat-pill {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--bg-card);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--btn-terracotta);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.3;
}

.about-content-column {
  display: flex;
  flex-direction: column;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0 2.5rem 0;
}

.about-feat-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.feat-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-gold-soft-bg);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: var(--text-dark);
}

.feat-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.service-card-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-card-img-wrap img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(25, 17, 11, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.service-card-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(140, 83, 46, 0.1);
}

.service-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--btn-terracotta);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.service-card-link:hover {
  color: var(--accent-gold-dark);
  gap: 0.7rem;
}

/* --------------------------------------------------------------------------
   GALLERY SECTION (Filterable & Lightbox)
   -------------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid rgba(140, 83, 46, 0.2);
  color: var(--text-dark);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--btn-terracotta);
  border-color: var(--btn-terracotta);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(140, 83, 46, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 17, 11, 0.85) 0%, rgba(25, 17, 11, 0.2) 60%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 2px var(--accent-gold);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.gallery-item-category {
  font-size: 0.8rem;
  color: var(--accent-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-zoom-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.1rem;
}

.gallery-footer-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* --------------------------------------------------------------------------
   LIGHTBOX MODAL
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 6, 0.95);
  backdrop-filter: blur(12px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  padding: 2rem;
}

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

.lightbox-content-box {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 1.5px solid var(--border-gold);
}

.lightbox-img-wrap img {
  max-height: 70vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 1rem;
  text-align: center;
  color: var(--text-light);
}

.lightbox-caption h4 {
  color: #FFFFFF;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.lightbox-close-btn {
  position: absolute;
  top: -3rem;
  right: 0;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-close-btn:hover {
  color: var(--accent-gold);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--border-gold);
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: var(--transition-fast);
}

.lightbox-nav-btn:hover {
  background: var(--accent-gold);
  color: #19110B;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

/* --------------------------------------------------------------------------
   EXPERIENCE / ORGANIC HENNA BANNER
   -------------------------------------------------------------------------- */
.organic-banner {
  background: linear-gradient(135deg, #24160E 0%, #150D08 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  border: 1.5px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.organic-banner::after {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.organic-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.organic-banner h3 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.organic-banner p {
  color: rgba(250, 246, 240, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.organic-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.org-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  color: var(--accent-gold-light);
  font-size: 0.88rem;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--accent-gold);
  opacity: 0.35;
  font-family: var(--font-serif);
  margin-bottom: -1rem;
}

.star-rating {
  color: #F5A623;
  font-size: 1.1rem;
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.author-avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F9EDE1 0%, #E8D3BF 100%);
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--btn-terracotta);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info h5 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   BOOKING & APPOINTMENT SECTION
   -------------------------------------------------------------------------- */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.booking-info-col {
  display: flex;
  flex-direction: column;
}

.booking-info-col h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.booking-info-col p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.booking-perk-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.booking-perk-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.whatsapp-box-highlight {
  background: #F4FAF6;
  border: 1.5px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.whatsapp-box-highlight h4 {
  color: #128C7E;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Booking Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(140, 83, 46, 0.2);
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--btn-terracotta);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(140, 83, 46, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   STUDIO & MAP SECTION
   -------------------------------------------------------------------------- */
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.studio-info-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  border: 1px solid var(--border-light);
}

.studio-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.studio-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.studio-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--btn-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.studio-contact-details h5 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.studio-contact-details p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.map-frame-wrap {
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-dark);
  color: rgba(250, 246, 240, 0.85);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 2px solid var(--accent-gold-dark);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand-col p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(250, 246, 240, 0.7);
  margin: 1.25rem 0 1.75rem 0;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.social-circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-circle-btn:hover {
  background: var(--accent-gold);
  color: #19110B;
  transform: translateY(-3px);
}

.footer-col-title {
  color: #FFFFFF;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  color: rgba(250, 246, 240, 0.75);
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-gold-light);
  padding-left: 0.4rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(250, 246, 240, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* --------------------------------------------------------------------------
   FLOATING ACTION BUTTONS
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 1500;
  cursor: pointer;
  transition: var(--transition-smooth);
  animation: pulse-green 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN (Breakpoints for 1024px, 768px, 480px, 320px)
   -------------------------------------------------------------------------- */
@media (max-width: 1140px) {
  .hero-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 991px) {
  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .nav-desktop, .header-cta {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-left-content {
    align-items: center;
    text-align: center;
  }

  .hero-brand-badge {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-feature-badges {
    align-items: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-stat-pill {
    bottom: 1rem;
    right: 1rem;
  }

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

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

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

  .booking-wrap {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

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

  .organic-badges-list {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .collage-card-hero-main {
    height: 240px;
  }

  .collage-card-medium {
    height: 160px;
  }

  .collage-row-quad {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .collage-card-small {
    height: 120px;
  }

  .form-row-duo {
    grid-template-columns: 1fr;
  }

  .about-features-list {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .floating-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-main-title {
    font-size: 2.15rem;
  }

  .hero-brand-name {
    font-size: 1.75rem;
  }

  .hero-artist-script {
    font-size: 2rem;
  }

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

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

  .hero-cta-group .btn {
    width: 100%;
  }

  .booking-wrap {
    padding: 1.5rem;
  }

  .organic-banner {
    padding: 2rem 1.5rem;
  }

  .collage-row-duo {
    grid-template-columns: 1fr;
  }

  .collage-card-medium {
    height: 180px;
  }
}
