:root {
  --navy:   #003a76;
  --navy-dark: #002456;
  --navy-mid:  #1a5a9e;
  --teal:   #11a399;
  --teal-dark: #007256;
  --teal-mid:  #2bbfb3;
  --teal-light: #e0f5f4;
  --teal-pale:  #f0fbfa;
  --green:  #529828;
  --green-light: #edf7e0;
  --white:  #ffffff;
  --off-white: #f6fbfd;
  --gray:   #3a4a58;
  --gray-light: #e8eef2;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:'Lato',sans-serif; background:var(--white); color:var(--gray); overflow-x:hidden; }

/* ── LANGUAGE TOGGLE ── */
/* Hide all lang-attributed elements by default */
[lang-en], [lang-es] { display:none !important; }

/* Block-level elements (p, div, li, h1–h6, section, ul) */
body.en p[lang-en], body.en div[lang-en], body.en li[lang-en],
body.en h1[lang-en], body.en h2[lang-en], body.en h3[lang-en],
body.en h4[lang-en], body.en h5[lang-en], body.en h6[lang-en] { display:block !important; }

body.es p[lang-es], body.es div[lang-es], body.es li[lang-es],
body.es h1[lang-es], body.es h2[lang-es], body.es h3[lang-es],
body.es h4[lang-es], body.es h5[lang-es], body.es h6[lang-es] { display:block !important; }

/* Inline elements (span) */
body.en span[lang-en] { display:inline !important; }
body.es span[lang-es] { display:inline !important; }

/* Inline-block / flex elements (a buttons, button elements) */
body.en a[lang-en], body.en button[lang-en] { display:inline-block !important; }
body.es a[lang-es], body.es button[lang-es] { display:inline-block !important; }

/* Flex-row elements that wrap buttons */
body.en .hero-btns a[lang-en],
body.en .cta-band-btns a[lang-en] { display:inline-block !important; }
body.es .hero-btns a[lang-es],
body.es .cta-band-btns a[lang-es] { display:inline-block !important; }

/* Textarea special */
body.en textarea[lang-en] { display:block !important; }
body.es textarea[lang-es] { display:block !important; }
.lang-bar {
  background:var(--navy-dark); padding:8px 48px;
  display:flex; justify-content:flex-end; align-items:center; gap:12px;
}
.lang-bar span { color:rgba(255,255,255,0.6); font-size:0.8rem; letter-spacing:1px; }
.lang-btn {
  background:none; border:1px solid rgba(255,255,255,0.35); color:rgba(255,255,255,0.75);
  padding:4px 14px; border-radius:100px; font-size:0.78rem; font-weight:700;
  cursor:pointer; transition:all 0.2s; letter-spacing:1px;
}
.lang-btn.active { background:var(--teal); border-color:var(--teal); color:var(--white); }
.lang-btn:hover:not(.active) { border-color:var(--teal); color:var(--white); }

/* ── NAV ── */
nav {
  position:sticky; top:0; z-index:200; background:var(--white);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 48px; height:84px;
  box-shadow:0 2px 20px rgba(0,58,118,0.12);
}
.nav-logo img { height:72px; width:auto; }
.nav-toggle { display:none; background:none; border:none; font-size:1.7rem; cursor:pointer; color:var(--navy); }
nav ul { list-style:none; display:flex; gap:4px; align-items:center; }
nav ul li { position:relative; }
nav ul a {
  color:var(--navy); text-decoration:none; font-size:0.87rem; font-weight:700;
  padding:8px 12px; border-radius:6px; transition:all 0.2s; display:block; white-space:nowrap;
}
nav ul a:hover { color:var(--teal); background:var(--teal-light); }
.nav-cta {
  background:var(--teal) !important; color:var(--white) !important;
  padding:10px 20px !important; border-radius:8px !important;
  box-shadow:0 4px 14px rgba(17,163,153,0.35);
}
.nav-cta:hover { background:var(--teal-dark) !important; color:var(--white) !important; }
.nav-phone {
  border:2px solid var(--navy) !important; color:var(--navy) !important;
  padding:8px 14px !important; border-radius:8px !important;
}
.nav-phone:hover { background:var(--navy) !important; color:var(--white) !important; }

/* ── ALERT BANNER ── */
.alert-banner {
  background:linear-gradient(90deg,var(--navy),var(--navy-mid));
  color:var(--white); text-align:center; padding:10px 48px;
  font-size:0.88rem; font-weight:700; letter-spacing:0.5px;
}
.alert-banner a { color:var(--teal-mid); text-decoration:none; }
.alert-banner a:hover { text-decoration:underline; }

/* ── NAV PORTAL LINK ── */
.nav-portal {
  border:2px solid var(--teal) !important; color:var(--teal) !important;
  padding:8px 14px !important; border-radius:8px !important;
}
.nav-portal:hover { background:var(--teal) !important; color:var(--white) !important; }

/* ── HERO FEATURES LIST ── */
.hero-features {
  display:flex; flex-direction:column; gap:8px; margin-bottom:28px;
}
.hero-feat {
  display:flex; align-items:center; gap:10px;
  color:rgba(255,255,255,0.88); font-size:0.95rem; font-weight:600;
}
.hf-dot {
  width:8px; height:8px; border-radius:50%;
  background:var(--teal-mid); flex-shrink:0;
}

/* ── HERO SUBLINKS ── */
.hero-sublinks {
  display:flex; align-items:center; gap:10px; margin-bottom:20px;
  font-size:0.88rem; color:rgba(255,255,255,0.65);
}
.hero-sublinks a { color:var(--teal-mid); text-decoration:none; font-weight:700; }
.hero-sublinks a:hover { text-decoration:underline; }

/* ── SECTION CTA ROW ── */
.section-cta {
  text-align:center; margin-top:36px;
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
}

/* ── TESTIMONIAL RATING BAR ── */
.testi-rating-bar {
  display:flex; align-items:center; gap:16px; margin-top:8px; margin-bottom:0;
  flex-wrap:wrap;
}
.testi-score {
  font-family:'Playfair Display',serif; font-size:1.6rem; color:var(--teal-mid);
  font-weight:700;
}
.testi-label { color:rgba(255,255,255,0.6); font-size:0.82rem; }
.testi-feature-wrap { margin-top:28px; }

/* ── HOURS TABLE HEADER FIX ── */
.hours-header {
  background:var(--navy); color:var(--white);
  display:grid; grid-template-columns:1fr 1fr;
  padding:13px 22px; font-weight:700; font-size:0.88rem; letter-spacing:0.5px;
  border-radius:10px 10px 0 0;
}

/* ── FOOTER HOURS LIST ── */
.footer-hours { list-style:none !important; }
.footer-hours li {
  display:flex; justify-content:space-between; align-items:center;
  padding:5px 0; border-bottom:1px solid rgba(255,255,255,0.06);
  font-size:0.83rem;
}
.footer-hours li:last-child { border-bottom:none; }
.fday { color:rgba(255,255,255,0.55); }
.ftime { color:rgba(255,255,255,0.85); font-weight:600; }
.closed-txt { color:#fc8181 !important; font-weight:700; }
.footer-hours .closed .fday { color:rgba(255,255,255,0.4); }

/* ── CONTACT PAGE GRID ── */
.contact-page-grid {
  display:grid; grid-template-columns:1fr 1.1fr; gap:56px; align-items:start;
}
.contact-info-col {}
.contact-form-col {}

/* ── APPOINTMENT FORM ── */
/* ── APPOINTMENT FORM ── */
.appt-form {
  background:var(--off-white);
  border-radius:18px;
  padding:36px 36px 32px;
  border:1.5px solid var(--gray-light);
  box-shadow:0 3px 18px rgba(0,58,118,0.07);
}
.appt-form h3 {
  font-family:'Playfair Display',serif;
  color:var(--navy);
  font-size:1.3rem;
  margin-bottom:6px;
}
.form-note {
  font-size:0.87rem; color:var(--gray); margin-bottom:22px; line-height:1.5;
}
.form-note a { color:var(--teal); font-weight:700; }

/* Two-column row — collapses to 1 on mobile */
.form-row-2 {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:18px; /* match .form-field bottom gap */
}
/* Fields INSIDE a row don't add their own bottom margin — row handles it */
.form-row-2 .form-field {
  margin-bottom:0;
}

/* Every field: label on top, input below — consistent 18px gap between fields */
.form-field {
  display:flex;
  flex-direction:column;
  gap:5px;            /* label → input gap */
  margin-bottom:18px; /* field → field gap */
}

/* Bilingual labels: only ONE shows at a time — they must be inline-block not block
   so the hidden one takes zero space. We override here specifically for form labels. */
.form-field label[lang-en],
.form-field label[lang-es] {
  display:none !important; /* default hidden — lang JS overrides via body class */
}
body.en .form-field label[lang-en] { display:block !important; }
body.es .form-field label[lang-es] { display:block !important; }

/* Unified label style */
.form-field label {
  font-size:0.72rem;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--teal-dark);
  font-weight:700;
  line-height:1;
  margin-bottom:0; /* gap:5px on parent handles spacing */
}

/* Unified input / select / textarea */
.form-field input,
.form-field select,
.form-field textarea {
  width:100%;
  padding:11px 14px;
  border:1.5px solid var(--gray-light);
  border-radius:8px;
  font-family:'Lato', sans-serif;
  font-size:0.93rem;
  color:var(--gray);
  background:var(--white);
  transition:border-color 0.2s, box-shadow 0.2s;
  outline:none;
  box-sizing:border-box;
  appearance:auto;
  -webkit-appearance:auto;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color:var(--teal);
  box-shadow:0 0 0 3px rgba(17,163,153,0.12);
}
.form-field textarea {
  height:88px;
  resize:vertical;
  line-height:1.5;
}

/* Submit button */
.form-submit-btn {
  background:var(--teal);
  color:var(--white);
  padding:13px 28px;
  border:none;
  border-radius:8px;
  font-family:'Lato', sans-serif;
  font-size:0.95rem;
  font-weight:700;
  cursor:pointer;
  width:100%;
  margin-top:8px;
  transition:background 0.2s, transform 0.2s;
  box-shadow:0 4px 14px rgba(17,163,153,0.35);
  letter-spacing:0.3px;
}
.form-submit-btn:hover { background:var(--teal-dark); transform:translateY(-1px); }

/* ── ANNOUNCEMENT BAR — permanent, no dismiss ── */
.announce-bar {
  background:linear-gradient(90deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-dark) 100%);
  color:var(--white);
  padding:0;
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.announce-inner {
  max-width:1200px;
  margin:0 auto;
  padding:0 48px;
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  flex-wrap:nowrap;
  overflow:hidden;
}
.announce-pill {
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  font-size:0.82rem;
  font-weight:700;
  letter-spacing:0.3px;
  white-space:nowrap;
  border-right:1px solid rgba(255,255,255,0.15);
  flex:1;
  justify-content:center;
}
.announce-pill:last-child { border-right:none; }
.announce-pill .pill-icon {
  font-size:0.95rem;
  flex-shrink:0;
}
.announce-pill a { color:var(--white); text-decoration:none; }
.announce-pill a:hover { text-decoration:underline; opacity:0.9; }
.announce-pill strong { font-weight:800; }
@media(max-width:960px) {
  .announce-inner {
    padding:0 16px;
    flex-wrap:wrap;
  }
  .announce-pill {
    flex:1 1 50%;
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,0.1);
    padding:9px 12px;
    font-size:0.8rem;
    justify-content:flex-start;
  }
  .announce-pill:nth-child(3),.announce-pill:nth-child(4) { border-bottom:none; }
}
@media(max-width:600px) {
  .announce-pill { flex:1 1 100%; }
}

