/* ==========================================================================
   MOD Beauty Studio — Ultra-Luxury Transparent & Cinematic Design System
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --bg-dark: #12100E;
  
  /* Brand Accents */
  --accent-orange: #F47A0A;       /* MOD Signature Orange */
  --accent-orange-hover: #D96904;
  --accent-orange-light: #FFEDE0;
  
  --accent-gold: #D4AF87;         /* Radiant Warm Gold */
  --accent-gold-light: #F0E4D5;
  --accent-gold-dark: #A58668;

  /* Typography Colors (High-Contrast for Direct Video Background) */
  --text-bright: #FFFFFF;
  --text-light: #F7F3EE;
  --text-muted: rgba(247, 243, 238, 0.85);
  --text-sub: rgba(247, 243, 238, 0.65);

  /* Subtle Transparent Borders */
  --border-transparent-light: rgba(255, 255, 255, 0.16);
  --border-transparent-hover: rgba(244, 122, 10, 0.55);
  --border-gold: rgba(212, 175, 135, 0.35);

  /* Typography Fonts */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Alex Brush', cursive;

  /* Geometry */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Shadows & Text Glows */
  --text-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.65);
  --text-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.75), 0 2px 6px rgba(0, 0, 0, 0.9);
  --text-shadow-lg: 0 6px 24px rgba(0, 0, 0, 0.85), 0 2px 8px rgba(0, 0, 0, 0.95);
  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.4);

  /* Transitions */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --trans-smooth: all 0.4s var(--ease-luxury);
  --trans-fast: all 0.25s ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-light);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: transparent;
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

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

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

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

input, select, textarea {
  font-family: inherit;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==========================================================================
   Pinned Background Video Canvas
   ========================================================================== */
.canvas-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: var(--bg-dark);
}

#frame-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Elegant Dual Ambient Gradient for Text Readability */
.canvas-ambient-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(18, 16, 14, 0.32) 0%, rgba(18, 16, 14, 0.05) 50%, rgba(18, 16, 14, 0.32) 100%),
    linear-gradient(90deg, rgba(18, 16, 14, 0.48) 0%, rgba(18, 16, 14, 0.18) 45%, rgba(18, 16, 14, 0.02) 100%);
  pointer-events: none;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.page-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-luxury), visibility 0.8s;
}

.page-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.brand-badge-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-badge-loader .mod-txt {
  font-family: var(--font-sans);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-light);
  line-height: 1;
}

.brand-badge-loader .studio-txt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--accent-orange);
  margin-top: 4px;
}

.preloader-bar-wrap {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 8px;
}

.preloader-bar {
  width: 0%;
  height: 100%;
  background: var(--accent-orange);
  border-radius: 99px;
  transition: width 0.3s ease;
}

.preloader-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 26px 0;
  transition: padding 0.4s var(--ease-luxury), background-color 0.4s var(--ease-luxury), box-shadow 0.4s ease;
}

.site-header.scrolled {
  padding: 14px 0;
  background-color: rgba(18, 16, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.site-logo-img {
  height: 82px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s var(--ease-luxury), filter 0.3s ease;
}

.brand-logo:hover .site-logo-img {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 18px rgba(244, 122, 10, 0.6));
}

.footer-logo-img {
  height: 85px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

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

.preloader-logo-img {
  height: 130px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 28px rgba(244, 122, 10, 0.6));
  animation: logoPulseGlow 2s infinite alternate ease-in-out;
}

@keyframes logoPulseGlow {
  0% {
    transform: scale(0.96);
    filter: drop-shadow(0 0 10px rgba(244, 122, 10, 0.3));
  }
  100% {
    transform: scale(1.03);
    filter: drop-shadow(0 0 24px rgba(244, 122, 10, 0.8));
  }
}

/* Nav Menu */
.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(247, 243, 238, 0.8);
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  text-shadow: var(--text-shadow-sm);
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-bright);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-orange);
  border-radius: 2px;
}

