/* ============================================================
   Dr. Sucheta Tamrakar — Clinic Website
   style.css | Design: Refined Luxury Medical Aesthetic
   Palette: Deep Teal · Ivory · Warm Gold · Blush Rose
   Fonts: Playfair Display (headings) · DM Sans (body)
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --teal-900:   #0D3D4A;
  --teal-700:   #1A5C6E;
  --teal-500:   #2E8BA0;
  --teal-100:   #DCF0F4;
  --teal-50:    #F0F9FB;

  --gold-500:   #C9A84C;
  --gold-300:   #E2C97E;
  --gold-100:   #F7EDD0;

  --blush-400:  #E4A898;
  --blush-200:  #F5D8D0;
  --blush-50:   #FDF5F3;

  --ivory:      #FDFAF6;
  --white:      #FFFFFF;
  --grey-900:   #1C2B2E;
  --grey-600:   #4A6065;
  --grey-300:   #C5D3D6;
  --grey-100:   #EEF3F4;

  --shadow-xs:  0 2px 8px rgba(13,61,74,.06);
  --shadow-sm:  0 4px 16px rgba(13,61,74,.09);
  --shadow-md:  0 12px 32px rgba(13,61,74,.13);
  --shadow-lg:  0 24px 56px rgba(13,61,74,.18);
  --shadow-gold:0 8px 28px rgba(201,168,76,.25);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-xl:  44px;
  --radius-full:9999px;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s var(--ease-out);

  --header-h:   80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--grey-900);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--teal-900); }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
p { color: var(--grey-600); font-size: 1.025rem; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(253,250,246,.97);
  backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(201,168,76,.18);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-emblem {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26,92,110,.3);
  overflow: hidden;
  flex-shrink: 0;
}
.logo-emblem img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.logo-emblem .logo-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold-300);
}
.logo-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-900);
  line-height: 1.1;
}
.logo-text .tagline {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--grey-600);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal-900); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--teal-900) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-700) !important; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 10;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--teal-900); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--teal-900); color: var(--white); border-color: var(--teal-900); }
.btn-primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-500); color: var(--white); border-color: var(--gold-500); }
.btn-gold:hover { background: #b8923a; transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--teal-900); border-color: var(--teal-900); }
.btn-outline:hover { background: var(--teal-900); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.w-full { width: 100%; justify-content: center; }

/* ========== GRIDS & SECTIONS ========== */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-ivory { background: var(--ivory); }
.section-light { background: var(--teal-50); }
.section-blush { background: var(--blush-50); }
.section-teal { background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 28px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.text-center { text-align: center; }

/* ========== PAGE HERO ========== */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 72px;
  background: linear-gradient(160deg, var(--teal-50) 0%, var(--ivory) 60%, var(--blush-50) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08), transparent 70%);
  top: -150px; right: -150px;
  pointer-events: none;
}
.page-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-500); padding: 6px 16px; background: var(--gold-100); border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.page-hero h1 { margin-bottom: 16px; }
.lead { font-size: 1.1rem; max-width: 640px; margin: 0 auto 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; background: var(--white);
  border: 1px solid var(--gold-100); border-radius: var(--radius-full);
  font-size: .82rem; font-weight: 500; color: var(--grey-600);
  box-shadow: var(--shadow-xs);
}

/* ========== HOME HERO ========== */
.hero-home {
  min-height: 100vh;
  padding: calc(var(--header-h) + 60px) 0 80px;
  background: linear-gradient(160deg, var(--teal-50) 0%, var(--ivory) 55%, var(--blush-50) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,139,160,.07), transparent 70%);
  bottom: -200px; left: -200px;
  pointer-events: none;
}
.hero-content .eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-500); padding: 6px 16px; background: var(--gold-100); border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.hero-content h1 { margin-bottom: 16px; }
.hero-content .sub { font-size: 1.05rem; margin-bottom: 36px; color: var(--grey-600); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats-row { display: flex; flex-wrap: wrap; gap: 32px; padding-top: 40px; border-top: 1px solid var(--grey-100); }
.hero-stat .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--teal-900); }
.hero-stat .lbl { font-size: .78rem; color: var(--grey-600); text-transform: uppercase; font-weight: 500; letter-spacing: .06em; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img-wrap {
  width: 420px; max-width: 100%; aspect-ratio: 4/5;
  border-radius: 40px;
  background: linear-gradient(145deg, var(--teal-100) 0%, var(--blush-200) 100%);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  animation: floatY 5s ease-in-out infinite;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  color: rgba(13,61,74,.25);
}
.hero-img-placeholder i { font-size: 5rem; }
.hero-img-placeholder span { font-size: .85rem; font-weight: 500; }
.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
}
.hero-card-float.card-tl { top: 8%; left: -5%; animation: floatY 4.2s 0.5s ease-in-out infinite; }
.hero-card-float.card-br { bottom: 8%; right: -5%; animation: floatY 4.8s 1s ease-in-out infinite; }
.hero-card-float .hcf-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--gold-100); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
}
.hero-card-float .hcf-text .top { font-weight: 700; font-size: .85rem; color: var(--teal-900); line-height: 1.2; }
.hero-card-float .hcf-text .bot { font-size: .75rem; color: var(--grey-600); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ========== CARDS ========== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,.12);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-body { padding: 28px 28px 32px; }
.card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--teal-100), var(--teal-50));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.3rem; color: var(--teal-700);
}
.card-icon.gold { background: linear-gradient(135deg, var(--gold-100), #fdf3d0); color: var(--gold-500); }

/* ========== SERVICE DETAIL CARD ========== */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,.12);
  box-shadow: var(--shadow-sm);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.sdc-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--teal-100), var(--teal-50));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem; color: var(--teal-700);
}
.service-detail-card h3 { margin-bottom: 10px; }

