/* ==========================================================
   Radiant Roots Dental Clinic — Stylesheet
   File: css/style.css
   ========================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Floral palette */
  --blush:        #FDF0F0;
  --blush-mid:    #F9DDE0;
  --blush-deep:   #F0B8BE;
  --rose:         #C4687A;
  --rose-dark:    #9B3D4F;
  --rose-light:   #FDEEF0;
  --sage:         #7A9E7E;
  --sage-light:   #EAF2EA;
  --sage-dark:    #4D7A52;
  --petal-cream:  #FEFAF6;
  --petal-warm:   #FDF5EC;
  --gold:         #C9956A;
  --gold-light:   #FAF0E4;
  --lavender:     #E8E2F4;
  --text-dark:    #2C1A1D;
  --text-mid:     #5C3D42;
  --text-muted:   #9A7A80;
  --border:       rgba(196,104,122,0.12);
  --border-soft:  rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--petal-cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── FLORAL SVG BACKGROUND UTILITY ─────── */
.floral-bg {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C4687A' fill-opacity='0.04'%3E%3Cpath d='M30 20c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10c2 3.5 2 7.5 0 11-5.5 0-10-4.5-10-10-5.5 0-10-4.5-10-10s4.5-10 10-10c-2-3.5-2-7.5 0-11z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 5%;
  background: rgba(253,240,240,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.logo-img { width: 48px; height: 48px; object-fit: contain; border-radius: 10px; }

.logo-placeholder {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  font-size: 0.48rem; font-weight: 700; color: rgba(255,255,255,0.85);
  text-align: center; line-height: 1.4; letter-spacing: 0.05em;
  border: 2px dashed rgba(255,255,255,0.3);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--rose-dark);
  letter-spacing: -0.01em;
}
.logo-text span { font-size: 0.65rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 0.85rem; font-weight: 400;
  color: var(--text-mid); letter-spacing: 0.02em; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--rose-dark); }
.nav-cta {
  background: var(--rose) !important; color: white !important;
  padding: 0.5rem 1.3rem; border-radius: 2rem; font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--rose-dark) !important; }

/* ── SHARED ──────────────────────────────── */
section { padding: 6rem 8%; }

.section-tag {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 8px;
}
.section-tag::before {
  content: '❀';
  font-size: 0.9rem; color: var(--rose);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.15;
  color: var(--rose-dark); margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem; color: var(--text-mid);
  font-weight: 300; line-height: 1.8; max-width: 520px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: white; padding: 0.85rem 2rem; border-radius: 2rem;
  text-decoration: none; font-size: 0.9rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(196,104,122,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,104,122,0.4); }

.btn-secondary {
  background: transparent; color: var(--rose-dark);
  padding: 0.85rem 2rem; border-radius: 2rem;
  text-decoration: none; font-size: 0.9rem; font-weight: 500;
  border: 1.5px solid var(--rose); display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s;
}
.btn-secondary:hover { background: var(--rose-light); }

/* ── HERO ─────────────────────────────────── */
#home {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px; overflow: hidden;
  background: var(--blush);
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4% 5rem 8%;
  position: relative;
}

/* subtle floral corner decorations */
.hero-left::before {
  content: '🌸';
  position: absolute; top: 6rem; right: 2rem;
  font-size: 4rem; opacity: 0.12; pointer-events: none;
}
.hero-left::after {
  content: '🌿';
  position: absolute; bottom: 5rem; left: 3rem;
  font-size: 3rem; opacity: 0.1; pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--blush-deep);
  color: var(--rose); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 2rem;
  margin-bottom: 2rem; width: fit-content;
  box-shadow: 0 2px 8px rgba(196,104,122,0.1);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700; line-height: 1.1;
  color: var(--rose-dark); margin-bottom: 1.25rem;
}
.hero-title em { font-style: italic; color: var(--sage-dark); }