/* Header Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-book-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  color: var(--text-bright);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: var(--text-shadow-sm);
  transition: var(--trans-smooth);
}

.btn-book-nav .arrow-svg {
  transition: transform 0.25s ease;
}

.btn-book-nav:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 122, 10, 0.4);
}

.btn-book-nav:hover .arrow-svg {
  transform: translateX(4px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 24px;
  justify-content: center;
}

.mobile-toggle .bar {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-bright);
  border-radius: 2px;
  transition: var(--trans-smooth);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background-color: rgba(18, 16, 14, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 10000;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  transition: right 0.5s var(--ease-luxury);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  color: var(--text-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 40px 0;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-bright);
  transition: color 0.2s ease, transform 0.2s ease;
  display: block;
}

.mobile-link:hover {
  color: var(--accent-orange);
  transform: translateX(6px);
}

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-contact-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Global Button Styles
   ========================================================================== */
.btn-primary-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 30px;
  background-color: var(--accent-orange);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--trans-smooth);
  box-shadow: 0 8px 24px rgba(244, 122, 10, 0.4);
}

.btn-primary-orange:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(244, 122, 10, 0.55);
}

.btn-secondary-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  color: var(--text-bright);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: var(--text-shadow-sm);
  transition: var(--trans-smooth);
}

.btn-secondary-glass:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-gold-light);
  letter-spacing: 0.02em;
  text-shadow: var(--text-shadow-sm);
  transition: var(--trans-smooth);
}

.btn-text-arrow svg {
  transition: transform 0.25s ease;
}

.btn-text-arrow:hover {
  color: var(--accent-orange);
}

.btn-text-arrow:hover svg {
  transform: translateX(6px);
}

/* Section Tags & Headings */
.section-tag-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-tag-wrap.center {
  justify-content: center;
}

.section-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-orange);
  text-shadow: var(--text-shadow-sm);
}

.tag-line {
  width: 36px;
  height: 1.5px;
  background-color: var(--accent-orange);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  line-height: 1.15;
  font-weight: 500;
  color: var(--text-bright);
  letter-spacing: -0.01em;
  text-shadow: var(--text-shadow-md);
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 12px auto 0;
  line-height: 1.65;
  text-shadow: var(--text-shadow-sm);
}

.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

/* ==========================================================================
   1. Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 60px;
  background: transparent;
}

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-content-box {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 1s var(--ease-luxury) 0.3s forwards;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--accent-orange);
  text-shadow: var(--text-shadow-sm);
}

.eyebrow-line {
  width: 44px;
  height: 1.5px;
  background-color: var(--accent-orange);
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: 500;
  color: var(--text-bright);
  letter-spacing: -0.02em;
  text-shadow: var(--text-shadow-lg);
}

.hero-main-title .title-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
}

.hero-main-title .title-line:nth-child(1) {
  animation: heroFadeUp 1.1s var(--ease-luxury) 0.5s forwards;
}

.hero-main-title .title-line:nth-child(2) {
  animation: heroFadeUp 1.1s var(--ease-luxury) 0.7s forwards;
}

.hero-main-title .accent-word {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-orange);
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 25px rgba(244, 122, 10, 0.4);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 540px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1.1s var(--ease-luxury) 0.9s forwards;
  text-shadow: var(--text-shadow-md);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1.1s var(--ease-luxury) 1.1s forwards;
}

.hero-trust-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  color: var(--accent-gold-light);
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 1.2s var(--ease-luxury) 1.3s forwards;
  text-shadow: var(--text-shadow-sm);
}

.trust-dot {
  color: var(--accent-orange);
  font-size: 0.7rem;
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: var(--text-shadow-sm);
  transition: opacity 0.3s ease;
}

.hero-scroll-hint:hover {
  color: var(--accent-orange);
}

.scroll-arrow-anim {
  animation: arrowBounce 2s infinite ease-in-out;
  color: var(--accent-orange);
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ==========================================================================
   2. About Section (Fully Transparent Editorial Layout)
   ========================================================================== */
.section-about {
  padding: 130px 0;
  background: transparent;
  position: relative;
  z-index: 10;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
  background: transparent;
}

.about-visuals {
  position: relative;
}

.image-large-wrap {
  width: 86%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid var(--border-transparent-light);
}