/* ========== SECTION HEADER ========== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header .eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-500); margin-bottom: 14px;
  padding: 5px 16px; background: var(--gold-100); border-radius: var(--radius-full);
}
.section-header p { margin-top: 12px; }
.ornament { display: block; width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold-500), var(--gold-300)); border-radius: 2px; margin: 16px auto 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-500); padding: 6px 16px; background: var(--gold-100); border-radius: var(--radius-full);
}

/* ========== WHY LIST ========== */
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--grey-100); box-shadow: var(--shadow-xs);
}
.why-item-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--teal-100); color: var(--teal-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.why-item h4 { font-size: 1rem; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; font-weight: 600; }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.04), transparent 70%);
  top: -100px; right: -100px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-info-box {
  background: linear-gradient(145deg, var(--teal-900), var(--teal-700));
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: rgba(255,255,255,.8);
}
.contact-info-box h2 { color: var(--white); margin-bottom: 8px; }
.contact-info-box .sub { color: rgba(255,255,255,.65); margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.cd-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1); color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cd-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-300); margin-bottom: 4px; }
.cd-value { color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.6; }
.cd-value a { color: rgba(255,255,255,.85); }
.cd-value a:hover { color: var(--gold-300); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 7px 0; font-size: .88rem; vertical-align: top; }
.hours-table td:first-child { color: var(--gold-300); width: 45%; font-weight: 500; }
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,168,76,.1);
}
.contact-form-box h2 { margin-bottom: 8px; }
.contact-form-box .sub { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--teal-900); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--grey-900);
  background: var(--ivory);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(46,139,160,.1); }
.form-group textarea { height: 120px; resize: vertical; }
.form-msg { margin-top: 14px; font-size: .9rem; padding: 10px 14px; border-radius: var(--radius-sm); display: none; }
.form-msg.success { display: block; background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.form-msg.error { display: block; background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 380px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ========== ABOUT PAGE ========== */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.about-img { position: relative; }
.about-img-inner {
  background: linear-gradient(145deg, var(--teal-100), var(--blush-200));
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5; max-width: 400px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-img-inner img { width: 100%; height: 100%; object-fit: cover; }
.about-img-inner i { font-size: 7rem; color: rgba(13,61,74,.15); }
.about-img-badge {
  position: absolute; bottom: -16px; right: 0;
  background: var(--white); border-radius: var(--radius-md); padding: 18px 22px;
  box-shadow: var(--shadow-md); text-align: center;
}
.about-img-badge .num { font-size: 2rem; font-weight: 700; color: var(--teal-900); font-family: 'Playfair Display', serif; line-height: 1; }
.about-img-badge .lbl { font-size: .78rem; color: var(--grey-600); margin-top: 4px; }
.line-accent { width: 48px; height: 3px; background: var(--gold-500); margin-bottom: 16px; border-radius: 2px; }
.pull-quote {
  border-left: 3px solid var(--gold-500);
  padding: 16px 20px; margin: 24px 0;
  background: var(--gold-100); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: 'Playfair Display', serif; font-style: italic;
  color: var(--teal-900); font-size: 1.05rem;
}

/* ========== CREDENTIALS TIMELINE ========== */
.credentials-list { display: flex; flex-direction: column; gap: 0; }
.cred-item {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid var(--grey-100);
}
.cred-item:last-child { border-bottom: none; }
.cred-item .year {
  min-width: 60px; font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.1rem; color: var(--gold-500); padding-top: 2px;
}
.cred-item h4 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; color: var(--teal-900); margin-bottom: 6px; }

/* ========== AFFILIATIONS ========== */
.affiliations { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.affil-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-full); font-size: .85rem; font-weight: 600;
  color: var(--teal-700); box-shadow: var(--shadow-xs);
}

/* ========== TAGS ========== */
.tag { display: inline-block; padding: 5px 14px; border-radius: var(--radius-full); font-size: .78rem; font-weight: 600; }
.tag-teal { background: var(--teal-100); color: var(--teal-700); }

/* ========== ACCORDION ========== */
.accordion-item { margin-bottom: 12px; }
.accordion-btn {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--radius-md); font-size: .95rem; font-weight: 600; color: var(--teal-900);
  cursor: pointer; transition: var(--transition);
}
.accordion-btn:hover { background: var(--teal-50); }
.accordion-btn i { transition: transform var(--transition); flex-shrink: 0; color: var(--gold-500); }
.accordion-btn.open { border-color: var(--teal-100); border-radius: var(--radius-md) var(--radius-md) 0 0; }
.accordion-btn.open i { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.accordion-content.open { max-height: 400px; }
.accordion-inner { padding: 20px 24px; background: var(--white); border: 1px solid var(--teal-100); border-top: none; border-radius: 0 0 var(--radius-md) var(--radius-md); color: var(--grey-600); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--teal-900);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .logo-text .name { color: var(--white); }
.footer-brand .logo-text .tagline { color: var(--gold-300); }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 14px; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .9rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.45); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-links a:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); color: var(--white); }

