/* =============================================
   BUMP TO BABY STUDIO - Premium Theme
   Gold & Black | 3D Parallax | Luxury
   ============================================= */

/* --- CSS Variables --- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #8B7532;
  --gold-shimmer: #D4AF37;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --black: #0A0A0A;
  --black-light: #141414;
  --black-card: #1A1A1A;
  --black-nav: rgba(10, 10, 10, 0.85);
  --white-warm: #F5F0E8;
  --white: #FFFFFF;
  --gray: #888;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Montserrat', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white-warm);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--gold-light);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

p {
  font-size: 1.15rem;
  color: var(--white-warm);
  opacity: 0.9;
}

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

/* --- Preloader --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--black-card);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  padding: 12px 60px;
  background: var(--black-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo img {
  height: 45px;
  width: auto;
  transition: var(--transition);
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.25);
  background: var(--black-light);
  object-fit: cover;
  object-position: top;
  aspect-ratio: 1;
}

.navbar.scrolled .nav-logo img {
  height: 38px;
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 1px;
}

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

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-warm);
  padding: 10px 16px;
  position: relative;
  transition: color var(--transition);
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--gold);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
  width: 70%;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--black-light);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  list-style: none;
}

.nav-menu > li:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 10px 24px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-warm);
  transition: all var(--transition);
}

.nav-dropdown li a:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  padding-left: 30px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.4) 40%,
    rgba(10, 10, 10, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 24px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
}

.hero h1 .gold {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--white-warm);
  opacity: 0;
  transform: translateY(30px);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 1s ease 2s forwards;
}

.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeInUp {
  to { opacity: 0.6; }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
}

.btn-gold:hover {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.3);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.2);
}

.btn-white {
  background: transparent;
  color: var(--white-warm);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* --- Section Styles --- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background: var(--black);
}

.section-darker {
  background: var(--black-light);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
}

.section-title .gold {
  color: var(--gold);
  font-style: italic;
}

.section-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.8;
}

/* --- Parallax Section --- */
.parallax-section {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.8) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}

.parallax-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.parallax-content p {
  font-size: 1.2rem;
  max-width: 500px;
  margin: 0 auto;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
  transform-style: preserve-3d;
  perspective: 1000px;
  height: 450px;
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.05);
  transform: translateY(-8px);
}

.service-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow), opacity var(--transition);
  opacity: 1;
}

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

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.2), rgba(10, 10, 10, 0.75));
}

.service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.service-card-body h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-card-body p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--white-warm);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.service-card-link {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}

.service-card-link:hover {
  gap: 14px;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

/* --- Maternity Highlight (Home page) --- */
.maternity-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.maternity-images {
  position: relative;
  height: 600px;
}

.maternity-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 80%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.maternity-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.maternity-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 60%;
  border-radius: 4px;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.maternity-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.maternity-text .section-label {
  text-align: left;
}

.maternity-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.maternity-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.maternity-text .btn {
  margin-top: 20px;
}

/* Gold decorative line */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 20px;
}

/* --- About Teaser --- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-teaser-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.about-teaser-text p {
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
}

.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

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

.about-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.3;
}

/* --- Testimonials --- */
.testimonials-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 0 20px;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white-warm);
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.testimonial-author {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
}

.testimonial-role {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--gray);
  margin-top: 4px;
}

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

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--black-card);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
}

.testimonials-dots .dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* --- Gallery --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--white-warm);
  padding: 10px 24px;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.gallery-item.landscape {
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-item-overlay span {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

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

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  font-size: 2rem;
  transition: transform var(--transition);
  background: none;
  border: none;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--transition);
}

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

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

/* --- Team Section --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.team-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  transition: all var(--transition);
}

.team-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--black);
}

.team-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--gold);
}

.team-card p {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-info-item h4 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.95rem;
  opacity: 0.8;
}

.contact-cta {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  padding: 50px;
  text-align: center;
}

.contact-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.contact-cta p {
  margin-bottom: 30px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white) !important;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 16px 36px;
  border-radius: 50px;
  transition: all var(--transition);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  color: var(--white) !important;
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
}

/* --- Footer --- */
.footer {
  background: var(--black-light);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo img {
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.2);
  background: var(--black-light);
  object-fit: cover;
  object-position: top;
  aspect-ratio: 1;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  opacity: 0.7;
  max-width: 300px;
}