.about-img-large {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.image-large-wrap:hover .about-img-large {
  transform: scale(1.04);
}

.image-small-wrap {
  position: absolute;
  bottom: -36px;
  right: 0;
  width: 52%;
  aspect-ratio: 4 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid rgba(18, 16, 14, 0.85);
}

.about-img-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.image-small-wrap:hover .about-img-small {
  transform: scale(1.06);
}

.img-badge-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(18, 16, 14, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-bright);
  display: flex;
  flex-direction: column;
}

.badge-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent-orange);
  line-height: 1;
}

.badge-txt {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--accent-gold-light);
}

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

.about-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-bright);
  font-weight: 400;
  text-shadow: var(--text-shadow-md);
}

.about-sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-shadow: var(--text-shadow-sm);
}

.about-action {
  margin-top: 8px;
}

.about-pills {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.pill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-bright);
  text-shadow: var(--text-shadow-sm);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  box-shadow: 0 0 10px var(--accent-orange);
}

/* ==========================================================================
   3. Services Section (Transparent Framed Cards)
   ========================================================================== */
.section-services {
  padding: 130px 0;
  background: transparent;
  position: relative;
  z-index: 10;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(18, 16, 14, 0.20);
  border: 1px solid var(--border-transparent-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-luxury), background-color 0.35s ease, box-shadow 0.4s ease, border-color 0.35s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(18, 16, 14, 0.60);
  border-color: var(--accent-orange);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.service-card-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background-color: #1a1816;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}

.service-card[data-service="Bridal Makeup"] .service-img {
  object-position: center 35%;
}

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

.service-cat-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(18, 16, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--accent-orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.service-orange-bar {
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background-color: var(--accent-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-luxury);
}

.service-card:hover .service-orange-bar {
  transform: scaleX(1);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.25;
  margin-bottom: 8px;
  text-shadow: var(--text-shadow-sm);
}

.service-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  text-shadow: var(--text-shadow-sm);
}

.service-explore-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-bright);
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.25s ease;
}

.arrow-circ {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-bright);
  transition: var(--trans-smooth);
}

.service-card:hover .service-explore-link {
  color: var(--accent-orange);
}

.service-card:hover .arrow-circ {
  background-color: var(--accent-orange);
  color: #FFFFFF;
  transform: translateX(4px);
}

/* ==========================================================================
   4. Featured Bridal Section
   ========================================================================== */
.section-featured-bridal {
  padding: 90px 0 130px;
  background: transparent;
  position: relative;
  z-index: 10;
}

.bridal-feature-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-transparent-light);
}

.bridal-bg-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bridal-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-luxury);
}

.bridal-card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(18, 16, 14, 0.94) 0%,
    rgba(18, 16, 14, 0.80) 45%,
    rgba(18, 16, 14, 0.35) 75%,
    rgba(18, 16, 14, 0.15) 100%
  );
}

.bridal-content-overlay {
  position: relative;
  z-index: 10;
  padding: 64px 72px;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bridal-badge-wrap {
  display: flex;
}

.bridal-badge {
  background: rgba(244, 122, 10, 0.2);
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-shadow: var(--text-shadow-sm);
}

.bridal-heading {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: 1.15;
  color: var(--text-bright);
  font-weight: 500;
  text-shadow: var(--text-shadow-md);
}

.bridal-description {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  text-shadow: var(--text-shadow-sm);
}

.bridal-cta-row {
  margin-top: 6px;
}

.bridal-perks-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.perk-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.perk-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 135, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

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

.perk-text strong {
  font-size: 0.86rem;
  color: var(--text-bright);
  font-weight: 600;
  text-shadow: var(--text-shadow-sm);
}

.perk-text span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ==========================================================================
   5. Why MOD Section (Transparent Framed Cards)
   ========================================================================== */
.section-why-mod {
  padding: 130px 0;
  background: transparent;
  position: relative;
  z-index: 10;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  background: rgba(18, 16, 14, 0.20);
  border: 1px solid var(--border-transparent-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-luxury), background-color 0.35s ease, box-shadow 0.4s ease, border-color 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  background: rgba(18, 16, 14, 0.60);
  border-color: var(--accent-orange);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.why-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  transition: var(--trans-smooth);
}

.why-card:hover .why-icon-wrap {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFFFFF;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.48rem;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.25;
  text-shadow: var(--text-shadow-sm);
}

.why-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-shadow: var(--text-shadow-sm);
}

