/* ============================================
   SVELTA DENTAL DESIGN — Global Styles
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --navy:    #3A3B55;
  --gold:    #C9A73A;
  --warm:    #F7F0E9;
  --white:   #FFFFFF;
  --gray:    #6B6B6B;
  --light:   #F0F0F0;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; font-weight: 400; color: #333; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p  { font-size: 1rem; color: var(--gray); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.03em;
}
.btn:hover { background: #3A3B55; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ---- Section Wrappers ---- */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray); max-width: 580px; margin-bottom: 48px; }

/* Centered header block */
.section-header { text-align: center; }
.section-header .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- Backgrounds ---- */
.bg-navy  { background: var(--navy); }
.bg-warm  { background: var(--warm); }
.bg-white { background: var(--white); }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.85);
}
.topbar-phone svg { stroke: var(--gold); flex-shrink: 0; }
.topbar-phone a { color: rgba(255,255,255,0.85); text-decoration: none; }
.topbar-phone a:hover { color: var(--gold); }
.topbar-cta {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  border-bottom: 1px solid rgba(201,167,58,0.5);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.topbar-cta:hover { color: var(--gold); border-color: var(--gold); }

/* Hamburger button (hidden on desktop) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 37px; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  height: 72px;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo img { height: 53px; width: auto; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ''; display: inline-block; margin-left: 5px; vertical-align: middle; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; position: relative; top: -1px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 6px;
  min-width: 220px;
  padding: 12px 0 8px;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--navy);
  transition: background 0.15s;
}
.dropdown-menu a:hover { background: var(--warm); color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background:
    linear-gradient(to right,
      rgba(58,59,85,0.95) 0%,
      rgba(58,59,85,0.85) 35%,
      rgba(58,59,85,0.45) 60%,
      rgba(58,59,85,0.10) 100%
    ),
    url('../images/hero-smile.jpg') center / cover no-repeat;
  padding: 197px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: block;
  max-width: 600px;
}
.hero h1 { color: var(--white); }
.hero h2 { color: var(--white); }
.hero .section-label { color: var(--gold); }
.hero-content { color: var(--white); }
.hero-content .section-label { color: var(--gold); }
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }
.hero-image { border-radius: 12px; overflow: hidden; }
.hero-image img { width: 100%; height: 480px; object-fit: cover; border-radius: 12px; }
.hero-image-placeholder {
  width: 100%;
  height: 480px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
  font-style: italic;
  border: 2px dashed rgba(255,255,255,0.15);
}

/* ============================================
   PROCEDURE CARDS
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-top: 3px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.card-img {
  width: 100%;
  height: 200px;
  margin: -32px -24px 24px;
  width: calc(100% + 48px);
  overflow: hidden;
  border-radius: 7px 7px 0 0;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.8rem;
  font-style: italic;
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.card h3 { color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 0.9rem; margin-bottom: 20px; }
.card-img-link { display: block; }
.card-title-link { text-decoration: none; color: inherit; display: block; }
.card-title-link:hover h3 { color: var(--gold); }
.card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }

/* ============================================
   WHY SVELTA — Stats
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-text h2 { color: var(--navy); margin-bottom: 20px; }
.why-text p { margin-bottom: 32px; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   BEFORE & AFTER
   ============================================ */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.ba-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.ba-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.ba-card-placeholder {
  height: 260px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.85rem;
  font-style: italic;
  flex-direction: column;
  gap: 8px;
}
.ba-label {
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  text-align: center;
}

/* ---- Gallery Tabs ---- */
.gallery-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.gallery-tab {
  background: none;
  border: 2px solid #E0E0E0;
  border-radius: 32px;
  padding: 8px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-tab:hover { border-color: var(--gold); color: var(--gold); }
.gallery-tab.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ============================================
   FINANCING TEASER
   ============================================ */
.financing-teaser {
  background: var(--navy);
  text-align: center;
  padding: 80px 0;
}
.financing-teaser h2 { color: var(--white); margin-bottom: 16px; }
.financing-teaser p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 36px; }

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-form-section { background: var(--white); }
.contact-form-section.bg-warm { background: var(--warm); }
.form-wrapper { max-width: 680px; margin: 0 auto; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #333;
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; text-align: center; padding: 16px; font-size: 1rem; }

/* ---- GHL Embed Form ---- */
.ghl-form-wrapper { max-width: 680px; margin: 0 auto; }
.ghl-form-wrapper iframe { width: 100%; border: none; min-height: 600px; display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 20px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.footer-icon { color: var(--gold); flex-shrink: 0; display: flex; align-items: center; margin-top: 2px; }
.footer-icon svg { stroke: var(--gold); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}
.footer-legal-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: var(--gold);
}
.social-links { display: flex; gap: 14px; align-items: center; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-links a:hover { background: var(--gold); color: var(--navy); }
.social-links a svg { display: block; }

/* ============================================
   TWO-COLUMN (text + image)
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-text h2 { margin-bottom: 20px; }
.two-col-text p  { margin-bottom: 20px; }
.two-col-img { border-radius: 12px; overflow: hidden; }
.two-col-img img { width: 100%; height: 420px; object-fit: cover; }
.two-col-img-placeholder {
  width: 100%;
  height: 420px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.9rem;
  font-style: italic;
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  position: relative;
}
.team-photo {
  width: 100%;
  height: 420px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.85rem;
  font-style: italic;
  position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(58,59,85,0.92) 0%, transparent 100%);
  pointer-events: none;
}
.team-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px;
  z-index: 1;
}
.team-info h3 {
  color: var(--white);
  margin-bottom: 0;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.team-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: block;
}
.team-info p { font-size: 0.9rem; }

/* ============================================
   VALUES / 3-COL ICON CARDS
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.value-icon svg { stroke: var(--gold); }
.value-card h3 { margin-bottom: 12px; }

/* ============================================
   STEPS (How It Works — 3 steps)
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card { text-align: center; padding: 32px 24px; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
}
.step-card h3 { margin-bottom: 12px; }

/* ============================================
   PROCEDURE STEPS (5-step process)
   ============================================ */
.procedure-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.procedure-step {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.procedure-step .step-number { width: 44px; height: 44px; font-size: 1.1rem; }
.procedure-step h3 { font-size: 1rem; margin-bottom: 8px; }
.procedure-step p  { font-size: 0.85rem; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  gap: 16px;
  user-select: none;
}
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 20px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================
   FINANCING CARDS
   ============================================ */
.financing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.financing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-left: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
}
.financing-card-logo {
  height: 72px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.financing-card-logo img {
  max-height: 72px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  display: block;
}
.financing-card h3 { margin-bottom: 12px; }
.financing-card p  { margin-bottom: 12px; }
.financing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.financing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}
.financing-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.insurance-section {
  margin-top: 64px;
  text-align: center;
}
.insurance-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
}
.insurance-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  gap: 40px 56px;
  max-width: 900px;
  margin: 0 auto;
}
.insurance-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.2s, opacity 0.2s;
}
.insurance-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img-wrap { max-width: 90vw; max-height: 88vh; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 88vh; object-fit: contain; display: block; border-radius: 4px; }
.lightbox-close { position: fixed; top: 20px; right: 28px; background: none; border: none; color: #fff; font-size: 2.5rem; cursor: pointer; line-height: 1; z-index: 2001; }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none; color: #fff; font-size: 2.5rem; cursor: pointer; padding: 12px 18px; border-radius: 6px; z-index: 2001; transition: background 0.2s; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.ba-card img { cursor: pointer; }

/* ============================================
   PROCEDURE OVERVIEW CARDS (large, 2-col)
   ============================================ */
.procedure-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.procedure-overview-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.procedure-overview-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.procedure-overview-img {
  width: 100%;
  height: 240px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.85rem;
  font-style: italic;
}
.procedure-overview-img img { width: 100%; height: 100%; object-fit: cover; }
.procedure-overview-body { padding: 32px; }
.procedure-overview-body h3 { font-size: 1.3rem; margin-bottom: 12px; }
.procedure-overview-body p  { margin-bottom: 20px; }

/* ============================================
   DIFFERENTIATORS (3-col)
   ============================================ */
.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.differentiator {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.differentiator-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.differentiator-icon svg { stroke: var(--gold); }
.differentiator h3 { margin-bottom: 12px; }

/* ============================================
   CTA CALLOUT STRIP
   ============================================ */
.cta-callout { text-align: center; padding: 80px 0; }
.cta-callout h2 { margin-bottom: 16px; }
.cta-callout p  { max-width: 520px; margin: 0 auto 32px; color: var(--gray); }

/* ============================================
   CONTACT PAGE INFO + MAP
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { stroke: var(--white); }
.contact-detail-text strong { display: block; color: var(--navy); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-detail-text span   { font-size: 0.95rem; color: var(--gray); }
.map-embed { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.map-embed iframe { width: 100%; height: 420px; border: none; display: block; }
.map-placeholder {
  width: 100%;
  height: 420px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-inner            { grid-template-columns: 1fr; }
  .hero-image            { display: none; }
  .cards-grid            { grid-template-columns: repeat(2, 1fr); }
  .why-grid              { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: 1fr 1fr; }
  .two-col               { grid-template-columns: 1fr; }
  .team-grid             { grid-template-columns: repeat(2, 1fr); }
  .team-photo            { height: 360px; }
  .values-grid           { grid-template-columns: 1fr; }
  .steps-grid            { grid-template-columns: 1fr; }
  .procedure-steps       { grid-template-columns: repeat(2, 1fr); }
  .financing-grid        { grid-template-columns: 1fr; }
  .procedure-overview-grid { grid-template-columns: 1fr; }
  .differentiators-grid  { grid-template-columns: 1fr; }
  .contact-info-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cards-grid            { grid-template-columns: 1fr; }
  .ba-grid               { grid-template-columns: 1fr; }
  .form-grid             { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: 1fr; }
  .team-grid             { grid-template-columns: 1fr; }
  .procedure-steps       { grid-template-columns: 1fr; }
  .stats-grid            { grid-template-columns: 1fr; }
  .gallery-tabs          { gap: 6px; }
  .gallery-tab           { font-size: 0.78rem; padding: 6px 14px; }

  /* Hide topbar, reset nav to top */
  .topbar                { display: none; }
  .nav                   { top: 0; }
  .hero                  { padding-top: 120px; background: linear-gradient(rgba(58,59,85,0.72), rgba(58,59,85,0.72)), url('../images/hero-smile.jpg') 72% center / cover no-repeat; }

  /* Show hamburger */
  .nav-hamburger         { display: flex; }

  /* Hide nav links by default, show when open */
  .nav-links             { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 8px 24px 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
  }
  .nav-links.open > li   { border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-links.open > li:last-child { border-bottom: none; }
  .nav-links.open > li > a { display: block; padding: 13px 0; font-size: 1rem; }
  .nav-links.open .btn   { margin-top: 8px; text-align: center; display: block; }

  /* Procedures sub-items shown inline */
  .nav-links.open .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    background: none;
    padding: 0 0 8px 16px;
    min-width: unset;
    border-left: 2px solid var(--gold);
  }
  .nav-links.open .dropdown-menu a { padding: 7px 0; font-size: 0.9rem; color: var(--gray); }
  .nav-dropdown > a::after { content: ''; }
}