.footer h4 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--white-warm);
  opacity: 0.6;
  transition: all var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  opacity: 0.5;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

/* --- Page Hero (for inner pages) --- */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero .parallax-bg {
  top: -30%;
  height: 160%;
}

.page-hero .parallax-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.7) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-content .section-label {
  margin-bottom: 16px;
}

.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.page-hero-content p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* --- Service Detail Page --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-img {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.service-detail-img img {
  width: 100%;
  height: auto;
  display: block;
}

.service-detail-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  pointer-events: none;
}

.service-detail-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.service-detail-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.service-features {
  list-style: none;
  margin: 20px 0 30px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--white-warm);
  opacity: 0.85;
}

.service-features li::before {
  content: '\2726';
  color: var(--gold);
  font-size: 0.8rem;
}

/* --- Service Gallery Grid --- */
.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-gallery .gallery-item {
  aspect-ratio: 1;
}

/* --- About Page Content --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.about-content-text p {
  margin-bottom: 16px;
}

.about-content-img {
  border-radius: 4px;
  overflow: hidden;
}

.about-content-img img {
  width: 100%;
  height: auto;
}

/* --- Locations --- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.location-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition);
}

.location-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-5px);
}

.location-card h3 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.location-card p {
  font-size: 0.95rem;
  opacity: 0.7;
}

.location-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--gold);
}

/* --- Animations (scroll reveal) --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .navbar {
    padding: 16px 30px;
  }

  .navbar.scrolled {
    padding: 12px 30px;
  }

  .maternity-highlight,
  .about-teaser,
  .service-detail,
  .service-detail.reverse,
  .contact-grid,
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail.reverse {
    direction: ltr;
  }

  .maternity-images {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .maternity-img-main {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
  }

  .maternity-img-secondary {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    border-width: 2px;
  }

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

  .maternity-text .section-label {
    text-align: center;
  }

  .maternity-text .gold-line {
    margin: 0 auto 20px;
  }

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

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

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--black-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 0;
    transition: right var(--transition);
    border-left: 1px solid rgba(201, 168, 76, 0.1);
    overflow-y: auto;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-menu > li > a {
    display: block;
    padding: 14px 0;
    font-size: 0.85rem;
  }

  .nav-menu > li > a::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding: 0 0 8px 16px;
    min-width: auto;
    display: none;
  }

  .nav-menu > li:hover > .nav-dropdown,
  .nav-menu > li.dropdown-open > .nav-dropdown {
    display: block;
  }

  .nav-dropdown li a {
    padding: 8px 0;
    font-size: 0.7rem;
  }

  .nav-toggle {
    display: flex;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .maternity-images {
    gap: 8px;
  }

  .maternity-img-main,
  .maternity-img-secondary {
    aspect-ratio: 3/4;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .stat-number {
    font-size: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

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

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

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

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

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

  .parallax-section {
    height: 50vh;
  }

  .page-hero {
    height: 50vh;
    min-height: 300px;
  }

  .contact-cta {
    padding: 30px 20px;
  }
}

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

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

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

  .btn {
    padding: 14px 32px;
    font-size: 0.7rem;
  }

  .maternity-images {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .maternity-img-main,
  .maternity-img-secondary {
    aspect-ratio: 4/5;
  }

  .maternity-img-secondary {
    border: 2px solid var(--gold);
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* --- Gallery Slider (Homepage) --- */
.gallery-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.gallery-slider-track {
  display: flex;
  gap: 16px;
  animation: sliderScroll 40s linear infinite;
  width: max-content;
}

.gallery-slider:hover .gallery-slider-track {
  animation-play-state: paused;
}

.gallery-slide {
  flex-shrink: 0;
  width: 300px;
  height: 400px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
}

.gallery-slide:hover {
  transform: scale(1.03);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow);
}

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

.gallery-slide span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(10,10,10,0.85), transparent);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-slide:hover span {
  opacity: 1;
}

@keyframes sliderScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .gallery-slide {
    width: 220px;
    height: 300px;
  }

  .gallery-slider-track {
    gap: 10px;
    animation-duration: 30s;
  }
}

@media (max-width: 480px) {
  .gallery-slide {
    width: 180px;
    height: 250px;
  }
}

/* --- Utility --- */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

/* Mobile overlay when nav is open */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}
