/* ==========================================================
   ORA FIX Dentistry Dental Hygiene Clinic — Main Stylesheet
   
   SEO NOTE: While CSS itself doesn't directly affect rankings,
   fast-loading, mobile-responsive design IS a Google ranking
   factor (Core Web Vitals). Keep this file lean.
   ========================================================== */


/* ----------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   Change these values to restyle the entire site at once.
   ---------------------------------------------------------- */
:root {
  --bg:          #f5f0e1;   /* eggshell — main background */
  --bg-alt:      #ede8d5;   /* slightly darker eggshell for alternating sections */
  --bg-dark:     #181818;   /* footer / dark section background */
  --gold:        #c9a84c;   /* primary accent: buttons, highlights */
  --gold-dark:   #a07830;   /* hover / pressed state for gold elements */
  --gold-light:  #f0e6bb;   /* subtle gold tint for backgrounds */
  --black:       #1a1a1a;
  --dark:        #2c2c2c;
  --gray:        #5c5c5c;
  --light-gray:  #999999;
  --white:       #ffffff;
  --border:      #d8ceaa;
  --radius:      4px;
  --shadow:      0 2px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg:   0 8px 32px rgba(0, 0, 0, 0.14);
  --transition:  0.25s ease;
  --max-width:   1200px;
  --font-heading: Georgia, 'Times New Roman', Times, serif;
  --font-body:    system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


/* ----------------------------------------------------------
   2. RESET & BASE STYLES
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold); }

ul { list-style: none; }

/* ----------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--black);
  line-height: 1.3;
  font-weight: normal;
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); letter-spacing: -0.3px; }
h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 {
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
}

p {
  color: var(--gray);
  margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }

/* Decorative gold rule used under section headings */
.gold-rule {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 0.6rem auto 0;
  border: none;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.text-center { text-align: center; }
.text-center .gold-rule { margin-inline: auto; }


/* ----------------------------------------------------------
   4. LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section        { padding-block: 5rem; }
.section--alt   { background-color: var(--bg-alt); }
.section--dark  { background-color: var(--bg-dark); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p  { color: #b0b0b0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }


/* ----------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.btn--outline {
  background-color: transparent;
  border-color: var(--gold);
  color: var(--gold-dark);
}
.btn--outline:hover {
  background-color: var(--gold);
  color: var(--black);
}

.btn--white {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.btn--white:hover {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn--dark {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.btn--dark:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
}


/* ----------------------------------------------------------
   6. ANNOUNCEMENT BAR
   ---------------------------------------------------------- */
.announcement-bar {
  background-color: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.announcement-bar a {
  color: var(--black);
  text-decoration: underline;
}


/* ----------------------------------------------------------
   7. HEADER & NAVIGATION
   CSS-only mobile nav using the checkbox toggle technique.
   No JavaScript required.
   ---------------------------------------------------------- */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}

/* Hidden checkbox powers the mobile toggle */
.nav-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Brand logo */
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: normal;
  color: var(--black);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--black); }

/* Hamburger toggle label (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  display: block;
  transition: all var(--transition);
}
.nav-check:checked ~ .container .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-check:checked ~ .container .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav-check:checked ~ .container .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav list */
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list > li > a {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

/* Dropdown menu */
.nav-dropdown { position: relative; }

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-dropdown > a::after {
  content: '▾';
  font-size: 0.7rem;
  color: var(--gold);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  min-width: 250px;
  box-shadow: var(--shadow);
  z-index: 999;
  border-radius: 0 0 var(--radius) var(--radius);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }

.nav-dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.3px;
  border-bottom: 1px solid var(--border);
}
.nav-dropdown-menu li:last-child a { border-bottom: none; }
.nav-dropdown-menu li a:hover {
  background: var(--bg);
  color: var(--gold-dark);
}


/* ----------------------------------------------------------
   8. HERO SECTION
   ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero p {
  color: #c8c8c8;
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-phone {
  color: #aaa;
  font-size: 0.88rem;
}
.hero-phone a {
  color: var(--gold);
  font-weight: 700;
}


/* ----------------------------------------------------------
   9. FEATURE BADGES (Homepage row of 4 highlights)
   ---------------------------------------------------------- */
.features {
  padding-block: 3rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--bg);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.86rem;
  color: var(--gray);
  margin: 0;
}


/* ----------------------------------------------------------
   10. SERVICE CARDS (used on homepage & services index)
   ---------------------------------------------------------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.service-card-body p {
  font-size: 0.88rem;
  color: var(--gray);
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card-body .btn {
  align-self: flex-start;
}

/* Services page — 3 column grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}


/* ----------------------------------------------------------
   11. CTA BANNER
   ---------------------------------------------------------- */
