/* ============================================
   DR. ARPITA HATI ADAK - Dermatologist Website
   Pastel Feminine Aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* CSS Variables */
:root {
  --blush: #f9dde0;
  --rose: #e8a4b0;
  --rose-deep: #c97b8c;
  --lavender: #e8dff5;
  --lavender-mid: #c5aee8;
  --mint: #d4ede8;
  --mint-deep: #8abcb3;
  --cream: #fdf6f0;
  --peach: #fde8dc;
  --peach-deep: #e8b89a;
  --gold: #c9a96e;
  --text-dark: #3d2b35;
  --text-mid: #6b4f5e;
  --text-light: #9e7a8a;
  --white: #ffffff;
  --shadow-soft: 0 8px 32px rgba(200, 120, 140, 0.12);
  --shadow-card: 0 4px 24px rgba(180, 100, 120, 0.1);
  --border-soft: 1px solid rgba(200, 150, 170, 0.2);
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* =====================
   TOP CONTACT BAR
   ===================== */
.top-bar {
  background: linear-gradient(135deg, var(--rose-deep) 0%, #b06070 100%);
  padding: 10px 0;
  position: relative;
  z-index: 100;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.top-bar a:hover { color: #fff; }

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.3);
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background 0.2s;
}

.social-icon:hover { background: rgba(255,255,255,0.32) !important; }

/* =====================
   NAVIGATION
   ===================== */
.navbar {
  background: rgba(253, 246, 240, 0.97);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: var(--border-soft);
  box-shadow: 0 2px 20px rgba(200,120,140,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.logo-title {
  font-size: 11px;
  color: var(--rose-deep);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose-deep);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--rose-deep); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--rose-deep), #b06070);
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(180,90,110,0.3);
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(180,90,110,0.4) !important;
}

.nav-cta::after { display: none !important; }

/* =====================
   HERO SECTION
   ===================== */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 40%, var(--peach) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,150,170,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(140,180,200,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.floating-petal {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.fp1 { width: 60px; height: 60px; background: var(--rose); top: 15%; left: 10%; animation-delay: 0s; }
.fp2 { width: 40px; height: 40px; background: var(--lavender-mid); top: 60%; left: 5%; animation-delay: 2s; }
.fp3 { width: 80px; height: 80px; background: var(--peach-deep); top: 20%; right: 5%; animation-delay: 4s; }
.fp4 { width: 50px; height: 50px; background: var(--mint-deep); bottom: 20%; right: 15%; animation-delay: 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { animation: slideInLeft 0.9s ease-out; }

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(200,150,170,0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rose-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '✦';
  font-size: 10px;
  color: var(--rose-deep);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.hero-title em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-style: italic;
  letter-spacing: 0.02em;
}

.hero-reg {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--rose-deep);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-deep), #b06070);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(180,90,110,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(180,90,110,0.45);
}

.btn-secondary {
  background: rgba(255,255,255,0.8);
  color: var(--rose-deep);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(200,120,140,0.3);
  backdrop-filter: blur(8px);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.95);
  border-color: var(--rose-deep);
}

/* Hero Image Side */
.hero-image-wrap {
  position: relative;
  animation: slideInRight 0.9s ease-out;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-photo-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.hero-photo-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--lavender-mid) 100%);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  opacity: 0.4;
  animation: morphBlob 8s ease-in-out infinite;
}

@keyframes morphBlob {
  0%, 100% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  50% { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; }
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: 85%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-photo-card {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  z-index: 3;
  border: var(--border-soft);
}

.hpc-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}

.stars { color: #f5a623; font-size: 14px; }

.hpc-label { font-size: 11px; color: var(--text-light); margin-top: 2px; }

.hero-photo-card2 {
  position: absolute;
  top: 30px;
  right: -10px;
  background: linear-gradient(135deg, var(--rose-deep), #b06070);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(180,90,110,0.3);
  z-index: 3;
  text-align: center;
  color: white;
}

.hpc2-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.hpc2-label { font-size: 11px; opacity: 0.9; margin-top: 2px; }

/* =====================
   SECTION STYLES
   ===================== */
section { padding: 80px 0; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 12px;
}

.section-tag::before, .section-tag::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--rose-deep);
  opacity: 0.5;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em { font-style: italic; color: var(--rose-deep); }

.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 600px;
}