/* ── DOCTOR PHOTO ── */
.about-avatar-wrap {
  width:130px; height:130px; border-radius:50%;
  overflow:hidden; margin:0 auto 18px;
  border:3px solid rgba(255,255,255,0.35);
  box-shadow:0 4px 18px rgba(0,0,0,0.25);
  flex-shrink:0;
}
.about-photo {
  width:100%; height:100%; object-fit:cover; object-position:top center;
  display:block;
}

/* ── HOURS SECTION ── */
.hours-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;
}
.hours-table { border-radius:10px; overflow:hidden; box-shadow:0 3px 18px rgba(0,58,118,0.08); }
.hours-row {
  display:grid; grid-template-columns:1fr 1fr;
  padding:13px 22px; border-bottom:1px solid var(--gray-light);
  background:var(--white);
}
.hours-row:last-child { border-bottom:none; }
.hours-row:nth-child(even) { background:var(--off-white); }
.hours-row .day { font-weight:700; color:var(--navy); font-size:0.9rem; }
.hours-row .time { color:var(--gray); font-size:0.9rem; text-align:right; }
.hours-row.closed .time { color:#e53e3e; font-weight:700; }
.hours-row.closed .day { color:var(--gray); }

/* ── GALLERY ITEM FIX ── */
.gallery-cap {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(transparent, rgba(0,36,86,0.88));
  color:var(--white); padding:22px 18px 14px;
  font-size:0.84rem; font-weight:600; line-height:1.4;
  opacity:0; transition:opacity 0.3s;
}
.gallery-item:hover .gallery-cap { opacity:1; }

/* ── ANNOUNCEMENT BAR (replaces scrolling ticker) ── */
.announce-bar {
  background:linear-gradient(90deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-dark) 100%);
  color:var(--white); padding:0;
}
.announce-pills {
  display:flex; align-items:stretch; justify-content:center;
  flex-wrap:wrap; gap:0; max-width:1200px; margin:0 auto;
}
.announce-pill {
  display:flex; align-items:center; gap:9px;
  padding:13px 26px; font-size:0.84rem; font-weight:700; letter-spacing:0.4px;
  border-right:1px solid rgba(255,255,255,0.18); white-space:nowrap;
  transition:background 0.2s;
}
.announce-pill:last-child { border-right:none; }
.announce-pill:hover { background:rgba(255,255,255,0.08); }
.announce-pill .pill-icon {
  width:28px; height:28px; border-radius:50%;
  background:rgba(255,255,255,0.18);
  display:flex; align-items:center; justify-content:center;
  font-size:0.85rem; flex-shrink:0;
}
.announce-pill a { color:var(--white); text-decoration:none; }
.announce-pill.highlight { background:rgba(255,255,255,0.12); }
/* Dismiss button */
.announce-dismiss {
  display:flex; align-items:center; padding:0 16px;
  color:rgba(255,255,255,0.5); font-size:1.2rem; cursor:pointer;
  background:none; border:none; transition:color 0.2s; flex-shrink:0;
}
.announce-dismiss:hover { color:var(--white); }
.announce-bar.hidden { display:none; }
@media(max-width:960px) {
  .announce-pills { flex-direction:column; align-items:flex-start; }
  .announce-pill { border-right:none; border-bottom:1px solid rgba(255,255,255,0.12); width:100%; }
  .announce-pill:last-child { border-bottom:none; }
  .announce-bar .announce-pills { padding:0 16px; }
}