.why-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-luxury);
}

.why-card:hover .why-accent-line {
  transform: scaleX(1);
}

/* ==========================================================================
   6. Before & After Interactive Slider
   ========================================================================== */
.section-transformation {
  padding: 130px 0;
  background: transparent;
  position: relative;
  z-index: 10;
}

.ba-slider-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 10;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: ew-resize;
  border: 1px solid var(--border-transparent-light);
}

.ba-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.ba-after {
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.ba-after .ba-img {
  width: 960px;
  max-width: none;
}

.ba-badge {
  position: absolute;
  top: 24px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5;
}

.ba-badge-before {
  right: 24px;
  background: rgba(18, 16, 14, 0.85);
  color: var(--text-bright);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ba-badge-after {
  left: 24px;
  background: rgba(244, 122, 10, 0.9);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  z-index: 10;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.ba-handle-line {
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 0 12px rgba(0,0,0,0.7);
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  border: 2px solid #FFFFFF;
}

/* ==========================================================================
   7. Gallery / Our Work (Transparent Grid)
   ========================================================================== */
.section-gallery {
  padding: 130px 0;
  background: transparent;
  position: relative;
  z-index: 10;
}

.gallery-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: var(--text-shadow-sm);
  transition: var(--trans-smooth);
}

.filter-tab:hover {
  color: var(--text-bright);
  border-color: var(--accent-orange);
  background-color: rgba(255, 255, 255, 0.15);
}

.filter-tab.active {
  background-color: var(--accent-orange);
  color: #FFFFFF;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 14px rgba(244, 122, 10, 0.4);
}

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

.gallery-item {
  transition: opacity 0.4s ease, transform 0.4s var(--ease-luxury);
}

.gallery-item.hidden {
  display: none;
}

.gallery-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  background-color: #1a1816;
  border: 1px solid var(--border-transparent-light);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 1;
  transition: background 0.4s ease;
}

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

.gallery-card:hover .gallery-overlay {
  background: linear-gradient(0deg, rgba(18, 16, 14, 0.92) 0%, rgba(18, 16, 14, 0.35) 50%, transparent 100%);
}

.gallery-cat {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 700;
}

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--text-bright);
  margin: 4px 0 12px;
  text-shadow: var(--text-shadow-sm);
}

.btn-view-look {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent-gold-light);
  transition: color 0.2s ease, transform 0.2s ease;
}

.gallery-card:hover .btn-view-look {
  color: var(--accent-orange);
  transform: translateX(4px);
}

/* ==========================================================================
   8. Testimonials Section (Transparent Carousel)
   ========================================================================== */
.section-testimonials {
  padding: 130px 0;
  background: transparent;
  position: relative;
  z-index: 10;
}

.testimonial-carousel-wrap {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  padding: 40px 32px;
  background: transparent;
}

.testimonial-quotes-icon {
  font-family: var(--font-serif);
  font-size: 6.5rem;
  color: var(--accent-orange);
  line-height: 0.6;
  opacity: 0.7;
  margin-bottom: 24px;
  text-shadow: 0 0 30px rgba(244, 122, 10, 0.4);
}

.testimonial-track {
  position: relative;
  min-height: 180px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.5s var(--ease-luxury);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.testi-stars {
  color: var(--accent-orange);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-shadow: 0 0 10px rgba(244, 122, 10, 0.5);
}

.testi-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-bright);
  font-style: italic;
  text-shadow: var(--text-shadow-md);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  text-shadow: var(--text-shadow-sm);
}

.author-role {
  font-size: 0.88rem;
  color: var(--accent-gold-light);
  font-weight: 500;
}

.carousel-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.btn-carousel-prev,
.btn-carousel-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-bright);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-smooth);
}

