/* ===== KHADIJA MAKEUP ARTIST — Luxury Beauty Website ===== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --rose-gold: #b76e79;
  --rose-gold-light: #d4a0a7;
  --rose-gold-dark: #8e535c;
  --gold-shimmer: #d4af37;
  --cream: #faf7f5;
  --cream-warm: #f5ece6;
  --white-soft: #fffbf9;
  --charcoal: #2d2326;
  --charcoal-light: #3d3336;
  --text-primary: #2d2326;
  --text-secondary: #6b5b60;
  --text-muted: #9b8b90;
  --section-padding: clamp(60px, 10vw, 120px);
  --container-width: 1200px;
  --container-padding: clamp(20px, 5vw, 40px);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-soft: 0 4px 30px rgba(183, 110, 121, 0.08);
  --shadow-medium: 0 8px 40px rgba(183, 110, 121, 0.12);
  --shadow-glow: 0 0 40px rgba(244, 114, 182, 0.15);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white-soft);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--transition-smooth); }
ul { list-style: none; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.reveal-scale.active { opacity: 1; transform: scale(1); }

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

/* ---------- Ornament ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.ornament-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
}
.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--rose-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Section titles */
.section-subtitle {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-description {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--transition-smooth);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(250, 247, 245, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(183, 110, 121, 0.1);
  box-shadow: var(--shadow-soft);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 1px;
}
.nav-logo span {
  color: var(--rose-gold);
  font-style: italic;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose-gold);
  transition: width 0.4s var(--transition-smooth);
}
.nav-links a:hover { color: var(--rose-gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-sans) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 12px 28px !important;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-light)) !important;
  color: white !important;
  border-radius: 50px;
  transition: all 0.4s var(--transition-smooth) !important;
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.25);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(183, 110, 121, 0.35) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s var(--transition-smooth);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white-soft) 100%);
    transition: right 0.5s var(--transition-smooth);
    gap: 28px;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 16px; letter-spacing: 3px; }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(165deg, var(--white-soft) 0%, var(--pink-50) 30%, var(--cream-warm) 60%, var(--pink-100) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.08), transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.06), transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--container-padding);
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--rose-gold);
  background: rgba(183, 110, 121, 0.08);
  padding: 10px 28px;
  border-radius: 50px;
  border: 1px solid rgba(183, 110, 121, 0.15);
  margin-bottom: 32px;
  animation: fadeDown 1s 0.3s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 86px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.05;
  margin-bottom: 8px;
  animation: fadeUp 1s 0.5s both;
}
.hero-title .accent {
  color: var(--rose-gold);
  font-style: italic;
  display: block;
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(18px, 3vw, 26px);
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-style: italic;
  animation: fadeUp 1s 0.7s both;
}
.hero-location {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
  animation: fadeUp 1s 0.8s both;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.9s both;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--rose-gold), var(--pink-400));
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 0 8px 30px rgba(183, 110, 121, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(183, 110, 121, 0.4);
}
.btn-primary:hover::before { left: 100%; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 40px;
  background: transparent;
  color: var(--rose-gold);
  border: 2px solid var(--rose-gold-light);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
}
.btn-secondary:hover {
  background: rgba(183, 110, 121, 0.05);
  border-color: var(--rose-gold);
  transform: translateY(-2px);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s 1.2s both;
  z-index: 2;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--rose-gold-light);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--rose-gold);
  border-radius: 3px;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}
.scroll-text {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- SERVICES ---------- */
.services {
  padding: var(--section-padding) 0;
  background: var(--white-soft);
  position: relative;
}
.services-header { text-align: center; margin-bottom: 60px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(183, 110, 121, 0.08);
  transition: all 0.5s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-gold), var(--pink-400), var(--rose-gold-light));
  transform: scaleX(0);
  transition: transform 0.5s var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(183, 110, 121, 0.15);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--pink-50), var(--pink-100));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: all 0.4s var(--transition-smooth);
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
}
.service-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.service-description {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-price {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--rose-gold);
  letter-spacing: 1px;
  padding: 8px 20px;
  background: rgba(183, 110, 121, 0.06);
  border-radius: 50px;
  display: inline-block;
}

/* ---------- PORTFOLIO ---------- */
.portfolio {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white-soft) 100%);
}
.portfolio-header { text-align: center; margin-bottom: 50px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition-smooth), filter 0.5s var(--transition-smooth);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 35, 38, 0.7) 0%, rgba(45, 35, 38, 0) 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--transition-smooth);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  font-family: var(--font-display);
  font-size: 18px;
  color: white;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 32px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 0.7; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}
.lightbox-nav:hover {
  background: rgba(255,255,255,0.25);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

.gallery-item.featured { grid-row: span 2; }

/* ---------- ABOUT ---------- */
.about {
  padding: var(--section-padding) 0;
  background: var(--white-soft);
}
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--rose-gold-light);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.4;
}
.about-content { padding: 20px 0; }
.about-content .section-subtitle { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }

