/* ══════════════════════════════════════
   RESET & VARIABLES
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:      #2d6a4f;
  --green-l:    #40916c;
  --green-pale: #d8f3dc;
  --gold:       #b5860d;
  --gold-l:     #e8b84b;
  --gold-pale:  #fef9e7;
  --purple:     #6b21a8;
  --purple-l:   #a855f7;
  --purple-pale:#f3e8ff;
  --navy:       #0f1f3d;
  --text:       #1e293b;
  --muted:      #64748b;
  --white:      #ffffff;
  --bg:         #f8fafc;
  --r:          14px;
  --sh:         0 4px 24px rgba(0,0,0,0.07);
  --sh-lg:      0 12px 48px rgba(0,0,0,0.13);
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.tc { text-align: center; }

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px; display: block;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy); margin-bottom: 36px;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  padding: 13px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(45,106,79,.3);
}
.btn-primary:hover { background: var(--green-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,106,79,.35); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--green);
  padding: 13px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--green);
  transition: all .2s;
}
.btn-ghost:hover { background: var(--green); color: var(--white); }

.btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--green);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: all .2s;
}
.btn-call:hover { background: var(--green-pale); transform: translateY(-2px); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: all .2s;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

.btn-nav {
  background: var(--gold); color: var(--white);
  padding: 9px 22px; border-radius: 50px;
  font-weight: 600; font-size: 0.85rem;
  white-space: nowrap; transition: background .2s;
}
.btn-nav:hover { background: var(--gold-l); }

.btn-wa-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25d366; color: var(--white);
  padding: 15px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: all .2s; margin-top: 8px;
}
.btn-wa-submit:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-wa-submit i { font-size: 1.2rem; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,31,61,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,.4); }
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 70px; display: flex; align-items: center; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-l); }
.logo-name { display: block; color: var(--white); font-family: 'Cinzel', serif; font-size: 0.98rem; font-weight: 600; line-height: 1.2; }
.logo-sub  { display: block; color: var(--gold-l); font-size: 0.67rem; letter-spacing: .06em; }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a {
  color: rgba(255,255,255,.78); font-size: 0.86rem; font-weight: 500;
  transition: color .2s; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1.5px; background: var(--gold-l); transform: scaleX(0); transition: transform .2s;
}
.nav-links a:hover { color: var(--gold-l); }
.nav-links a:hover::after { transform: scaleX(1); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.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); }

/* ══════════════════════════════════════
   MOBILE OVERLAY
══════════════════════════════════════ */
.mob-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.mob-overlay.open { opacity: 1; pointer-events: all; }
.mob-panel {
  position: absolute; top: 0; right: 0;
  width: min(340px, 92vw); height: 100%;
  background: linear-gradient(160deg, #0f1f3d 0%, #0a1628 100%);
  padding: 28px 26px 40px;
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mob-overlay.open .mob-panel { transform: translateX(0); }
.mob-close {
  align-self: flex-end; background: rgba(255,255,255,.08);
  border: none; color: var(--white); width: 38px; height: 38px;
  border-radius: 50%; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mob-close:hover { background: rgba(255,255,255,.16); }
.mob-logo { display: flex; align-items: center; gap: 10px; margin: 22px 0 28px; }
.mob-logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-l); }
.mob-logo span { color: var(--white); font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 600; }
.mob-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 24px; }
.mob-links a {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.8); font-size: 0.97rem; font-weight: 500;
  padding: 12px 14px; border-radius: 10px; transition: all .2s;
}
.mob-links a i { width: 18px; color: var(--gold-l); font-size: 0.88rem; }
.mob-links a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.mob-actions { display: flex; gap: 10px; margin-bottom: 22px; }
.mob-call, .mob-wa {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 50px; font-weight: 600; font-size: 0.88rem;
}
.mob-call { background: var(--green); color: var(--white); }
.mob-wa   { background: #25d366; color: var(--white); }
.mob-info { padding: 14px; background: rgba(255,255,255,.05); border-radius: 10px; margin-bottom: 20px; }
.mob-info p { color: rgba(255,255,255,.6); font-size: 0.8rem; display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.mob-info p:last-child { margin-bottom: 0; }
.mob-info i { color: var(--gold-l); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 110px 24px 80px; text-align: center; overflow: hidden;
}
.hero-img-wrap { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,31,61,.88) 0%,
    rgba(45,106,79,.55) 40%,
    rgba(107,33,168,.45) 70%,
    rgba(15,31,61,.85) 100%
  );
}
.hero-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 15%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 40%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 60% 10%, rgba(232,184,75,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 30%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 70%, rgba(232,184,75,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 80%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 15% 85%, rgba(168,85,247,.4) 0%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-eyebrow {
  font-family: 'Cinzel', serif;
  color: var(--gold-l); font-size: 0.75rem;
  letter-spacing: .25em; text-transform: uppercase;
  margin-bottom: 18px; display: flex; align-items: center;
  justify-content: center; gap: 12px;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  color: var(--white); margin-bottom: 20px;
  text-shadow: 0 4px 32px rgba(0,0,0,.5); font-weight: 700;
  line-height: 1.15;
}
.hero-subtitle { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-bottom: 28px; line-height: 1.8; }
.hero-timing {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--gold-l); padding: 10px 24px; border-radius: 50px;
  font-size: 0.86rem; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-badges {
  position: relative; z-index: 1;
  display: flex; gap: 14px; margin-top: 60px; flex-wrap: wrap; justify-content: center;
}
.hbadge {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px); color: var(--white);
  padding: 13px 24px; border-radius: var(--r);
  font-size: 0.88rem; font-weight: 500;
  display: flex; align-items: center; gap: 9px;
  transition: background .2s;
}
.hbadge i { color: var(--gold-l); }
.hbadge:hover { background: rgba(255,255,255,.14); }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.4); font-size: 1.1rem; z-index: 1;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 480px 1fr; gap: 72px; align-items: center; }
.about-img-frame { position: relative; border-radius: 20px; overflow: visible; margin-bottom: 20px; }
.about-img-frame img { width: 100%; height: 380px; object-fit: cover; border-radius: 20px; box-shadow: var(--sh-lg); }
.about-exp-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--green); color: var(--white);
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(45,106,79,.4);
}
.exp-num { font-family: 'Cinzel', serif; font-size: 1.8rem; font-weight: 700; line-height: 1; }
.exp-label { font-size: 0.62rem; text-align: center; opacity: .9; line-height: 1.3; }
.about-stats-row { display: flex; gap: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); }
.astat {
  flex: 1; padding: 18px 12px; text-align: center;
  background: var(--white); border-right: 1px solid #f1f5f9;
}
.astat:last-child { border-right: none; }
.astat span { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--green); line-height: 1; }
.astat p { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }
.about-text-col p { color: var(--muted); margin-bottom: 14px; font-size: 0.97rem; }
.about-text-col em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--navy); font-size: 1.05em; }
.about-text-col strong { color: var(--navy); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0 28px; }
.af { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text); }
.af i { color: var(--green); font-size: 0.9rem; }
.about-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services { background: var(--bg); }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.svc-card {
  background: var(--white); border-radius: 20px;
  overflow: hidden; box-shadow: var(--sh);
  transition: transform .3s, box-shadow .3s;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.svc-img-wrap { position: relative; height: 240px; overflow: hidden; }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover .svc-img-wrap img { transform: scale(1.05); }
.svc-img-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 16px; border-radius: 50px;
  font-family: 'Cinzel', serif; font-size: 0.72rem;
  font-weight: 600; letter-spacing: .1em;
}
.green-badge { background: var(--green); color: var(--white); }
.gold-badge  { background: var(--gold);  color: var(--white); }
.svc-body { padding: 28px 28px 32px; }
.svc-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.green-icon { background: var(--green-pale); color: var(--green); }
.gold-icon  { background: var(--gold-pale);  color: var(--gold); }
.svc-body h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 4px; }
.svc-qual { font-size: 0.78rem; color: var(--muted); font-style: italic; margin-bottom: 18px; }
.svc-body ul { margin-bottom: 24px; }
.svc-body li {
  padding: 7px 0; font-size: 0.9rem; color: var(--muted);
  border-bottom: 1px solid #f1f5f9;
  display: flex; align-items: center; gap: 9px;
}
.svc-body li::before { content: '✓'; font-weight: 700; flex-shrink: 0; }
.svc-card:nth-child(1) li::before { color: var(--green); }
.svc-card:nth-child(2) li::before { color: var(--gold); }
.svc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem; transition: all .2s;
}
.green-btn { background: var(--green-pale); color: var(--green); }
.green-btn:hover { background: var(--green); color: var(--white); }
.gold-btn  { background: var(--gold-pale);  color: var(--gold); }
.gold-btn:hover  { background: var(--gold);  color: var(--white); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials { background: linear-gradient(135deg, var(--navy) 0%, #162040 100%); }
.testimonials .section-label { color: var(--gold-l); }
.testimonials .section-title { color: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.testi-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px; padding: 30px;
  transition: transform .25s, background .25s;
}
.testi-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); }
.featured-testi { background: rgba(181,134,13,.12); border-color: rgba(181,134,13,.3); }
.testi-quote { color: var(--gold-l); font-size: 1.6rem; margin-bottom: 14px; opacity: .7; }
.testi-card > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem; font-style: italic;
  color: rgba(255,255,255,.85); line-height: 1.8; margin-bottom: 22px;
}
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; color: var(--white); flex-shrink: 0;
}
.green-av { background: var(--green); }
.gold-av  { background: var(--gold); }
.testi-footer strong { display: block; color: var(--white); font-size: 0.9rem; }
.testi-footer span { color: rgba(255,255,255,.5); font-size: 0.76rem; }
.testi-stars { margin-left: auto; color: var(--gold-l); font-size: 0.85rem; letter-spacing: 2px; }