.hero-subtitle {
  font-size: 1rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.8;
  max-width: 440px; margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700; color: var(--rose-dark);
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* Hero right — image panel */
.hero-right {
  position: relative; overflow: hidden;
  max-height: 80vh; 
  overflow: hidden;
 /*background: linear-gradient(160deg, var(--blush-mid) 0%, var(--blush-deep) 60%, var(--rose) 100%);*/
 display: flex; align-items: center; justify-content: center;
}

.hero-img-wrap {
  width: 100%; height: 100%;
  position: relative; display: flex; align-items: center; justify-content: center;
}

/* ── HERO IMAGE PLACEHOLDER ──
   Replace with: <img src="../images/hero-clinic.jpg" class="hero-main-img" alt="Radiant Roots Dental Clinic">
*/
.hero-main-img {
  width: 100%; height: 100%; object-fit: contain;
  object-position: center;
  position: absolute; inset: 0;
  opacity: 0.9;
}

.hero-img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; text-align: center; color: white; padding: 2rem;
  position: relative; z-index: 1;
}
.hero-img-placeholder .ph-icon { font-size: 5rem; opacity: 0.5; }
.hero-img-placeholder p {
  font-size: 0.8rem; opacity: 0.6; line-height: 1.5;
  border: 1px dashed rgba(255,255,255,0.4); padding: 0.6rem 1rem; border-radius: 8px;
}

.hero-decor-circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  pointer-events: none;
}
.hero-decor-circle:nth-child(1) { width: 360px; height: 360px; top: -80px; right: -80px; }
.hero-decor-circle:nth-child(2) { width: 200px; height: 200px; bottom: 40px; left: -40px; background: rgba(255,255,255,0.05); }

.hero-float-card {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 16px; padding: 0.9rem 1.1rem;
  box-shadow: 0 8px 24px rgba(155,61,79,0.15);
  border: 1px solid rgba(255,255,255,0.6);
}
.hero-float-card.top-left { top: 8%; left: 5%; }
.hero-float-card.bottom-right { bottom: 8%; right: 5%; text-align: right; }
.float-label { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.04em; margin-bottom: 3px; }
.float-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--rose-dark);
}
.float-sub { font-size: 0.68rem; color: var(--sage-dark); margin-top: 2px; }

/* ── ABOUT ───────────────────────────────── */
#about {
  background: var(--petal-warm);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}

.about-imgs { display: flex; gap: 1rem; position: relative; }

.about-img-main {
  flex: 1.5; border-radius: 24px;
  overflow: hidden; min-height: 420px;
  position: relative;
  background: linear-gradient(145deg, var(--blush-mid), var(--blush-deep));
  display: flex; align-items: center; justify-content: center;
}
/* ── DOCTOR IMAGE: replace placeholder with real photo
   <img src="../images/doctor-meghna.jpg" alt="Dr. Meghna Shrivastava" style="width:100%;height:100%;object-fit:cover;">
*/
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-side { flex: 1; display: flex; flex-direction: column; gap: 1rem; padding-top: 2.5rem; }

.about-img-small {
  border-radius: 16px; overflow: hidden; flex: 1;
  background: var(--sage-light);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 0.5rem; min-height: 120px;
}
/* ── CLINIC IMAGE: replace with <img src="../images/clinic-interior.jpg" ...> */
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }

.about-stat-card {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  border-radius: 16px; padding: 1.5rem;
  color: white; text-align: center;
}
.about-stat-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700; display: block;
}
.about-stat-card .lbl { font-size: 0.75rem; opacity: 0.75; letter-spacing: 0.04em; }

.ph-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 1rem; text-align: center;
  color: var(--text-muted);
}
.ph-box span { font-size: 2.5rem; opacity: 0.3; }
.ph-box p { font-size: 0.65rem; color: var(--text-muted); opacity: 0.7; line-height: 1.4; }

.about-text .section-sub { margin-bottom: 1.5rem; }

.about-checklist { list-style: none; margin: 1.25rem 0 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.about-checklist li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.5;
}
.check-dot {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--rose-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px; border: 1.5px solid var(--blush-deep);
}
.check-dot svg { width: 10px; height: 10px; stroke: var(--rose); fill: none; stroke-width: 2.5; }