/* ========== FLOATING BUTTONS ========== */
.floating-btns {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.wa-float, .call-float {
  display: flex; align-items: center; gap: 10px;
  border-radius: var(--radius-full);
  font-weight: 600; font-size: .9rem;
  padding: 13px 22px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  border: none;
}
.wa-float {
  background: #25D366;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,.5); color: var(--white); }
.call-float {
  background: var(--teal-700);
  box-shadow: 0 6px 24px rgba(26,92,110,.4);
}
.call-float:hover { transform: translateY(-3px); background: var(--teal-900); color: var(--white); }

/* ========== SCROLL PROGRESS ========== */
.scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 3px; z-index: 1100; background: linear-gradient(90deg, var(--gold-500), var(--teal-700)); }

/* ========== REVEAL ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ========== PAGE MAIN ========== */
.page-main { padding-top: var(--header-h); }
.page-main > *:first-child { padding-top: 0 !important; }

/* ========== INTERACTIVE LIFT ========== */
.interactive-lift { transition: transform var(--transition), box-shadow var(--transition); }
.interactive-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ========== TESTIMONIAL SLIDER ========== */
.testi-slider-wrap { position: relative; overflow: hidden; }
.testi-slide { display: none; }
.testi-slide.active { display: block; }
.testi-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; max-width: 720px; margin: 0 auto;
  box-shadow: var(--shadow-md); border: 1px solid rgba(201,168,76,.12);
}
.stars { color: var(--gold-500); margin-bottom: 16px; font-size: 1.1rem; letter-spacing: 2px; }
.testi-card blockquote { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--teal-900); margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-100), var(--blush-200));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--teal-700); font-size: 1.1rem;
}
.testi-name { font-weight: 700; color: var(--teal-900); font-size: .95rem; }
.testi-loc { font-size: .8rem; color: var(--grey-600); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 28px; }
.slider-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--grey-100);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--teal-700); transition: var(--transition);
}
.slider-btn:hover { background: var(--teal-100); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grey-300); border: none; cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--gold-500); transform: scale(1.3); }

/* ========== RESPONSIVE ========== */

/* Tablets */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-inner { max-width: 100%; aspect-ratio: 16/9; }
  .about-img-badge { right: 20px; }
}

/* Mobile */
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--header-h); left: 0;
    width: 100%; height: calc(100vh - var(--header-h));
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px 28px;
    transform: translateX(-100%);
    transition: transform var(--transition);
    border-top: 1px solid var(--grey-100);
    overflow-y: auto;
    z-index: 800;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: 16px 0; font-size: 1.05rem; border-bottom: 1px solid var(--grey-100); }
  .nav-links a:last-child { border-bottom: none; margin-top: 12px; }
  .nav-cta { text-align: center; display: block !important; }

  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .hero-home { padding-top: calc(var(--header-h) + 32px); min-height: auto; }
  .hero-card-float.card-tl, .hero-card-float.card-br { display: none; }
  .hero-img-wrap { width: 100%; border-radius: 24px; }
  .hero-stats-row { gap: 24px; }
  .cta-banner { padding: 40px 28px; }
  .contact-form-box, .contact-info-box { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .map-embed { height: 280px; }

  .floating-btns { bottom: 20px; right: 16px; }
  .wa-float span, .call-float span { display: none; }
  .wa-float, .call-float { padding: 14px; width: 52px; height: 52px; justify-content: center; border-radius: 50%; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn-lg { padding: 14px 28px; font-size: .95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .section-header { margin-bottom: 40px; }
  .logo-text .name { font-size: .92rem; }
  .logo-text .tagline { display: none; }
  .cred-item { flex-direction: column; gap: 6px; }
  .contact-layout { gap: 24px; }
}

@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .logo-emblem { width: 38px; height: 38px; }
}