.btn-carousel-prev:hover,
.btn-carousel-next:hover {
  background: var(--accent-orange);
  color: #FFFFFF;
  border-color: var(--accent-orange);
  box-shadow: 0 0 15px rgba(244, 122, 10, 0.4);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-dots .dot.active {
  width: 24px;
  border-radius: var(--radius-pill);
  background: var(--accent-orange);
}

/* ==========================================================================
   9. Dramatic CTA Section (Fully Transparent over Background Video)
   ========================================================================== */
.section-dark-cta {
  position: relative;
  padding: 140px 0;
  background: transparent;
  overflow: hidden;
  z-index: 10;
}

.cta-container {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.brand-badge-mini {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--accent-orange);
  text-transform: uppercase;
  text-shadow: var(--text-shadow-sm);
}

.cta-heading {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  line-height: 1.15;
  font-weight: 500;
  color: var(--text-bright);
  text-shadow: var(--text-shadow-lg);
}

.cta-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 300;
  text-shadow: var(--text-shadow-md);
}

.cta-buttons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: rgba(37, 211, 102, 0.15);
  border: 1px solid #25D366;
  border-radius: var(--radius-pill);
  color: #25D366;
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--trans-smooth);
}

.btn-whatsapp-cta:hover {
  background-color: #25D366;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   10. Contact / Booking Section (Transparent Layout)
   ========================================================================== */
.section-contact {
  padding: 130px 0;
  background: transparent;
  position: relative;
  z-index: 10;
}

.contact-card {
  background: transparent;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.15;
  color: var(--text-bright);
  text-shadow: var(--text-shadow-md);
}

.contact-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-shadow: var(--text-shadow-sm);
}

.contact-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.c-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.c-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.c-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  font-weight: 600;
  text-shadow: var(--text-shadow-sm);
}

.c-val {
  font-size: 0.95rem;
  color: var(--text-bright);
  font-weight: 500;
  line-height: 1.4;
  text-shadow: var(--text-shadow-sm);
}

.c-val:hover {
  color: var(--accent-orange);
}

/* Booking Form Box */
.contact-form-col {
  background: rgba(18, 16, 14, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid var(--border-transparent-light);
  box-shadow: var(--shadow-card);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-bright);
  margin-bottom: 4px;
  text-shadow: var(--text-shadow-sm);
}

.form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-shadow: var(--text-shadow-sm);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-bright);
  text-shadow: var(--text-shadow-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 18px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-bright);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(247, 243, 238, 0.45);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(244, 122, 10, 0.25);
}

.form-group select option {
  background-color: #1a1816;
  color: #FFFFFF;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ==========================================================================
   10.1 Interactive Google Map Component
   ========================================================================== */
.studio-map-wrapper {
  margin-top: 56px;
  width: 100%;
}

.studio-map-card {
  background: rgba(18, 16, 14, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-transparent-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.studio-map-card:hover {
  border-color: rgba(244, 122, 10, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), 0 0 25px rgba(244, 122, 10, 0.1);
}

.map-card-header {
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
}

.map-header-left {
  max-width: 680px;
}

.map-studio-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-bright);
  line-height: 1.25;
  margin: 6px 0 6px;
  text-shadow: var(--text-shadow-sm);
}

.map-studio-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-shadow: var(--text-shadow-sm);
}

.btn-map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  white-space: nowrap;
  font-size: 0.88rem;
  box-shadow: 0 8px 20px rgba(244, 122, 10, 0.3);
}

.map-frame-box {
  position: relative;
  width: 100%;
  height: 480px;
  background-color: #12100e;
  overflow: hidden;
}

.studio-interactive-map {
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #191816;
}

.studio-map-custom-marker {
  background: transparent;
  border: none;
}

.pin-marker-pulse {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(244, 122, 10, 0.22);
  border: 2px solid #f47a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(244, 122, 10, 0.6);
  animation: mapPulse 2s infinite ease-in-out;
}

@keyframes mapPulse {
  0% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(244, 122, 10, 0.7);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 14px rgba(244, 122, 10, 0);
  }
  100% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(244, 122, 10, 0);
  }
}

.leaflet-popup-content-wrapper {
  background: #FFFFFF !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35) !important;
}

.leaflet-popup-tip {
  background: #FFFFFF !important;
}

.studio-google-map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Floating Bottom Bar */
.map-floating-bar {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(18, 16, 14, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
  z-index: 5;
}

.map-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-bright);
}