.dr-card {
  background: var(--blush); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem; margin-top: 1rem;
}
.dr-avatar {
  width: 52px; height: 52px; min-width: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-mid), var(--blush-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; overflow: hidden;
}
.dr-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dr-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--rose-dark); }
.dr-title { font-size: 0.75rem; color: var(--text-muted); margin-top: 1px; }
.dr-quote {
  margin-top: 0.4rem; font-size: 0.8rem; font-style: italic;
  color: var(--text-mid); line-height: 1.5;
}

/* ── SERVICES ────────────────────────────── */
#services { background: var(--blush); position: relative; overflow: hidden; }
#services::before {
  content: '🌺'; position: absolute; top: 3rem; right: 5%;
  font-size: 8rem; opacity: 0.05; pointer-events: none;
}

.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem;
}

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

.service-card {
  background: white; border-radius: 20px; padding: 1.75rem;
  border: 1px solid var(--border); transition: all 0.3s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--blush-deep));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(196,104,122,0.12); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--rose-light); border: 1px solid var(--blush-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
}
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--rose-dark); margin-bottom: 0.5rem;
}
.service-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }
.service-link {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 1rem;
  font-size: 0.78rem; font-weight: 500; color: var(--rose);
  text-decoration: none;
}

/* ── GALLERY ─────────────────────────────── */
#gallery {
  background: linear-gradient(160deg, var(--rose-dark) 0%, #6B2535 100%);
  padding: 6rem 8%; position: relative; overflow: hidden;
}
#gallery::before {
  content: '✿'; position: absolute; top: 2rem; right: 6%;
  font-size: 10rem; opacity: 0.04; color: white;
}
#gallery .section-tag { color: var(--blush-deep); }
#gallery .section-tag::before { color: var(--blush-deep); }
#gallery .section-title { color: white; }
#gallery .section-sub { color: rgba(255,255,255,0.5); }
.gallery-header { margin-bottom: 2.5rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
}

.gallery-item {
  border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative; cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem;
}
.gallery-item:hover { transform: scale(1.02); border-color: rgba(255,255,255,0.25); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* Real image inside gallery item */
.gallery-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.gallery-overlay {
  position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(to top, rgba(155,61,79,0.8) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; }

.gallery-ph {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  position: relative; z-index: 1;
}
.gallery-ph-icon { font-size: 2.2rem; opacity: 0.2; }
.gallery-ph-label { font-size: 0.7rem; color: rgba(255,255,255,0.35); text-align: center; line-height: 1.4; }
.gallery-ph-file { font-size: 0.62rem; color: rgba(255,255,255,0.2); font-family: monospace; margin-top: 2px; }

/* ── BEFORE/AFTER ─────────────────────────── */
#before-after { background: var(--petal-warm); }
.ba-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }

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

.ba-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); background: white; }

.ba-images { display: grid; grid-template-columns: 1fr 1fr; }

.ba-img {
  aspect-ratio: 1; position: relative;
  background: var(--blush-mid);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 0.3rem; overflow: hidden;
}
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.3rem; text-align: center;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ba-img.before .ba-img-label { background: rgba(92,61,66,0.75); color: white; }
.ba-img.after  .ba-img-label { background: rgba(122,158,126,0.85); color: white; }

.ba-img .ph-icon { font-size: 2rem; opacity: 0.2; }
.ba-img .ph-text { font-size: 0.62rem; color: var(--text-muted); opacity: 0.6; font-family: monospace; text-align: center; padding: 0 4px; }

.ba-info { padding: 1rem 1.1rem; }
.ba-treatment { font-size: 0.8rem; font-weight: 600; color: var(--rose-dark); margin-bottom: 0.2rem; }
.ba-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ── REELS SECTION ───────────────────────── */
#reels { background: var(--blush); }
.reels-header { margin-bottom: 0.75rem; }
.reels-note {
  background: var(--gold-light); border: 1px solid rgba(201,149,106,0.2);
  border-radius: 12px; padding: 1rem 1.25rem;
  font-size: 0.85rem; color: #7A5030; line-height: 1.6;
  margin-bottom: 2.5rem; display: flex; align-items: flex-start; gap: 0.75rem;
}
.reels-note strong { display: block; margin-bottom: 0.2rem; font-size: 0.875rem; }

