/* ============================================================
   DR. AANYA SHARMA — CARDIAC THEME — style.css
   Palette: crimson #C0152A | dark #1A0A0E | blush #FDF0F2 | petal #F4919F
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --crimson:    #C0152A;
  --crimson-dk: #8E0C1D;
  --crimson-lt: #FDEAEC;
  --petal:      #F4919F;
  --dark:       #1A0A0E;
  --dark2:      #2D1218;
  --white:      #FFFFFF;
  --offwhite:   #FDF7F8;
  --warm:       #F5ECED;
  --text:       #2D1218;
  --muted:      #7A5560;
  --border:     #E8D0D4;
  --shadow-sm:  0 4px 18px rgba(192,21,42,.07);
  --shadow-md:  0 10px 40px rgba(192,21,42,.13);
  --radius:     14px;
  --transition: .3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--offwhite);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--dark);
  line-height: 1.2;
}

a { text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 10px; }

/* ============================================================
   HEART WATERMARK UTILITY
   ============================================================ */
.heart-watermark {
  position: absolute;
  font-size: 10rem;
  color: rgba(192,21,42,.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ============================================================
   ECG DIVIDER
   ============================================================ */
.ecg-divider {
  width: 100%;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 40'%3E%3Cpolyline points='0,20 40,20 55,20 60,5 65,35 70,5 75,35 80,20 120,20 130,20 135,5 142,35 148,5 154,35 160,20 360,20 400,20' fill='none' stroke='%23C0152A' stroke-width='1.8' opacity='0.22'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 400px 40px;
  pointer-events: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 18px rgba(192,21,42,.07);
  padding: .85rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--crimson-lt);
  transition: padding var(--transition), box-shadow var(--transition);
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark) !important;
  display: flex;
  align-items: center;
  gap: .5rem;
  letter-spacing: .01em;
}

.brand-icon {
  width: 36px; height: 36px;
  background: var(--crimson);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.navbar-brand span { color: var(--crimson); }

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: .93rem;
  color: var(--text) !important;
  padding: .4rem 1rem !important;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: var(--crimson-lt);
  color: var(--crimson) !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom {
  background: var(--crimson);
  color: #fff;
  border: none;
  padding: .78rem 1.9rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: .45rem;
  cursor: pointer;
  letter-spacing: .01em;
}
.btn-primary-custom:hover {
  background: var(--crimson-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,21,42,.35);
  color: #fff;
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid currentColor;
  padding: .75rem 1.9rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: .45rem;
  cursor: pointer;
}
.btn-outline-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--crimson-lt);
  color: var(--crimson);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .95rem;
  border-radius: 50px;
  margin-bottom: .8rem;
  border: 1px solid rgba(192,21,42,.14);
}

.section-badge::before {
  content: '♥';
  font-size: .68rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  margin-bottom: .5rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.title-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--petal));
  border-radius: 3px;
  margin: .65rem auto 1.6rem;
  position: relative;
}
.title-line::after {
  content: '♥';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-size: .48rem;
  color: var(--crimson);
  background: var(--offwhite);
  padding: 0 4px;
  line-height: 1;
}
.title-line.left { margin-left: 0; }
.title-line.left::after { background: var(--white); }

/* ============================================================
   HERO — INDEX
   ============================================================ */
#hero {
  background: linear-gradient(140deg, #1A0A0E 0%, #2D1218 55%, #56101d 100%);
  min-height: calc(100vh - 72px);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
}

/* dot grid */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 1px 1px, rgba(192,21,42,.08) 1px, transparent 0);
  background-size: 34px 34px;
  pointer-events: none;
}

/* ECG at bottom of hero */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 52'%3E%3Cpolyline points='0,32 100,32 145,32 158,8 166,50 174,8 182,50 190,32 240,32 280,32 295,8 303,50 311,8 319,50 327,32 600,32 800,32' fill='none' stroke='%23C0152A' stroke-width='1.5' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 800px 52px;
}

.hero-blob {
  position: absolute; right: -4%; top: 50%;
  transform: translateY(-50%);
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(192,21,42,.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-pulse-ring {
  position: absolute; left: 7%; top: 22%;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(244,145,159,.25);
  animation: pulseRing 2.6s ease-out infinite;
  pointer-events: none;
}

.hero-pulse-ring-2 {
  position: absolute; right: 12%; bottom: 20%;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(244,145,159,.2);
  animation: pulseRing 2.6s ease-out .8s infinite;
  pointer-events: none;
}

@keyframes pulseRing {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(2.8); opacity: 0; }
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: .6rem;
  font-weight: 700;
}
.hero-content h1 span { color: var(--petal); }

.hero-spec {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(192,21,42,.18);
  color: var(--petal);
  padding: .4rem 1.1rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 1.3rem;
  border: 1px solid rgba(244,145,159,.25);
}

.hero-intro {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* Hero image */
.hero-img-wrap { position: relative; display: inline-block; }

.hero-img-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0,0,0,.45);
  border: 3px solid rgba(244,145,159,.2);
}
.hero-img-card img {
  width: 320px; height: 400px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: #fff;
  border-radius: 14px;
  padding: .8rem 1.1rem;
  display: flex; align-items: center; gap: .7rem;
  box-shadow: 0 8px 32px rgba(192,21,42,.18);
  border: 1px solid var(--border);
}
.hero-badge i { font-size: 1.6rem; color: var(--crimson); }
.hero-badge .badge-num { font-size: 1.1rem; font-weight: 700; color: var(--dark); font-family: 'Cormorant Garamond', serif; }
.hero-badge .badge-lbl { font-size: .72rem; color: var(--muted); font-weight: 500; }