.map-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(244, 122, 10, 0.15);
  border: 1px solid rgba(244, 122, 10, 0.35);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-badge-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.3;
}

.map-badge-item span {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-directions:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(244, 122, 10, 0.4);
}

.c-val-link {
  transition: color 0.25s ease;
  display: inline-block;
}

.c-val-link:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

/* ==========================================================================
   11. Footer (Dark Transparent)
   ========================================================================== */
.site-footer {
  background-color: rgba(18, 16, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 90px 0 36px;
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 320px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--trans-smooth);
}

.social-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(244, 122, 10, 0.4);
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--accent-orange);
  transform: translateX(4px);
}

.footer-address {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.muted-gold {
  color: var(--accent-gold);
  font-size: 0.78rem;
}

.footer-hours {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(247, 243, 238, 0.6);
  flex-wrap: wrap;
  gap: 14px;
}

.footer-tagline-motto {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent-gold);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-legal a:hover {
  color: var(--accent-orange);
}

/* ==========================================================================
   12. Modals & Lightbox
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 16, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  padding: 24px;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background: rgba(22, 19, 17, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 44px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  transform: translateY(24px);
  transition: transform 0.4s var(--ease-luxury);
  color: var(--text-bright);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}

.modal-backdrop.active .modal-window {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-bright);
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: var(--accent-orange);
}

.modal-header-block {
  margin-bottom: 24px;
}

.modal-heading {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-bright);
  line-height: 1.2;
  margin: 6px 0 8px;
}

.modal-subheading {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.modal-booking-form input,
.modal-booking-form select {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
}

.modal-booking-form input:focus,
.modal-booking-form select:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(244, 122, 10, 0.25);
}

.modal-booking-form select option {
  background-color: #1a1816;
  color: #FFFFFF;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 16, 14, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  padding: 40px;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-smooth);
}

.lightbox-close:hover {
  background: var(--accent-orange);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-smooth);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent-orange);
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  width: 100%;
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 65vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

#lightbox-img {
  width: 100%;
  height: 100%;
  max-height: 65vh;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--text-bright);
}

.lightbox-cat {
  font-size: 0.75rem;
  color: var(--accent-orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lightbox-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
}

/* Toast */
.toast-popup {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: rgba(18, 16, 14, 0.94);
  border: 1px solid var(--accent-orange);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  z-index: 40000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-luxury);
  color: var(--text-bright);
}

.toast-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast-check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: #FFFFFF;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-body {
  display: flex;
  flex-direction: column;
}

.toast-title {
  font-size: 0.92rem;
  color: #FFFFFF;
}

.toast-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

[data-reveal="fade-left"] {
  transform: translateX(30px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

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

/* ==========================================================================
   Photography Services Section
   ========================================================================== */
.section-photography {
  padding: 130px 0;
  background: rgba(18, 16, 14, 0.72);
  position: relative;
  z-index: 10;
}

.photography-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.photography-heading .section-title {
  max-width: 680px;
}

.photography-heading .section-subtitle {
  max-width: 290px;
  margin: 0;
}

.photography-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.photography-service-card {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-transparent-light);
  border-radius: var(--radius-lg);
  background: var(--bg-dark);
}

.photography-service-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}

.photography-service-card:hover img {
  transform: scale(1.05);
}

.photography-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 16, 14, 0.94) 0%, rgba(18, 16, 14, 0.18) 68%, transparent 100%);
}

.photography-service-overlay {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  z-index: 1;
}