/* =====================
   ABOUT / DOCTOR BIO
   ===================== */
.about-section {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo-deco {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--rose);
  border-radius: 20px;
  opacity: 0.5;
  border-radius: 200px 200px 200px 200px / 200px 200px 200px 200px;
}

.about-photo {
  width: 100%;
  border-radius: 180px 180px 180px 180px / 180px 180px 180px 180px;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 3/4;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(200,120,140,0.2);
}

.about-credentials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.credential-tag {
  background: linear-gradient(135deg, var(--blush), var(--lavender));
  border: 1px solid rgba(200,150,170,0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.highlight-card {
  background: linear-gradient(135deg, var(--cream), var(--blush));
  border: var(--border-soft);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.hc-icon { font-size: 24px; margin-bottom: 8px; }
.hc-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--rose-deep);
}
.hc-label { font-size: 12px; color: var(--text-light); font-weight: 500; }

/* =====================
   TREATMENTS - HEXAGONAL
   ===================== */
.treatments-section {
  background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 100%);
}

.hex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}

.hex-row {
  display: flex;
  justify-content: center;
  margin-top: -22px;
}

.hex-row:first-child { margin-top: 0; }

.hex-item {
  position: relative;
  width: 160px;
  height: 184px;
  margin: 0 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hex-item:hover { transform: translateY(-8px) scale(1.05); }

.hex-shape {
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 12px;
  transition: all 0.3s ease;
}

.hex-item:nth-child(odd) .hex-shape { background: rgba(255,255,255,0.85); }
.hex-item:nth-child(even) .hex-shape { background: linear-gradient(135deg, rgba(232,164,176,0.6), rgba(197,174,232,0.6)); }

.hex-item:hover .hex-shape {
  background: linear-gradient(135deg, var(--rose-deep), #b06070);
}

.hex-item:hover .hex-icon,
.hex-item:hover .hex-label { color: white; }

.hex-icon { font-size: 28px; margin-bottom: 8px; transition: color 0.3s; }
.hex-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  transition: color 0.3s;
}

/* =====================
   REVIEWS
   ===================== */
.reviews-section { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: linear-gradient(135deg, var(--cream), var(--blush));
  border: var(--border-soft);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.review-quote {
  font-size: 48px;
  color: var(--rose);
  line-height: 0.8;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--lavender-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.review-stars { color: #f5a623; font-size: 12px; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--rose-deep), #b06070);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: 36px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(180,90,110,0.3);
}

.google-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(180,90,110,0.4);
}

/* =====================
   VIDEOS
   ===================== */
.videos-section {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--mint) 100%);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.video-card {
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: var(--border-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.video-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.video-caption {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
}

/* =====================
   CHAMBERS / LOCATIONS
   ===================== */
.locations-section { background: var(--white); }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.location-card {
  background: linear-gradient(135deg, var(--cream), var(--blush));
  border: var(--border-soft);
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.loc-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--rose-deep), #b06070);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.loc-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.loc-area {
  font-size: 12px;
  color: var(--rose-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.loc-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.loc-phone:hover { color: var(--rose-deep); }

/* =====================
   BOOK APPOINTMENT CTA
   ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--rose-deep) 0%, #8a4060 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: rgba(255,255,255,0.05);
  transform: rotate(-15deg);
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.04);
  transform: rotate(15deg);
}

.cta-tag {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: white;
  margin-bottom: 16px;
}

.cta-desc {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-white {
  background: white;
  color: var(--rose-deep);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: white;
  margin-bottom: 8px;
}

.footer-logo-sub {
  font-size: 12px;
  color: var(--rose);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s;
}

.footer-social:hover { background: var(--rose-deep); }

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--rose); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-reg {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* =====================
   ANIMATIONS & UTILITIES
   ===================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .hero-inner, .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; max-width: 340px; margin: 0 auto; }
  .hero-photo { width: 100%; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .videos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .top-bar-left { display: none; }
  .hex-item { width: 130px; height: 150px; }
  section { padding: 60px 0; }
}