/* Stats */
.hero-stats {
  display: flex; gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat .label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .3rem;
}
.hero-divider {
  width: 1px; height: 44px;
  background: rgba(255,255,255,.12);
  align-self: center;
}

/* ============================================================
   PAGE HERO (About / Contact)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '♥';
  position: absolute;
  right: 8%; top: 50%;
  transform: translateY(-50%);
  font-size: 9rem;
  color: rgba(192,21,42,.07);
  pointer-events: none;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: .4rem;
}
.page-hero p { color: rgba(255,255,255,.6); font-size: .98rem; }
.page-hero .breadcrumb { justify-content: center; background: transparent; margin-bottom: .75rem; }
.page-hero .breadcrumb-item a { color: var(--petal); font-size: .82rem; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.5); font-size: .82rem; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services { padding: 5rem 0; background: var(--offwhite); }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '♥';
  position: absolute;
  bottom: -12px; right: 12px;
  font-size: 4rem;
  color: rgba(192,21,42,.04);
  pointer-events: none;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--crimson);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--crimson-lt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--crimson);
  margin-bottom: 1.1rem;
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-icon {
  background: var(--crimson);
  color: #fff;
}
.service-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.service-card p {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { padding: 5rem 0; background: var(--warm); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.quote-icon {
  font-size: 4.5rem;
  line-height: .8;
  color: var(--crimson-lt);
  font-family: Georgia, serif;
  margin-bottom: .3rem;
}
.stars { color: var(--crimson); font-size: .85rem; margin-bottom: .8rem; gap: .1rem; display: flex; }
.testimonial-card p { color: var(--muted); font-size: .92rem; margin-bottom: 1.2rem; line-height: 1.7; font-style: italic; }

.reviewer { display: flex; align-items: center; gap: .85rem; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dk) 100%);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: .9rem; color: var(--dark); }
.reviewer-role { font-size: .78rem; color: var(--muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dk) 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '♥';
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  font-size: 13rem;
  color: rgba(255,255,255,.04);
  pointer-events: none;
}
.cta-banner::after {
  content: '♥';
  position: absolute; left: 5%; top: 50%;
  transform: translateY(-50%);
  font-size: 7rem;
  color: rgba(255,255,255,.04);
  pointer-events: none;
}
.cta-banner h2 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: .5rem;
}
.cta-banner p { color: rgba(255,255,255,.72); margin-bottom: 1.8rem; }
.cta-heart { font-size: 2rem; color: rgba(255,255,255,.3); margin-bottom: .5rem; display: block; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
#about-intro { padding: 5rem 0; background: var(--white); }

.about-img-wrap { position: relative; display: inline-block; }
.about-img-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--border);
}
.about-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
}

.experience-pill {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--crimson);
  color: #fff;
  border-radius: 14px;
  padding: 1rem 1.3rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(192,21,42,.35);
}
.experience-pill .num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.experience-pill .text { font-size: .7rem; color: rgba(255,255,255,.75); line-height: 1.3; margin-top: .2rem; }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1.5rem;
  margin: 1.6rem 0;
}
.info-item { padding: .75rem 1rem; background: var(--offwhite); border-radius: 10px; border: 1px solid var(--border); }
.info-item .label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .2rem; }
.info-item .val { font-weight: 600; font-size: .9rem; color: var(--dark); }

/* Qualifications */
#qualifications { padding: 5rem 0; background: var(--offwhite); }

.qual-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  border-left: 3px solid var(--crimson);
  transition: all var(--transition);
}
.qual-card:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
.qual-card .year {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--crimson); font-weight: 600; margin-bottom: .25rem;
}
.qual-card h5 { font-size: 1rem; margin-bottom: .2rem; font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.qual-card p { color: var(--muted); font-size: .87rem; margin: 0; }

/* Skills */
#skills-section { padding: 5rem 0; background: var(--white); }

.skill-item { margin-bottom: 1.3rem; }
.skill-label {
  display: flex; justify-content: space-between;
  font-size: .87rem; font-weight: 500;
  color: var(--text); margin-bottom: .4rem;
}
.skill-label span:last-child { color: var(--crimson); font-weight: 600; }

.progress { height: 7px; background: var(--crimson-lt); border-radius: 50px; overflow: hidden; }
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--crimson), var(--petal));
  border-radius: 50px;
  width: 0%;
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}

/* Timeline */
#timeline { padding: 5rem 0; background: var(--offwhite); }

.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--crimson), var(--petal), transparent);
}

.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -2.45rem; top: 1.2rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--crimson);
  border: 3px solid var(--offwhite);
  box-shadow: 0 0 0 3px var(--crimson-lt);
}