.reels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.reel-card {
  border-radius: 16px; overflow: hidden;
  background: white; border: 1px solid var(--border);
  transition: all 0.3s;
}
.reel-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(196,104,122,0.12); }

.reel-thumb {
  aspect-ratio: 9/16; background: linear-gradient(135deg, var(--blush-mid), var(--blush-deep));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; position: relative; overflow: hidden;
}
.reel-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.reel-play-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.reel-play-btn svg { width: 18px; height: 18px; fill: var(--rose-dark); margin-left: 2px; }
.reel-ph-label {
  font-size: 0.65rem; color: rgba(155,61,79,0.5); text-align: center;
  line-height: 1.4; position: relative; z-index: 1; font-family: monospace; padding: 0 8px;
}
.reel-info { padding: 0.75rem; }
.reel-title { font-size: 0.8rem; font-weight: 500; color: var(--text-dark); margin-bottom: 2px; }
.reel-meta { font-size: 0.7rem; color: var(--text-muted); }

.reels-cta { margin-top: 2rem; text-align: center; }
.btn-insta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white; padding: 0.85rem 2rem; border-radius: 2rem;
  text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: all 0.25s; box-shadow: 0 4px 14px rgba(220,39,67,0.25);
}
.btn-insta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,39,67,0.35); }
.btn-insta svg { width: 18px; height: 18px; fill: white; }

/* ── TESTIMONIALS ─────────────────────────── */
#testimonials { background: white; }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-header .section-sub { margin: 0 auto; }

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

.testimonial-card {
  background: var(--blush); border-radius: 20px; padding: 1.75rem;
  border: 1px solid var(--border); position: relative;
}
.testimonial-card::before {
  content: '"'; font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 1; color: var(--blush-deep);
  position: absolute; top: 0.5rem; left: 1.25rem;
}
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.t-text { font-size: 0.875rem; line-height: 1.75; color: var(--text-mid); font-style: italic; margin-bottom: 1.25rem; font-weight: 300; }
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-mid), var(--blush-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; color: var(--rose-dark);
}
.t-name { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.t-loc { font-size: 0.72rem; color: var(--text-muted); }

/* ── CONTACT ─────────────────────────────── */
#contact {
  background: var(--petal-warm);
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start;
}

.contact-left { display: flex; flex-direction: column; gap: 2rem; }

.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.1rem; }
.contact-icon {
  width: 42px; height: 42px; min-width: 42px; border-radius: 12px;
  background: var(--rose-light); border: 1px solid var(--blush-deep);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-detail-text h4 { font-size: 0.8rem; font-weight: 600; color: var(--rose-dark); margin-bottom: 3px; }
.contact-detail-text p, .contact-detail-text a {
  font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; font-weight: 300;
  text-decoration: none;
}
.contact-detail-text a:hover { color: var(--rose); text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 0.55rem 0; font-size: 0.83rem; color: var(--text-mid); }
.hours-table td:last-child { text-align: right; color: var(--rose-dark); font-weight: 500; }

/* Social buttons */
.social-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.5rem 1rem; border-radius: 2rem;
  font-size: 0.8rem; font-weight: 500;
  text-decoration: none; border: 1.5px solid; transition: all 0.2s;
}
.social-btn.insta {
  border-color: #E1306C; color: #C13584;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #f09433, #dc2743, #bc1888) border-box;
  border: 1.5px solid transparent;
}
.social-btn.insta:hover { background: linear-gradient(#fdf0f5, #fdf0f5) padding-box, linear-gradient(135deg, #f09433, #dc2743, #bc1888) border-box; }
.social-btn.insta svg { fill: #C13584; width: 15px; height: 15px; }

.social-btn.wa { border-color: #25D366; color: #128C7E; }
.social-btn.wa:hover { background: #f0fdf4; }
.social-btn.wa svg { fill: #25D366; width: 15px; height: 15px; }

/* Google Map */
.map-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); height: 210px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.map-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 0.5rem; font-size: 0.78rem; color: var(--rose);
  text-decoration: none;
}
.map-link:hover { text-decoration: underline; }

/* Form */
.contact-form {
  background: white; border-radius: 24px;
  padding: 2.25rem; border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(196,104,122,0.07);
}
.form-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--rose-dark); margin-bottom: 0.25rem; }
.form-subtitle { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-mid); margin-bottom: 0.35rem; letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--petal-cream);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: var(--text-dark);
  outline: none; transition: border-color 0.2s; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(196,104,122,0.1); }