/* ══════════════════════════════════════
   ASTRO FORM
══════════════════════════════════════ */
.astro-section {
  background: linear-gradient(135deg, #1a0533 0%, #0f1f3d 50%, #1a0533 100%);
  position: relative; overflow: hidden;
}
.astro-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 5% 10%, rgba(168,85,247,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 50%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 70% 15%, rgba(232,184,75,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 90%, rgba(168,85,247,.3) 0%, transparent 100%);
}
.astro-section .section-label { color: var(--purple-l); }
.astro-section .section-title { color: var(--white); }
.astro-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.astro-img-col { position: relative; border-radius: 20px; overflow: hidden; }
.astro-side-img { width: 100%; height: 480px; object-fit: cover; border-radius: 20px; }
.astro-overlay-text {
  position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(to top, rgba(26,5,51,.92) 0%, rgba(26,5,51,.4) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
}
.astro-overlay-text i { color: var(--gold-l); font-size: 1.8rem; margin-bottom: 12px; }
.astro-overlay-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 10px; }
.astro-overlay-text p { color: rgba(255,255,255,.7); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.astro-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.astro-icons span {
  background: rgba(168,85,247,.2); border: 1px solid rgba(168,85,247,.4);
  color: var(--purple-l); padding: 6px 14px; border-radius: 50px;
  font-size: 0.78rem; display: flex; align-items: center; gap: 6px;
}
.astro-form-col { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 40px; backdrop-filter: blur(10px); }
.aform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.aform-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.aform-group label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 7px; }
.aform-group label i { color: var(--purple-l); font-size: 0.78rem; }
.aform-group input, .aform-group textarea {
  padding: 12px 14px; border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 10px; font-size: 0.92rem;
  font-family: 'DM Sans', sans-serif; color: var(--white);
  background: rgba(255,255,255,.08); transition: border-color .2s;
}
.aform-group input::placeholder, .aform-group textarea::placeholder { color: rgba(255,255,255,.35); }
.aform-group input:focus, .aform-group textarea:focus {
  outline: none; border-color: var(--purple-l);
  box-shadow: 0 0 0 3px rgba(168,85,247,.15);
}
.aform-group textarea { resize: vertical; }

/* ══════════════════════════════════════
   VIDEOS
══════════════════════════════════════ */
.videos { background: var(--bg); }
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.video-card {
  background: var(--white); border-radius: 18px;
  overflow: hidden; box-shadow: var(--sh);
  transition: transform .3s, box-shadow .3s;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.video-thumb { position: relative; height: 190px; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.video-card:hover .video-thumb img { transform: scale(1.06); }
.play-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.video-card:hover .play-overlay { background: rgba(0,0,0,.5); }
.play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.1rem;
  transition: transform .2s, background .2s;
  padding-left: 4px;
}
.video-card:hover .play-btn { transform: scale(1.1); background: var(--white); }
.video-duration {
  position: absolute; bottom: 10px; right: 12px;
  background: rgba(0,0,0,.75); color: var(--white);
  font-size: 0.75rem; padding: 3px 8px; border-radius: 4px;
}
.video-info { padding: 20px 22px 24px; }
.video-tag {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; margin-bottom: 10px;
  font-family: 'Cinzel', serif; letter-spacing: .06em;
}
.green-tag { background: var(--green-pale); color: var(--green); }
.gold-tag  { background: var(--gold-pale);  color: var(--gold); }
.video-info h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.video-info p  { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.video-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: #1877f2; font-size: 0.85rem; font-weight: 600;
  transition: gap .2s;
}
.video-link:hover { gap: 11px; }
.video-link i { font-size: 1rem; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.clinic-img-wrap { border-radius: 16px; overflow: hidden; margin-bottom: 28px; }
.clinic-img-wrap img { width: 100%; height: 200px; object-fit: cover; }
.cinfo-list { margin-bottom: 24px; }
.cinfo { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.cinfo-ic {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; flex-shrink: 0;
}
.cinfo strong { display: block; color: var(--navy); font-size: 0.83rem; margin-bottom: 2px; }
.cinfo p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }
.cinfo a { color: var(--green); }
.cinfo a:hover { text-decoration: underline; }
.contact-socials { display: flex; gap: 10px; }
.contact-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; transition: transform .2s;
}
.contact-socials a:hover { transform: translateY(-3px); }
.contact-socials a:nth-child(1) { background: #1877f2; color: #fff; }
.contact-socials a:nth-child(2) { background: #25d366; color: #fff; }
.contact-socials a:nth-child(3) { background: #ff0000; color: #fff; }
.map-wrap { border-radius: 14px; overflow: hidden; margin-bottom: 24px; box-shadow: var(--sh); }
.map-wrap iframe { display: block; }
.cform { background: var(--bg); border-radius: 18px; padding: 32px; box-shadow: var(--sh); }
.cform h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 22px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cform-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cform-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.cform-group input, .cform-group select, .cform-group textarea {
  padding: 11px 14px; border: 1.5px solid #e2e8f0;
  border-radius: 10px; font-size: 0.92rem;
  font-family: 'DM Sans', sans-serif; color: var(--text);
  background: var(--white); transition: border-color .2s;
}
.cform-group input:focus, .cform-group select:focus, .cform-group textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,106,79,.1);
}
.cform-group textarea { resize: vertical; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--navy); }
.footer-top { border-bottom: 1px solid rgba(255,255,255,.08); padding: 60px 0 48px; }
.footer-top-inner { display: flex; gap: 56px; align-items: flex-start; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 12px; min-width: 200px; }
.footer-logo-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-l); }
.footer-name { display: block; color: var(--white); font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 600; }
.footer-tagline { display: block; color: var(--gold-l); font-size: 0.68rem; letter-spacing: .06em; margin-top: 3px; }
.footer-cols { display: flex; gap: 48px; flex: 1; flex-wrap: wrap; }
.fcol h4 { font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-l); margin-bottom: 18px; }
.fcol ul { display: flex; flex-direction: column; gap: 10px; }
.fcol li, .fcol a { color: rgba(255,255,255,.55); font-size: 0.87rem; display: flex; align-items: center; gap: 8px; transition: color .2s; }
.fcol a:hover { color: var(--white); }
.fcol i { color: var(--gold-l); font-size: 0.75rem; width: 14px; }
.footer-bottom { padding: 20px 0 10px; text-align: center; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 10px; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 0.82rem; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 0.85rem; transition: all .2s;
}
.footer-socials a:hover { background: var(--gold); color: var(--white); }
.footer-disc { color: rgba(255,255,255,.22); font-size: 0.7rem; padding-bottom: 6px; }

/* ══════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════ */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: transform .2s, box-shadow .2s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.6); }
.float-wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: var(--white);
  padding: 6px 14px; border-radius: 8px; font-size: 0.8rem;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.float-wa:hover .float-wa-tooltip { opacity: 1; }

/* ══════════════════════════════════════
   FADE-UP ANIMATION
══════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1000px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-col { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top-inner { flex-direction: column; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .svc-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .astro-grid { grid-template-columns: 1fr; }
  .astro-img-col { display: none; }
  .aform-row { grid-template-columns: 1fr; }
  .cform-row { grid-template-columns: 1fr; }
  .footer-cols { flex-direction: column; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-badges { gap: 10px; }
  .hbadge { padding: 10px 18px; font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-call, .btn-wa { width: 100%; justify-content: center; }
}