.timeline-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.timeline-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--crimson); }
.timeline-card .period {
  font-size: .72rem; color: var(--crimson);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: .28rem;
}
.timeline-card h5 { font-size: 1.02rem; margin-bottom: .25rem; font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.timeline-card p { color: var(--muted); font-size: .87rem; margin: 0; }

/* Achievements */
#achievements { padding: 5rem 0; background: var(--white); }

.achievement-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
}
.achievement-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--crimson);
}
.achievement-icon { font-size: 2rem; color: var(--crimson); margin-bottom: .8rem; }
.achievement-card h5 { font-size: .95rem; font-family: 'Cormorant Garamond', serif; font-weight: 600; margin-bottom: .3rem; }
.achievement-card p { color: var(--muted); font-size: .82rem; margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
#contact-section { padding: 5rem 0; background: var(--white); }

.contact-info-card {
  background: linear-gradient(160deg, #1A0A0E 0%, #3a1020 100%);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  height: 100%;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(192,21,42,.25);
  position: relative;
  overflow: hidden;
}
.contact-info-card::after {
  content: '♥';
  position: absolute;
  bottom: -24px; right: 16px;
  font-size: 9rem;
  color: rgba(192,21,42,.07);
  pointer-events: none;
  line-height: 1;
}
.contact-info-card h3 {
  color: #fff; margin-bottom: .4rem;
  font-family: 'Cormorant Garamond', serif;
}
.contact-info-card .intro {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding-bottom: 1.2rem;
}

.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(192,21,42,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--petal);
  flex-shrink: 0;
  border: 1px solid rgba(192,21,42,.3);
}
.contact-item-text .label {
  font-size: .7rem; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.35);
  margin-bottom: .15rem;
}
.contact-item-text .val { color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500; line-height: 1.6; }

.hours-table { width: 100%; margin-top: .4rem; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,.06); }
.hours-table td { padding: .42rem 0; font-size: .84rem; }
.hours-table td:last-child { text-align: right; color: var(--petal); }
.hours-table .closed { color: rgba(255,255,255,.35) !important; }

.form-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
}
.form-card h3 { margin-bottom: .3rem; font-family: 'Cormorant Garamond', serif; }
.form-card .sub { color: var(--muted); font-size: .88rem; margin-bottom: 1.8rem; }

.form-label { font-weight: 500; font-size: .87rem; color: var(--dark); margin-bottom: .35rem; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .65rem 1rem;
  font-size: .9rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.form-control:focus, .form-select:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(192,21,42,.1);
  outline: none;
}
.form-control::placeholder { color: #c4a8ac; }
.form-check-input:checked { background-color: var(--crimson); border-color: var(--crimson); }

.success-msg {
  display: none;
  background: #e8faf4;
  border: 1px solid #6ddbb0;
  color: #1a7a50;
  border-radius: 10px;
  padding: 1rem;
  font-size: .9rem;
  margin-top: 1rem;
}

/* Map */
#map-section { padding: 0 0 5rem; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 2px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 400px; border: none; }

/* FAQ */
.faq-section { padding: 4rem 0; background: var(--white); }
.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.accordion-button {
  font-weight: 600;
  font-size: .92rem;
  color: var(--dark);
  background: var(--white);
}
.accordion-button:not(.collapsed) {
  color: var(--crimson);
  background: var(--crimson-lt);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-body { color: var(--muted); font-size: .9rem; background: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 3.5rem 0 1.5rem;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--crimson), var(--petal), var(--crimson), transparent);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: #fff; margin-bottom: .75rem;
}
.footer-brand span { color: var(--petal); }

footer h6 {
  color: #fff; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: .5rem; }
footer ul li a {
  color: rgba(255,255,255,.5); font-size: .88rem;
  transition: color var(--transition);
  display: inline-flex; align-items: center;
}
footer ul li a:hover { color: var(--petal); }

.footer-divider { border-color: rgba(255,255,255,.08); margin: 1.5rem 0 1rem; }
.footer-copy { color: rgba(255,255,255,.32); font-size: .82rem; }

.social-icons { display: flex; gap: .6rem; flex-wrap: wrap; }
.social-icons a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .95rem;
  transition: all var(--transition);
}
.social-icons a:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Pulsing heartbeat */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.22); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.15); }
  56%       { transform: scale(1); }
}
.bi-heart-pulse-fill, .bi-heart-fill {
  animation: heartbeat 2.2s ease-in-out infinite;
  display: inline-block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  #hero { padding: 3rem 0; min-height: auto; }
  .hero-img-card img { width: 260px; height: 320px; }
  .hero-badge { bottom: -14px; right: -10px; }
  .hero-stats { gap: 1.2rem; }
  .info-grid { grid-template-columns: 1fr; }
  .experience-pill { right: 0; bottom: -12px; }
}

@media (max-width: 767.98px) {
  .hero-content { text-align: center; }
  .hero-intro { margin: 0 auto 2rem; }
  .hero-stats { justify-content: center; }
  .contact-info-card { margin-bottom: 1.5rem; }
  .title-line.left { margin-left: auto; }
}