.cta-banner {
  background-color: var(--bg-dark);
  padding-block: 5rem;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.6rem;
}
.cta-banner > .container > p {
  color: #aaa;
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
  max-width: 560px;
  margin-inline: auto;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cta-divider {
  color: #666;
  font-size: 0.85rem;
}
.cta-divider a {
  color: var(--gold);
  font-weight: 700;
}


/* ----------------------------------------------------------
   12. ABOUT TEASER (Homepage section)
   ---------------------------------------------------------- */
.about-teaser-text h2 { margin-bottom: 1.25rem; }
.about-teaser-text p  { font-size: 0.98rem; margin-bottom: 1.1rem; }
.about-teaser-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-teaser-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}


/* ----------------------------------------------------------
   13. NEWSLETTER STRIP
   ---------------------------------------------------------- */
.newsletter {
  background-color: var(--gold-light);
  border-block: 1px solid var(--border);
  padding-block: 3rem;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.newsletter-text p {
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  margin: 0;
}
.newsletter-text small {
  font-size: 0.8rem;
  color: var(--gray);
}
.newsletter-form {
  display: flex;
  gap: 0;
}
.newsletter-form input[type="email"] {
  padding: 0.72rem 1rem;
  border: 2px solid var(--gold-dark);
  border-right: none;
  background: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  min-width: 230px;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--black);
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--gold-dark);
}
.newsletter-form button {
  padding: 0.72rem 1.25rem;
  background: var(--gold-dark);
  color: var(--white);
  border: 2px solid var(--gold-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--transition), border-color var(--transition);
}
.newsletter-form button:hover {
  background: var(--black);
  border-color: var(--black);
}


/* ----------------------------------------------------------
   14. FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-dark);
  color: #a0a0a0;
}

.footer-main {
  padding-block: 4rem 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  display: inline-block;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.6;
  color: #888;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
  color: #888;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
}
.footer-col ul li a {
  color: #888;
  font-size: 0.87rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.87rem;
  color: #888;
}
.footer-contact-list .fi-label {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-top: 2px;
}
.footer-contact-list a { color: #888; }
.footer-contact-list a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.81rem;
  color: #555;
}
.footer-bottom a {
  color: #666;
}
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}


/* ----------------------------------------------------------
   15. PAGE HERO (interior pages — about, services, contact)
   ---------------------------------------------------------- */
.page-hero {
  background-color: var(--bg-dark);
  padding-block: 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, transparent 65%);
}
.page-hero h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
}
.page-hero .page-hero-sub {
  color: #999;
  font-size: 0.95rem;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--light-gray);
  margin-top: 0.6rem;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin-inline: 0.4rem; }


/* ----------------------------------------------------------
   16. ABOUT PAGE
   ---------------------------------------------------------- */
.about-intro-text { max-width: 780px; margin-inline: auto; text-align: center; }
.about-intro-text h2 { margin-bottom: 1rem; }
.about-intro-text p { font-size: 1rem; }

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-columns img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-columns-text h2 { margin-bottom: 1.25rem; }
.about-columns-text p { font-size: 0.97rem; margin-bottom: 1rem; }

/* Philosophy / value pillars */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
}
.value-card .vi {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
}
.value-card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.value-card p  { font-size: 0.9rem; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
}
.team-card { text-align: center; }
.team-card img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  border: 4px solid var(--gold);
}
.team-card h3 { margin-bottom: 0.2rem; }
.team-card .team-role {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 0.75rem;
}
.team-card p { font-size: 0.9rem; }


/* ----------------------------------------------------------
   17. SERVICE DETAIL PAGES
   ---------------------------------------------------------- */
.service-detail {
  padding-block: 5rem;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-detail-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.service-body h2 { margin-bottom: 0.3rem; }
.service-body > p { font-size: 1rem; margin-bottom: 1.5rem; }

.service-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.service-list li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.service-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.7rem;
  color: var(--gold);
  font-size: 0.7rem;
}
.service-list li:last-child { border-bottom: none; }
.service-list li strong { color: var(--black); }

/* Steps list (numbered, for processes) */
.steps-list {
  counter-reset: steps;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.steps-list li {
  counter-increment: steps;
  padding: 0.7rem 0 0.7rem 3rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps-list li:last-child { border-bottom: none; }
.steps-list li strong { color: var(--black); }

/* Insurance badge */
.insurance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 1.5rem;
}

/* Highlight callout box */
.callout {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-block: 1.5rem;
}
.callout p {
  font-size: 0.95rem;
  color: var(--dark);
  margin: 0;
}


/* ----------------------------------------------------------
   18. FAQ ACCORDION — Pure CSS using <details> / <summary>
   No JavaScript needed. Google indexes this content.
   ---------------------------------------------------------- */
.faq-section { margin-top: 4rem; }
.faq-section h2 {
  margin-bottom: 0.5rem;
  text-align: center;
}
.faq-section > .gold-rule { margin-bottom: 2.5rem; }

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  background: var(--white);
  overflow: hidden;
}
details[open] {
  border-color: var(--gold);
  box-shadow: 0 2px 10px rgba(201,168,76,0.12);
}

summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
}
details[open] summary::after { content: '−'; }
details[open] summary { border-bottom: 1px solid var(--border); }

.faq-answer {
  padding: 1rem 1.25rem 1.25rem;
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.7;
}


/* ----------------------------------------------------------
   19. CONTACT PAGE
   ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-form-section h2,
.contact-info-section h2 {
  margin-bottom: 1.5rem;
}

/* Form fields */
.form-group { margin-bottom: 1.3rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--black);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--light-gray);
  margin-top: 0.75rem;
}

/* Contact info block */
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.cii-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.cii-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--black);
  margin-bottom: 0.2rem;
}
.cii-text p {
  font-size: 0.91rem;
  color: var(--gray);
  margin: 0;
}
.cii-text a { color: var(--gray); }
.cii-text a:hover { color: var(--gold-dark); }

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 0.25rem;
}
.hours-table td {
  padding: 0.35rem 0;
  color: var(--gray);
}
.hours-table td:last-child {
  text-align: right;
}
.hours-table tr.today td {
  color: var(--gold-dark);
  font-weight: 700;
}

/* Map placeholder */
.map-embed {
  margin-top: 2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-gray);
  font-size: 0.87rem;
  gap: 0.5rem;
}


/* ----------------------------------------------------------
   20. PRIVACY POLICY PAGE
   ---------------------------------------------------------- */
.policy-content {
  max-width: 820px;
  margin-inline: auto;
}
.policy-content h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.policy-content h3 {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-weight: 700;
}
.policy-content p { font-size: 0.95rem; }
.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-content ul li {
  margin-bottom: 0.4rem;
  font-size: 0.93rem;
  color: var(--gray);
}


/* ----------------------------------------------------------
   21. RESPONSIVE — Tablet & Mobile
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Mobile navigation */
  .nav-toggle { display: flex; }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--gold);
    padding: 0.5rem 1.5rem 1.5rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
  }
  /* CSS checkbox trick: show nav when checkbox is checked */
  .nav-check:checked ~ .container .nav-list { display: flex; }

  .nav-list > li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-list > li:last-child { border-bottom: none; }
  .nav-list > li > a {
    display: block;
    padding: 0.8rem 0;
    font-size: 0.88rem;
  }
  .nav-dropdown::after { display: none; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-width: unset;
    display: block;
    padding-left: 0.75rem;
    border-top: 1px solid var(--border);
  }
  .nav-dropdown-menu li a {
    padding: 0.55rem 0;
    border-bottom: 1px solid #f0ead0;
    font-size: 0.84rem;
  }
  .nav-dropdown-menu li:last-child a { border-bottom: none; }
  .nav-list > li.nav-dropdown .nav-dropdown-menu { display: block; }

  /* Stack all 2-col grids */
  .grid-2,
  .grid-3,
  .grid-4,
  .services-grid,
  .team-grid,
  .values-grid,
  .service-detail-grid,
  .contact-grid,
  .about-columns,
  .footer-grid { grid-template-columns: 1fr; }

  .service-detail-grid.reverse { direction: ltr; }

  .hero { min-height: 520px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }

  .newsletter-inner { flex-direction: column; }
  .newsletter-form { width: 100%; }
  .newsletter-form input[type="email"] { flex: 1; min-width: 0; }

  .form-row { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }

  .cta-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .btn { font-size: 0.78rem; padding: 0.75rem 1.5rem; }
  .section { padding-block: 3.5rem; }
  .page-hero { padding-block: 3rem; }
}

/* WhatsApp inline link and FAB */
.whatsapp-inline {
  margin-left: 0.6rem;
  color: #25D366;
  font-weight: 700;
  text-decoration: none;
}
.whatsapp-inline:hover { color: #128C7E; }

.whatsapp-fab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37,211,102,0.18);
  border: 2px solid rgba(0,0,0,0.04);
}
.whatsapp-fab:hover { transform: translateY(-2px); background: #128C7E; }

/* Floating circular FAB (site-wide) */
.whatsapp-fab--float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 0;
  font-size: 22px;
  justify-content: center;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
}
.whatsapp-fab--float:hover { transform: translateY(-4px); }