/* ── HERO ── */
.hero {
  min-height:92vh;
  background:linear-gradient(155deg, var(--navy-dark) 0%, var(--navy) 45%, var(--teal-dark) 100%);
  display:flex; align-items:center; position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; top:-150px; right:-150px;
  width:700px; height:700px; border-radius:50%;
  background:radial-gradient(circle, rgba(17,163,153,0.12) 0%, transparent 70%);
}
.hero::after {
  content:''; position:absolute; bottom:-100px; left:-100px;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle, rgba(82,152,40,0.08) 0%, transparent 70%);
}
.hero-inner {
  max-width:1200px; margin:0 auto; padding:80px 48px;
  display:grid; grid-template-columns:1.1fr 1fr; gap:72px; align-items:center;
  position:relative; z-index:2; width:100%;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2);
  color:var(--teal-mid); font-size:0.76rem; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  padding:6px 16px; border-radius:100px; margin-bottom:20px;
}
.hero-badge::before { content:''; width:6px; height:6px; background:var(--teal-mid); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-family:'Playfair Display',serif;
  font-size:3.4rem; line-height:1.12; color:var(--white); margin-bottom:16px;
}
.hero h1 em { font-style:italic; color:var(--teal-mid); }
.hero-sub { font-size:1.05rem; line-height:1.8; color:rgba(255,255,255,0.82); margin-bottom:32px; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:36px; }
.btn-primary {
  background:var(--teal); color:var(--white); padding:14px 32px;
  border-radius:8px; text-decoration:none; font-weight:700; font-size:0.95rem;
  transition:transform 0.2s,box-shadow 0.2s; display:inline-block;
  box-shadow:0 4px 16px rgba(17,163,153,0.4);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(17,163,153,0.5); }