.about-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(183, 110, 121, 0.12);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--rose-gold);
  line-height: 1.1;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .about-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .about-image::after { display: none; }
  .about-stats { justify-content: center; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.1), transparent 70%);
  border-radius: 50%;
}
.testimonials-header { text-align: center; margin-bottom: 50px; }
.testimonials-header .section-subtitle { color: var(--rose-gold-light); }
.testimonials-header .section-title { color: white; }
.testimonials-header .ornament-line { background: linear-gradient(90deg, transparent, var(--rose-gold-light), transparent); }

.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-card {
  display: none;
  animation: fadeSlide 0.6s var(--transition-smooth);
}
.testimonial-card.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--rose-gold);
  line-height: 1;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--font-body);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--rose-gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}
.testimonial-dot.active { background: var(--rose-gold); transform: scale(1.2); }

/* ---------- CONTACT ---------- */
.contact {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--white-soft) 0%, var(--pink-50) 100%);
}
.contact-header { text-align: center; margin-bottom: 50px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(183, 110, 121, 0.08);
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(183, 110, 121, 0.06);
  transition: all 0.3s var(--transition-smooth);
}
.contact-item:last-child { border-bottom: none; }
.contact-item:hover { padding-left: 8px; }

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pink-50), var(--pink-100));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-item-content { display: flex; flex-direction: column; }
.contact-item-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-item-value {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 600;
}
.contact-item-value a { color: var(--text-primary); }
.contact-item-value a:hover { color: var(--rose-gold); }

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.social-link {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.4s var(--transition-smooth);
  border: 1px solid rgba(183, 110, 121, 0.12);
  background: white;
}
.social-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.social-link.facebook { color: #1877F2; }
.social-link.facebook:hover { background: #1877F2; color: white; border-color: #1877F2; }
.social-link.instagram { color: #E4405F; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; border-color: transparent; }
.social-link.whatsapp { color: #25D366; }
.social-link.whatsapp:hover { background: #25D366; color: white; border-color: #25D366; }

.contact-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.15), transparent 70%);
  border-radius: 50%;
}
.contact-cta-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  position: relative;
}
.contact-cta-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.6;
  position: relative;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 40px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  position: relative;
}
.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
  background: #22c55e;
}

/* Contact form */
.contact-form {
  margin-top: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid rgba(183, 110, 121, 0.15);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-primary);
  background: var(--white-soft);
  transition: all 0.3s var(--transition-smooth);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* ---------- FOOTER ---------- */
.footer {
  background: var(--charcoal);
  padding: 48px 0 24px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--rose-gold-light); font-style: italic; }
.footer-tagline {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-bottom: 28px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--rose-gold-light); }
.footer-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
  margin: 0 auto 20px;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}
.footer-copy a { color: var(--rose-gold-light); }

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}
.whatsapp-float .tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--charcoal);
  color: white;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--transition-smooth);
}
.whatsapp-float:hover .tooltip { opacity: 1; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(183, 110, 121, 0.15);
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid rgba(183, 110, 121, 0.2);
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(10px);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover {
  background: var(--rose-gold);
  color: white;
  transform: translateY(-3px);
}

/* ---------- LOADING SCREEN ---------- */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--white-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--transition-smooth);
}
.loading-screen.hidden { opacity: 0; pointer-events: none; }
.loading-logo {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.loading-logo span { color: var(--rose-gold); font-style: italic; }
.loading-bar-wrapper {
  width: 200px;
  height: 2px;
  background: rgba(183, 110, 121, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loading-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--rose-gold), var(--pink-400));
  border-radius: 2px;
  animation: loadingProgress 1.5s var(--transition-smooth) forwards;
}
@keyframes loadingProgress {
  0% { width: 0; }
  50% { width: 60%; }
  100% { width: 100%; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .service-card { padding: 32px 24px; }
  .contact-info, .contact-cta { padding: 32px 24px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose-gold-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--rose-gold); }

::selection {
  background: rgba(183, 110, 121, 0.2);
  color: var(--charcoal);
}

/* ---------- INSTAGRAM GRID ---------- */
.instagram-section {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}
.instagram-header { margin-bottom: 40px; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition-smooth);
}
.instagram-item:hover img { transform: scale(1.1); }
.instagram-item .insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(183, 110, 121, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--transition-smooth);
}
.instagram-item:hover .insta-overlay { opacity: 1; }
.insta-icon {
  color: white;
  font-size: 28px;
}

@media (max-width: 768px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Map embed */
.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-top: 40px;
}
.map-wrapper iframe {
  width: 100%;
  height: 300px;
  border: none;
}