.photography-service-number {
  color: var(--accent-orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.photography-service-overlay h3 {
  max-width: 430px;
  margin: 8px 0 10px;
  color: var(--text-bright);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
}

.photography-service-overlay p {
  max-width: 440px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.photography-booking {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
  margin-top: 24px;
  padding: 52px;
  border: 1px solid var(--border-transparent-light);
  border-radius: var(--radius-lg);
  background: rgba(18, 16, 14, 0.84);
}

.photography-booking-copy h3 {
  max-width: 390px;
  margin: 12px 0 16px;
  color: var(--text-bright);
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 0.96;
}

.photography-booking-copy p {
  max-width: 360px;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.photography-form {
  display: grid;
  gap: 16px;
}

.photography-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.photography-form .form-group {
  display: grid;
  gap: 7px;
}

.photography-form label {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.photography-form input,
.photography-form select,
.photography-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-transparent-light);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-bright);
  font-size: 0.8rem;
}

.photography-form select option {
  background-color: #1a1816;
  color: var(--text-bright);
}

.photography-form textarea {
  resize: vertical;
}

.photography-form input:focus,
.photography-form select:focus,
.photography-form textarea:focus {
  border-color: var(--accent-orange);
}

@media (max-width: 800px) {
  .section-photography {
    padding: 90px 0;
  }

  .photography-heading,
  .photography-booking {
    display: block;
  }

  .photography-heading .section-subtitle {
    margin-top: 18px;
  }

  .photography-service-grid {
    grid-template-columns: 1fr;
  }

  .photography-booking {
    padding: 30px 22px;
  }

  .photography-form {
    margin-top: 34px;
  }
}

@media (max-width: 520px) {
  .photography-form-row {
    grid-template-columns: 1fr;
  }

  .photography-service-card,
  .photography-service-card img {
    min-height: 390px;
  }

  .photography-service-overlay {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .image-large-wrap {
    width: 100%;
  }
  .contact-card {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-main-title {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .bridal-content-overlay {
    padding: 44px 32px;
  }
  .bridal-heading {
    font-size: 2.5rem;
  }
  .bridal-perks-row {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .map-card-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 18px;
  }
  .map-floating-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    position: static;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
  .map-frame-box {
    height: 380px;
  }
  .map-badge-actions {
    width: 100%;
  }
  .btn-directions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-header {
    padding: 14px 0;
  }

  .header-inner {
    padding-right: 18px;
    padding-left: 18px;
    gap: 10px;
  }

  .site-logo-img {
    height: 58px;
  }

  .header-actions {
    gap: 10px;
  }

  .btn-book-nav {
    max-width: 178px;
    padding: 9px 13px;
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .mobile-toggle {
    flex: 0 0 30px;
    width: 30px;
  }

  .hero-section {
    padding-top: 96px;
    padding-bottom: 44px;
  }

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

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-cta-group {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-cta-group .btn-primary-orange,
  .hero-cta-group .btn-secondary-glass {
    width: 100%;
  }

  .section-about,
  .section-services,
  .section-why-mod,
  .section-transformation,
  .section-gallery,
  .section-testimonials,
  .section-contact {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .ba-slider-container {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
  }

  .ba-badge {
    top: 14px;
    max-width: 42%;
    padding: 6px 10px;
    font-size: 0.62rem;
    line-height: 1.35;
    letter-spacing: 0.1em;
    text-align: center;
  }

  .ba-badge-before {
    right: 12px;
  }

  .ba-badge-after {
    left: 12px;
  }

  .ba-handle-button {
    width: 42px;
    height: 42px;
  }

  .section-subtitle {
    font-size: 0.96rem;
  }

  .gallery-filters {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .filter-tab {
    padding: 8px 12px;
  }

  .modal-backdrop {
    align-items: flex-start;
    padding: 16px;
    overflow-y: auto;
  }

  .modal-window {
    padding: 32px 20px 24px;
    border-radius: var(--radius-lg);
  }

  .modal-heading {
    padding-right: 26px;
    font-size: 1.75rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-col {
    padding: 28px 20px;
  }
  .map-studio-title {
    font-size: 1.55rem;
  }
  .map-card-header {
    padding: 22px 18px;
  }
  .map-frame-box {
    height: 300px;
  }
  .btn-map-link {
    width: 100%;
    justify-content: center;
  }
  .footer-logo-img {
    height: 68px;
  }
  .preloader-logo-img {
    height: 100px;
  }
  .hero-scroll-hint {
    display: none;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

body.chatway--active .chatway--trigger-container,
body.chatway--active .chatway--frame-container {
  left: 24px !important;
  right: auto !important;
}

@media (max-width: 600px) {
  body.chatway--active .chatway--trigger-container,
  body.chatway--active .chatway--frame-container {
    left: 16px !important;
    right: auto !important;
  }
}