.btn-secondary {
  border:2px solid rgba(255,255,255,0.5); color:var(--white); padding:12px 28px;
  border-radius:8px; text-decoration:none; font-weight:700; font-size:0.95rem;
  transition:all 0.2s; display:inline-block;
}
.btn-secondary:hover { border-color:var(--teal-mid); background:rgba(17,163,153,0.15); }
.btn-green {
  background:var(--green); color:var(--white); padding:14px 32px;
  border-radius:8px; text-decoration:none; font-weight:700; font-size:0.95rem;
  transition:transform 0.2s; display:inline-block;
  box-shadow:0 4px 16px rgba(82,152,40,0.35);
}
.btn-green:hover { transform:translateY(-2px); background:#3d7a1a; }
.btn-navy {
  background:var(--navy); color:var(--white); padding:14px 32px;
  border-radius:8px; text-decoration:none; font-weight:700; font-size:0.95rem;
  transition:transform 0.2s; display:inline-block;
}
.btn-navy:hover { transform:translateY(-2px); background:var(--navy-dark); }
.btn-outline-navy {
  border:2px solid var(--navy); color:var(--navy); padding:12px 28px;
  border-radius:8px; text-decoration:none; font-weight:700; font-size:0.95rem;
  transition:all 0.2s; display:inline-block;
}
.btn-outline-navy:hover { background:var(--navy); color:var(--white); }

/* HERO RIGHT CARDS */
.hero-right { display:flex; flex-direction:column; gap:16px; }
.hero-card {
  background:rgba(255,255,255,0.09); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.18); border-radius:14px; padding:22px 24px;
  color:var(--white); transition:transform 0.2s;
}
.hero-card:hover { transform:translateY(-3px); }
.hero-card-icon { font-size:1.6rem; margin-bottom:8px; }
.hero-card h3 { font-family:'Playfair Display',serif; font-size:1rem; margin-bottom:5px; }
.hero-card p { font-size:0.87rem; color:rgba(255,255,255,0.75); line-height:1.55; }
.hero-accepting {
  background:linear-gradient(135deg, var(--green), #3d7a1a);
  border-radius:12px; padding:18px 22px; color:var(--white);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.hero-accepting .hl { font-size:1rem; font-weight:700; }
.hero-accepting .sub { font-size:0.82rem; opacity:0.85; }
.hero-accepting a {
  background:var(--white); color:var(--green); padding:9px 18px; border-radius:6px;
  text-decoration:none; font-weight:700; font-size:0.85rem; white-space:nowrap;
  transition:transform 0.2s; flex-shrink:0;
}
.hero-accepting a:hover { transform:scale(1.04); }

/* ── SHARED ── */
section { padding:88px 48px; }
.con { max-width:1200px; margin:0 auto; }
.sec-label {
  font-size:0.72rem; letter-spacing:3px; text-transform:uppercase;
  color:var(--teal); font-weight:700; margin-bottom:10px;
}
h2 { font-family:'Playfair Display',serif; font-size:2.3rem; color:var(--navy); line-height:1.22; margin-bottom:16px; }
.lead { font-size:1rem; color:var(--gray); line-height:1.8; max-width:640px; }
.stripe { background:var(--teal); height:5px; }
.stripe-thin { background:var(--teal-light); height:3px; }

/* ── ABOUT ── */
.about { background:var(--off-white); }
.about-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:72px; align-items:center; }
.about-card {
  background:linear-gradient(145deg, var(--navy) 0%, var(--teal-dark) 100%);
  border-radius:20px; padding:48px 36px; color:var(--white); text-align:center;
}
.about-avatar {
  width:120px; height:120px; border-radius:50%;
  background:rgba(255,255,255,0.15); border:3px solid rgba(255,255,255,0.3);
  display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display',serif; font-size:2.8rem; color:var(--white);
  margin:0 auto 18px;
}
.about-card h3 { font-family:'Playfair Display',serif; font-size:1.6rem; margin-bottom:4px; }
.about-card .role { color:var(--teal-mid); font-size:0.85rem; letter-spacing:2px; text-transform:uppercase; margin-bottom:6px; }
.about-card .cred { color:rgba(255,255,255,0.7); font-size:0.82rem; margin-bottom:20px; }
.about-stat-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:18px; }
.astat { background:rgba(255,255,255,0.12); border-radius:10px; padding:14px 10px; }
.astat .n { font-family:'Playfair Display',serif; font-size:1.9rem; font-weight:700; }
.astat .l { font-size:0.72rem; opacity:0.8; letter-spacing:0.5px; }
.about-quote {
  background:rgba(255,255,255,0.1); border-radius:12px; padding:16px 18px;
  font-style:italic; font-size:0.9rem; line-height:1.65; color:rgba(255,255,255,0.9);
}
.about-text p { margin-bottom:18px; line-height:1.85; font-size:1rem; }
.about-text .pull-quote {
  border-left:4px solid var(--teal); padding-left:20px;
  font-family:'Playfair Display',serif; font-style:italic; color:var(--navy);
  font-size:1.05rem; line-height:1.65; margin:24px 0;
}