.form-group textarea { resize: vertical; min-height: 85px; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white; border: none; border-radius: 2rem;
  padding: 0.875rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.25s;
  margin-top: 0.25rem; box-shadow: 0 4px 14px rgba(196,104,122,0.3);
}
.form-submit:hover { box-shadow: 0 6px 20px rgba(196,104,122,0.4); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.form-message { display: none; padding: 0.75rem 1rem; border-radius: 10px; font-size: 0.83rem; margin-top: 0.75rem; }
.form-message.success { background: var(--sage-light); color: var(--sage-dark); }
.form-message.error   { background: #fce8e8; color: #8b1a1a; }
.form-message.warn    { background: var(--gold-light); color: #7a4f0b; }

/* ── CTA BANNER ──────────────────────────── */
#cta-banner {
  background: linear-gradient(135deg, var(--rose-dark) 0%, #7A2535 50%, var(--rose-dark) 100%);
  text-align: center; padding: 5rem 8%; position: relative; overflow: hidden;
}
.cta-petal { position: absolute; font-size: 8rem; opacity: 0.04; pointer-events: none; }
.cta-petal:nth-child(1) { top: -1rem; left: 5%; }
.cta-petal:nth-child(2) { bottom: -2rem; right: 8%; }
#cta-banner .section-tag { color: var(--blush-deep); justify-content: center; }
#cta-banner .section-tag::before { color: var(--blush-deep); }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700;
  color: white; line-height: 1.2; margin-bottom: 1rem;
}
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.55); font-weight: 300; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: white; color: var(--rose-dark); padding: 0.9rem 2.2rem; border-radius: 2rem; text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: all 0.25s; border: none; cursor: pointer; }
.btn-white:hover { background: var(--blush); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.35); padding: 0.9rem 2.2rem; border-radius: 2rem; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; }
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--text-dark); color: rgba(255,255,255,0.5);
  padding: 3rem 8%;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.5rem;
}
.footer-brand .logo-text strong { color: var(--blush-mid); font-size: 1.1rem; }
.footer-brand .logo-text span  { color: rgba(255,255,255,0.35); }
.footer-brand .logo-placeholder { opacity: 0.5; }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-top: 0.75rem; font-style: italic; max-width: 200px; }

.footer-links-col h5 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links-col a { font-size: 0.82rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links-col a:hover { color: white; }

.footer-social-col h5 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }
.footer-social-icons { display: flex; gap: 0.6rem; }
.footer-social-icons a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; text-decoration: none;
}
.footer-social-icons a:hover { border-color: var(--blush-deep); background: rgba(196,104,122,0.15); }
.footer-social-icons svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.5); }
.footer-social-icons a:hover svg { fill: var(--blush-deep); }

.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-copy { font-size: 0.75rem; }
.footer-addr { font-size: 0.72rem; color: rgba(255,255,255,0.25); text-align: right; }

/* ── WHATSAPP FLOAT ──────────────────────── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  text-decoration: none; transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.hero-left > * { opacity:0; animation: fadeUp 0.7s ease forwards; }
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.25s; }
.hero-left > *:nth-child(3) { animation-delay: 0.4s; }
.hero-left > *:nth-child(4) { animation-delay: 0.55s; }
.hero-left > *:nth-child(5) { animation-delay: 0.7s; }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.hero-float-card { animation: float 5s ease-in-out infinite; }
.hero-float-card.bottom-right { animation-delay: 2.5s; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 960px) {
  #home, #about, #contact { grid-template-columns: 1fr; }
  .hero-right { min-height: 300px; }
  .services-grid, .ba-grid { grid-template-columns: 1fr 1fr; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  section { padding: 4rem 6%; }
}
@media (max-width: 600px) {
  .services-grid, .ba-grid, .reels-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  section { padding: 3.5rem 5%; }
}