/* ── SERVICES ── */
.services { background:var(--white); }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.service-card {
  background:var(--white); border-radius:16px; padding:34px 26px;
  border:1.5px solid var(--gray-light);
  box-shadow:0 2px 16px rgba(0,58,118,0.06);
  transition:transform 0.25s,box-shadow 0.25s,border-color 0.25s; position:relative; overflow:hidden;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg,var(--teal),var(--navy));
  transform:scaleX(0); transform-origin:left; transition:transform 0.3s;
}
.service-card:hover { transform:translateY(-6px); box-shadow:0 16px 44px rgba(0,58,118,0.12); border-color:var(--teal-light); }
.service-card:hover::before { transform:scaleX(1); }
.service-icon { width:60px; height:60px; border-radius:14px; background:var(--teal-light); display:flex; align-items:center; justify-content:center; font-size:1.8rem; margin-bottom:18px; }
.service-card.green .service-icon { background:var(--green-light); }
.service-card h3 { color:var(--navy); font-size:1.05rem; font-weight:700; margin-bottom:10px; }
.service-card p { font-size:0.88rem; line-height:1.7; }

/* ── GALLERY ── */
.gallery { background:var(--off-white); }
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:44px; }
.gallery-item { border-radius:14px; overflow:hidden; position:relative; aspect-ratio:4/3; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-cap {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(transparent,rgba(0,36,86,0.85));
  color:var(--white); padding:20px 16px 14px;
  font-size:0.85rem; font-weight:700; opacity:0; transition:opacity 0.3s;
}
.gallery-item:hover .gallery-cap { opacity:1; }

/* ── TESTIMONIALS ── */
.testi-section {
  background:linear-gradient(145deg,var(--navy-dark) 0%,var(--navy) 60%,var(--teal-dark) 100%);
  position:relative; overflow:hidden;
}
.testi-section::before {
  content:''; position:absolute; top:-200px; right:-200px;
  width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,0.04) 0%,transparent 70%);
}
/* Featured testimonial */
.testi-feature {
  display:none; background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15); border-radius:20px;
  padding:48px 52px; margin:32px 0 24px; animation:tslide 0.45s ease;
}
.testi-feature.active { display:block; }
@keyframes tslide { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
.testi-bigq { font-size:5rem; line-height:1; color:var(--teal-mid); font-family:'Playfair Display',serif; display:block; margin-bottom:-8px; }
.testi-text { font-size:1.5rem; line-height:1.62; color:var(--white); font-family:'Playfair Display',serif; font-style:italic; margin-bottom:28px; }
.testi-author { display:flex; align-items:center; gap:16px; }
.testi-avatar2 {
  width:52px; height:52px; border-radius:50%;
  background:linear-gradient(135deg,var(--teal),var(--teal-dark));
  display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display',serif; font-size:1.2rem; color:var(--white); font-weight:700;
  flex-shrink:0; border:2px solid rgba(255,255,255,0.2);
}
.testi-author-name { color:var(--white); font-weight:700; font-size:0.95rem; }
.testi-author-sub { color:rgba(255,255,255,0.55); font-size:0.8rem; margin-top:2px; }
.testi-stars { color:#ffd700; font-size:1rem; letter-spacing:2px; margin-bottom:14px; }
/* Mini row */
.testi-mini-row { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.testi-mini {
  background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.12);
  border-radius:14px; padding:20px 18px; cursor:pointer; transition:all 0.25s;
  border-bottom:3px solid transparent;
}
.testi-mini:hover,.testi-mini.active { background:rgba(255,255,255,0.13); border-bottom-color:var(--teal-mid); transform:translateY(-3px); }
.testi-mini p { font-size:0.86rem; line-height:1.6; color:rgba(255,255,255,0.82); font-style:italic; margin-bottom:12px; }
.testi-mini .mn { color:var(--white); font-weight:700; font-size:0.87rem; }
.testi-mini .ms { color:rgba(255,255,255,0.5); font-size:0.77rem; }
.testi-mini .mst { color:#ffd700; font-size:0.77rem; letter-spacing:2px; margin-bottom:7px; }
/* Nav */
.testi-nav { display:flex; align-items:center; justify-content:center; gap:20px; margin-top:28px; }
.t-arr {
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.25);
  color:var(--white); font-size:1.1rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center; transition:background 0.2s;
}
.t-arr:hover { background:rgba(255,255,255,0.25); }
.t-dots { display:flex; gap:9px; }
.t-dot { width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,0.3); cursor:pointer; transition:all 0.2s; }
.t-dot.active { background:var(--teal-mid); transform:scale(1.35); }

/* ── INSURANCE ── */
.insurance { background:var(--white); }
.ins-track-wrap { overflow:hidden; margin-top:36px; }
.ins-track {
  display:flex; gap:36px; align-items:center;
  animation:ins 30s linear infinite; width:max-content;
}
.ins-track:hover { animation-play-state:paused; }
.ins-logo {
  height:56px; width:auto; object-fit:contain; filter:grayscale(30%);
  transition:filter 0.2s,transform 0.2s; flex-shrink:0;
}
.ins-logo:hover { filter:grayscale(0%); transform:scale(1.08); }
@keyframes ins { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── HOURS ── */
.hours-section { background:var(--off-white); }
.hours-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.hours-table { border-radius:16px; overflow:hidden; box-shadow:0 3px 18px rgba(0,58,118,0.08); }
.hours-row {
  display:grid; grid-template-columns:1fr 1fr;
  padding:14px 22px; border-bottom:1px solid var(--gray-light);
  background:var(--white);
}
.hours-row:last-child { border-bottom:none; }
.hours-row:nth-child(even) { background:var(--off-white); }
.hours-row .day { font-weight:700; color:var(--navy); font-size:0.92rem; }
.hours-row .time { color:var(--gray); font-size:0.9rem; text-align:right; }
.hours-row.closed .time { color:#e53e3e; font-weight:700; }
.hours-header { background:var(--navy); color:var(--white); padding:16px 22px; font-weight:700; font-size:0.95rem; letter-spacing:0.5px; }
/* Map + contact info */
.contact-block { display:flex; flex-direction:column; gap:18px; }
.contact-item { display:flex; gap:14px; align-items:flex-start; }
.contact-icon { width:44px; height:44px; background:var(--teal-light); border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:1.2rem; }
.contact-label { font-size:0.7rem; letter-spacing:2px; text-transform:uppercase; color:var(--teal); font-weight:700; margin-bottom:2px; }
.contact-val { color:var(--gray); font-size:0.9rem; line-height:1.5; }
.contact-val a { color:var(--navy); text-decoration:none; }
.contact-val a:hover { text-decoration:underline; }

/* ── CTA BAND ── */
.cta-band {
  background:linear-gradient(135deg,var(--teal-dark),var(--teal));
  padding:64px 48px; text-align:center; color:var(--white);
}
.cta-band h2 { color:var(--white); font-size:2rem; margin-bottom:12px; }
.cta-band p { color:rgba(255,255,255,0.82); font-size:1rem; margin-bottom:28px; max-width:560px; margin-left:auto; margin-right:auto; }
.cta-band-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ── PAGE BANNER ── */
.page-banner {
  background:linear-gradient(135deg,var(--navy-dark),var(--navy),var(--teal-dark));
  padding:120px 48px 64px; text-align:center; color:var(--white);
}
.page-banner .bc { font-size:0.8rem; color:rgba(255,255,255,0.55); margin-bottom:12px; }
.page-banner .bc a { color:rgba(255,255,255,0.7); text-decoration:none; }
.page-banner h1 { font-family:'Playfair Display',serif; font-size:2.8rem; margin-bottom:12px; }
.page-banner p { font-size:1.05rem; color:rgba(255,255,255,0.8); max-width:600px; margin:0 auto; }

/* ── FOOTER ── */
footer { background:var(--navy-dark); padding:60px 48px 32px; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.1); margin-bottom:28px; }
.footer-brand p { color:rgba(255,255,255,0.55); font-size:0.88rem; line-height:1.7; margin-bottom:14px; }
.footer-links { display:flex; flex-direction:column; gap:7px; }
.footer-links a { color:rgba(255,255,255,0.6); text-decoration:none; font-size:0.85rem; transition:color 0.2s; }
.footer-links a:hover { color:var(--teal-mid); }
.footer-col h4 { color:var(--white); font-size:0.78rem; letter-spacing:2px; text-transform:uppercase; font-weight:700; margin-bottom:14px; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:8px; }
.footer-col ul a { color:rgba(255,255,255,0.55); text-decoration:none; font-size:0.85rem; transition:color 0.2s; }
.footer-col ul a:hover { color:var(--teal-mid); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; }
.footer-bottom p { color:rgba(255,255,255,0.3); font-size:0.8rem; }
.footer-legal { display:flex; gap:16px; }
.footer-legal a { color:rgba(255,255,255,0.4); text-decoration:none; font-size:0.78rem; transition:color 0.2s; }
.footer-legal a:hover { color:var(--teal-mid); }

/* ── MODALS ── */
.modal-overlay {
  display:none; position:fixed; inset:0; background:rgba(0,0,0,0.65);
  z-index:1000; align-items:center; justify-content:center; padding:20px;
}
.modal-overlay.open { display:flex; }
.modal {
  background:var(--white); border-radius:16px; max-width:700px; width:100%;
  max-height:80vh; overflow-y:auto; padding:40px 44px; position:relative;
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}
.modal h2 { color:var(--navy); font-size:1.6rem; margin-bottom:16px; }
.modal h3 { color:var(--navy); font-size:1rem; font-weight:700; margin:18px 0 6px; }
.modal p,.modal li { font-size:0.9rem; line-height:1.75; color:var(--gray); }
.modal ul { padding-left:18px; margin-bottom:10px; }
.modal-close {
  position:absolute; top:16px; right:20px; background:none; border:none;
  font-size:1.6rem; cursor:pointer; color:var(--gray); line-height:1;
}
.modal-close:hover { color:var(--navy); }

/* ── RESPONSIVE ── */
@media(max-width:960px) {
  nav { padding:0 22px; height:78px; }
  nav ul { display:none; position:absolute; top:78px; left:0; right:0;
    background:var(--white); flex-direction:column; padding:16px 20px;
    box-shadow:0 8px 24px rgba(0,0,0,0.1); gap:4px; }
  nav ul.open { display:flex; }
  .nav-toggle { display:block; }
  .lang-bar { padding:8px 22px; }
  section { padding:64px 22px; }
  .hero-inner,.about-grid,.hours-grid,.contact-page-grid { grid-template-columns:1fr; }
  .form-row-2 { grid-template-columns:1fr; }
  .testi-rating-bar { flex-direction:column; align-items:flex-start; gap:6px; }
  .services-grid { grid-template-columns:1fr 1fr; }
  .gallery-grid { grid-template-columns:1fr 1fr; }
  .testi-mini-row { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr 1fr; }
  h2 { font-size:1.85rem; }
  .hero h1 { font-size:2.4rem; }
  .testi-feature { padding:32px 24px; }
  .testi-text { font-size:1.15rem; }
  .alert-banner { padding:10px 22px; }
  .page-banner { padding:100px 22px 54px; }
  .page-banner h1 { font-size:2.1rem; }
}
@media(max-width:600px) {
  .services-grid,.gallery-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; }
  .hero h1 { font-size:1.95rem; }
}
