@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Roboto:wght@300;400;500&display=swap');

/* ========================================================================
   SEDENTIST 2026 BEAUTIFICATION LAYER (v2 — brand-preserving)
   Keeps the existing brand colors (navy + white) and fonts (Montserrat +
   Roboto) intact. Only adds: real type scale, h1 promotion, contrast fix
   on services, 3-tier radius system, spacing scale, motion vars, and
   sharper hierarchy on Dr. Lewis section + testimonials + cards.
   Hero (.hero-slider / .hero-video-bg / .hero-overlay / .hero-slide) is
   intentionally left ALONE.
   ======================================================================== */

:root {
  /* ---- mirror existing brand tokens to short names ---- */
  --c-ink:        var(--navy, #112153);
  --c-ink-2:      var(--navy-dark, #263358);
  --c-body:       #2C3142;          /* darker than text-dark for AA contrast */
  --c-muted:      #555B6B;          /* darker than text-gray for AA contrast */
  --c-surface:    #FFFFFF;
  --c-surface-2:  #F8F8F8;
  --c-hairline:   #E0E0E0;
  --c-accent:     var(--green, #567445);

  /* ---- new spacing scale (4px base) ---- */
  --s-1:   4px;
  --s-2:   8px;
  --s-4:  16px;
  --s-6:  24px;
  --s-10: 40px;
  --s-16: 64px;
  --s-24: 96px;
  --s-32: 128px;

  /* ---- three-tier radius system (replaces the 7-value zoo) ---- */
  --r-sm:   8px;
  --r-md:  16px;
  --r-pill: 999px;

  /* ---- shadows: sparing, healthcare-trust ---- */
  --sh-xs:    0 1px 2px rgba(17,33,83,.06);
  --sh-sm:    0 4px 16px -4px rgba(17,33,83,.10);
  --sh-focus: 0 0 0 3px rgba(17,33,83,.30);

  /* ---- motion ---- */
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 450ms;
}

/* ==================== TYPOGRAPHY ==================== */

body {
  color: var(--c-body) !important;
  font-weight: 400 !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--c-ink) !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  line-height: 1.15 !important;
}
h1 { font-size: clamp(36px, 6vw, 64px) !important; line-height: 1.05 !important; }
h2 { font-size: clamp(28px, 4vw, 44px) !important; }
h3 { font-size: clamp(20px, 2.4vw, 28px) !important; line-height: 1.2 !important; }
h4 { font-size: clamp(18px, 2vw, 22px) !important; line-height: 1.3 !important; }

p { color: var(--c-body); }

a { transition: color var(--dur-fast) var(--ease-out); }

/* ==================== NAV — sharper hover, no other visual change ==================== */

.nav-bar a {
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-bar a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-bar a:hover::after { transform: scaleX(1); }

/* ==================== BUTTONS — pill radius, motion, focus ring ==================== */

.btn {
  border-radius: var(--r-pill) !important;
  transition: background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-in-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--sh-sm); }
.btn:active { transform: scale(.98); }
.btn:focus-visible { outline: none; box-shadow: var(--sh-focus); }

/* ==================== DR. LEWIS SECTION ==================== */

.section-dr-lewis {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
.section-dr-lewis::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,33,83,.65), rgba(17,33,83,.85));
  z-index: 0;
}
.section-dr-lewis .container-narrow { position: relative; z-index: 1; }
.section-dr-lewis h2, .section-dr-lewis h3 {
  color: var(--c-surface) !important;
}
.section-dr-lewis p {
  color: rgba(255,255,255,.88) !important;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: var(--s-4);
}
.section-dr-lewis ul { list-style: none; padding-left: 0; margin: var(--s-6) 0; }
.section-dr-lewis li {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  padding: var(--s-2) 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.section-dr-lewis li:last-child { border-bottom: none; }

.dr-lewis-photo .main-photo {
  border-radius: var(--r-md) !important;
  width: 100%;
  height: auto;
  box-shadow: var(--sh-sm) !important;
}
.dr-lewis-gallery {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: var(--s-2) !important;
  margin-top: var(--s-4) !important;
}
@media (min-width: 768px) {
  .dr-lewis-gallery { grid-template-columns: repeat(4, 1fr) !important; }
}
.dr-lewis-gallery img {
  border-radius: var(--r-sm) !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: default !important;
}

/* ==================== SERVICES GRID — fix contrast, modernize cards ==================== */

.service-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: var(--s-6) !important;
}
.service-card {
  background-color: var(--c-surface) !important;
  border: 1px solid var(--c-hairline) !important;
  border-radius: var(--r-md) !important;
  box-shadow: none !important;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-ink);
  box-shadow: var(--sh-sm);
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0 !important;
}
.service-card h3 {
  /* Was --text-gray #7C7C7C on white = 4.0:1 → fails AA. Use navy ink. */
  color: var(--c-ink) !important;
  padding: var(--s-6) var(--s-6) var(--s-2);
  margin: 0 !important;
}
.service-card p {
  color: var(--c-body) !important;
  padding: 0 var(--s-6);
  font-size: 15px;
  margin-bottom: var(--s-4);
}
.service-card .btn {
  margin: 0 var(--s-6) var(--s-6) !important;
  align-self: flex-start;
}

/* ==================== TESTIMONIALS ==================== */

.testimonials-carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.testimonial-card,
.testimonial-slide {
  background-color: var(--c-surface) !important;
  border: 1px solid var(--c-hairline) !important;
  border-radius: var(--r-md) !important;
  box-shadow: none !important;
  padding: var(--s-16) var(--s-10) var(--s-10) !important;
  margin-top: 0 !important;
  position: relative;
  text-align: center;
}
.testimonial-card::before,
.testimonial-slide::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Georgia', serif;
  font-size: 88px;
  color: var(--c-ink);
  opacity: .15;
  line-height: 1;
}
.testimonial-card p, .testimonial-card blockquote,
.testimonial-slide p, .testimonial-slide blockquote,
.testimonial-card .testimonial-text {
  font-size: clamp(17px, 1.8vw, 21px) !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1.6 !important;
  color: var(--c-body) !important;
  margin: 0 auto var(--s-6) !important;
  max-width: 56ch;
}
.testimonial-card cite, .testimonial-card .author, .testimonial-card .name,
.testimonial-slide cite, .testimonial-card .testimonial-author {
  display: block;
  font-size: 13px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  color: var(--c-ink) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.testimonial-card img,
.testimonial-slide img,
.testimonial-card .testimonial-avatar {
  border: none !important;
  border-radius: var(--r-pill) !important;
  width: 64px !important;
  height: 64px !important;
  object-fit: cover;
  margin: 0 auto var(--s-4);
  display: block;
}
.section-testimonials-home .carousel-arrow {
  background-color: var(--c-surface);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-pill);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink);
  transition: background-color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.section-testimonials-home .carousel-arrow:hover {
  background-color: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-surface);
}

/* ==================== DESKTOP HEADER — hierarchy + tappable contact ==================== */

@media (min-width: 769px) {
  /* Hide the legacy hamburger toggle in header-left (mobile has its own button) */
  .header-top .hamburger-toggle { display: none !important; }

  .header-top {
    padding: var(--s-4) 0 !important;
    gap: var(--s-6);
  }
  .header-left {
    gap: var(--s-4) !important;
  }

  /* Address + phone block: cleaner type, address muted, phone prominent */
  .header-contact-info {
    gap: 2px !important;
  }
  .header-contact-info a {
    font-family: var(--font-heading, 'Montserrat', sans-serif) !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    color: var(--c-body) !important;
    line-height: 1.4 !important;
    letter-spacing: 0 !important;
    transition: color var(--dur-fast) var(--ease-out);
  }
  .header-contact-info a:first-child {
    max-width: 28ch;
  }
  .header-contact-info a:last-child {
    font-weight: 600 !important;
    font-size: 15px !important;
    color: var(--c-ink) !important;
  }
  .header-contact-info a:hover { color: var(--c-accent) !important; }

  /* Logo centered with breathing room */
  .header-logo img {
    max-width: 220px !important;
    height: auto;
  }

  /* Button hierarchy: Patient Portal = outline (secondary), Schedule = solid (primary) */
  .header-buttons {
    gap: var(--s-2) !important;
  }
  .header-buttons .btn {
    padding: 10px 18px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  .header-buttons .btn:first-child {
    background-color: transparent !important;
    color: var(--c-ink) !important;
    border: 1.5px solid var(--c-ink) !important;
  }
  .header-buttons .btn:first-child:hover {
    background-color: var(--c-ink) !important;
    color: var(--c-surface) !important;
  }
  .header-buttons .btn:last-child {
    background-color: var(--c-ink) !important;
    color: var(--c-surface) !important;
    border: 1.5px solid var(--c-ink) !important;
  }
  .header-buttons .btn:last-child:hover {
    background-color: var(--c-ink-2, #263358) !important;
    border-color: var(--c-ink-2, #263358) !important;
  }
}

/* ==================== MOBILE HEADER — surface key info on top ==================== */

@media (max-width: 768px) {
  /* Override original .mobile-header (single row logo+hamburger) into a stacked layout */
  .mobile-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100%;
    padding: var(--s-2) 0 var(--s-4) !important;
    gap: var(--s-2);
  }

  .mobile-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
  }
  .mobile-header-top .mobile-logo img {
    max-height: 48px !important;
    width: auto !important;
    display: block;
  }
  .mobile-header-top .mobile-menu-btn {
    background: transparent;
    border: 1px solid var(--c-hairline);
    border-radius: var(--r-sm);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-ink);
    padding: 0;
  }

  .mobile-header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: var(--s-2) 0;
    border-top: 1px solid var(--c-hairline);
    border-bottom: 1px solid var(--c-hairline);
    text-align: left;
  }
  .mobile-name {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    color: var(--c-ink);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
  }
  .mobile-address,
  .mobile-phone {
    color: var(--c-body);
    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;
  }
  .mobile-phone {
    font-weight: 600;
    color: var(--c-ink);
    font-size: 15px;
    margin-top: 2px;
  }
  .mobile-address:hover,
  .mobile-phone:hover { color: var(--c-accent); }

  .mobile-header-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-2);
  }
  .mobile-header-ctas .btn {
    padding: 10px 12px !important;
    font-size: 13px !important;
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }
}

/* ==================== FOOTER CTA — overlay, hierarchy, rhythm ==================== */

.footer-cta {
  position: relative !important;
  background-size: cover !important;
  background-position: center !important;
  padding: clamp(80px, 11vw, 160px) 0 !important;
  text-align: center;
  overflow: hidden;
}
/* Strong navy gradient overlay so text and buttons aren't fighting the photo */
.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17,33,83,.80) 0%, rgba(17,33,83,.92) 100%);
  z-index: 0;
}
.footer-cta > .container,
.footer-cta > * {
  position: relative;
  z-index: 1;
}
.footer-cta .container {
  max-width: 720px !important;
  margin: 0 auto;
  padding: 0 var(--s-6);
}

.footer-cta h2 {
  color: var(--c-surface) !important;
  font-size: clamp(32px, 4.5vw, 52px) !important;
  font-weight: 600 !important;
  line-height: 1.15 !important; /* overrides original line-height: 55px */
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin: 0 auto var(--s-10) !important;
}

.footer-cta-buttons {
  display: flex !important;
  gap: var(--s-4) !important;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-cta-buttons .btn {
  min-width: 200px;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
}

/* First button stays solid white (primary, high contrast on navy overlay) */
.footer-cta-buttons .btn:first-child {
  background-color: var(--c-surface) !important;
  color: var(--c-ink) !important;
  border: 1.5px solid var(--c-surface) !important;
}
.footer-cta-buttons .btn:first-child:hover {
  background-color: transparent !important;
  color: var(--c-surface) !important;
}

/* Second button becomes the ghost outline so there's a clear primary */
.footer-cta-buttons .btn + .btn {
  background-color: transparent !important;
  color: var(--c-surface) !important;
  border: 1.5px solid rgba(255,255,255,.55) !important;
}
.footer-cta-buttons .btn + .btn:hover {
  background-color: var(--c-surface) !important;
  color: var(--c-ink) !important;
  border-color: var(--c-surface) !important;
}

/* ==================== FOOTER MAP + CONTACT CARD ==================== */

.footer-map iframe { border: 0; display: block; }
.footer-contact-card {
  background-color: var(--c-surface) !important;
  border: 1px solid var(--c-hairline) !important;
  border-radius: var(--r-md) !important;
  box-shadow: var(--sh-sm) !important;
}
.contact-divider {
  background-color: var(--c-hairline) !important;
  height: 1px !important;
}

/* ==================== BLOG CARDS ==================== */

.blog-card {
  background-color: var(--c-surface) !important;
  border: 1px solid var(--c-hairline) !important;
  border-radius: var(--r-md) !important;
  box-shadow: none !important;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-ink);
  box-shadow: var(--sh-sm);
}
.blog-card img { border-radius: 0 !important; height: 220px; object-fit: cover; }
.blog-card-meta {
  color: var(--c-muted) !important;
  font-size: 13px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ==================== POST CONTENT ==================== */

.post-content { font-size: 19px; line-height: 1.7; color: var(--c-body); }
.post-content h2 { margin: var(--s-10) 0 var(--s-4); }
.post-content h3 { margin: var(--s-6) 0 var(--s-2); }
.post-content p { margin-bottom: var(--s-4); color: var(--c-body); }
.post-content a {
  color: var(--c-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.post-content a:hover { color: var(--c-accent); }
.post-content img { border-radius: var(--r-md) !important; margin: var(--s-6) 0; }

/* ==================== KILL THE 25px RADIUS INLINE STYLE ZOO ==================== */

img[style*="border-radius:25px"],
img[style*="border-radius: 25px"],
[style*="border-radius:25px"]:not(img),
[style*="border-radius: 25px"]:not(img) {
  border-radius: var(--r-md) !important;
}

/* Drop fake-clickable cursor on the Dr Lewis thumbs (no click handler exists) */
.dr-lewis-gallery img,
.dr-lewis-gallery > * { cursor: default !important; }

/* ==================== ACCESSIBILITY ==================== */

:focus-visible { outline: none; box-shadow: var(--sh-focus); border-radius: var(--r-sm); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================================================
   END BEAUTIFICATION LAYER — original stylesheet follows
   ======================================================================== */

:root {
  --navy: #112153;
  --navy-light: #283460;
  --navy-dark: #263358;
  --green: #567445;
  --white: #FFFFFF;
  --text-dark: #4F4F4F;
  --text-gray: #7C7C7C;
  --text-light: #A1A1A1;
  --text-muted: #636363;
  --border-light: #E0E0E0;
  --bg-light: #F8F8F8;
  --copyright-gray: #D4D4D4;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --max-width: 1240px;
  --content-width: 1140px;
  --services-width: 1320px;
  --radius: 4px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 30px;
  --radius-img: 25px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(28px, 5vw, 63px); }
h2 { font-size: clamp(26px, 4vw, 46px); }
h3 { font-size: clamp(20px, 3vw, 30px); }
h4 { font-size: clamp(18px, 2.5vw, 28px); }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: var(--services-width);
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==================== BUTTONS ==================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

.btn-lg {
  font-size: 18px;
  padding: 12px 31px;
  border-radius: var(--radius-pill);
}

.btn-md {
  font-size: 15px;
  padding: 12px 25px;
  border-radius: 23px;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
}

.btn-navy {
  background-color: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background-color: var(--white);
  color: var(--navy);
}

.btn-white-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-white-outline:hover {
  background-color: var(--white);
  color: var(--navy);
}

.btn-white-solid {
  background-color: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white-solid:hover {
  background-color: transparent;
  color: var(--white);
}

.btn-navy-outline {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-navy-outline:hover {
  background-color: var(--navy);
  color: var(--white);
}

.btn-gray-outline {
  background-color: transparent;
  color: #BEBEBE;
  border-color: #BEBEBE;
  border-width: 1px;
}

.btn-gray-outline:hover {
  background-color: #BEBEBE;
  color: var(--white);
}

/* ==================== HEADER ==================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-top {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 769px) {
  .header-top {
    display: flex;
  }
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 27%;
}

.hamburger-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.hamburger-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--navy);
  border-radius: 2px;
}

.header-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-contact-info a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.header-logo {
  flex: 0 0 42%;
  text-align: center;
}

.header-logo img {
  max-width: 86%;
  margin: 0 auto;
}

.header-logo a {
  display: inline-block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 31%;
  justify-content: flex-end;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--white);
  font-size: 16px;
  transition: opacity 0.2s;
}

.social-icon:hover {
  opacity: 0.85;
  color: var(--white);
}

.header-buttons {
  display: flex;
  gap: 8px;
}

/* Mobile header */
@media (max-width: 768px) {
  .header-top {
    display: flex;
    padding: 12px 0;
  }
  .header-left,
  .header-logo,
  .header-right {
    display: none;
  }
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 0;
  }
  .mobile-header .mobile-logo {
    flex: 0 0 auto;
  }
  .mobile-header .mobile-logo img {
    max-height: 45px;
    width: auto;
  }
  .mobile-header .mobile-controls {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

.mobile-header {
  display: none;
}

@media (max-width: 768px) {
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 0;
  }
  .header-top {
    display: none !important;
  }
}

/* Nav bar below header */
.nav-bar {
  display: none;
  background-color: var(--navy);
}

@media (min-width: 769px) {
  .nav-bar {
    display: block;
  }
}

.nav-bar nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.nav-bar a {
  display: block;
  padding: 12px 18px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: background-color 0.2s;
}

.nav-bar a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 9999;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--navy);
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-nav a {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.2s;
}

.mobile-menu-nav a:hover {
  background-color: var(--navy);
  color: var(--white);
}

.mobile-menu-footer {
  padding: 20px;
  text-align: center;
}

.mobile-menu-footer .mobile-menu-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.mobile-menu-footer .mobile-menu-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.mobile-menu-footer .mobile-menu-contact a {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

/* ==================== HERO SLIDER ==================== */

.hero-slider {
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

.hero-slides {
  position: relative;
  min-height: 300px;
  z-index: 2;
}

@media (min-width: 769px) {
  .hero-slides {
    min-height: 896px;
  }
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding: 8% 0 0 18%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.hero-slide-content {
  max-width: 60%;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-slide {
    padding: 15% 5%;
  }
  .hero-slide-content {
    max-width: 90%;
  }
}

.hero-slide h2 {
  font-family: 'Lato', var(--font-heading);
  font-size: clamp(24px, 4vw, 47px);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.2em;
  margin-bottom: 15px;
}

.hero-slide p {
  font-family: 'Lato', var(--font-body);
  font-size: clamp(16px, 2.5vw, 27px);
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-slide .btn {
  margin-top: 10px;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  font-size: 40px;
  color: var(--navy);
  cursor: pointer;
  padding: 15px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.hero-slider-arrow:hover {
  opacity: 1;
}

.hero-slider-arrow.prev {
  left: 20px;
}

.hero-slider-arrow.next {
  right: 20px;
}

/* ==================== PAGE SECTIONS ==================== */

.section-about {
  padding: 77px 0 0;
}

@media (max-width: 768px) {
  .section-about {
    padding: 50px 0 0;
  }
}

.section-why-choose {
  padding: 107px 0 133px;
}

@media (max-width: 768px) {
  .section-why-choose {
    padding: 50px 0;
  }
}

.section-dr-lewis {
  position: relative;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 140px 0 100px;
}

@media (max-width: 768px) {
  .section-dr-lewis {
    padding: 20px 0 40px;
  }
}

.section-services-home {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 67px 0 180px;
}

@media (max-width: 768px) {
  .section-services-home {
    padding: 50px 0 80px;
  }
}

.section-testimonials-home {
  margin-top: -134px;
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .section-testimonials-home {
    margin-top: 0;
  }
}

/* ==================== TWO-COLUMN LAYOUTS ==================== */

.two-col {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.two-col > .col {
  flex: 0 0 50%;
  max-width: 50%;
}

.two-col.reverse-mobile {
  flex-direction: row;
}

@media (max-width: 768px) {
  .two-col {
    flex-direction: column;
  }
  .two-col.reverse-mobile {
    flex-direction: column-reverse;
  }
  .two-col > .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.two-col-services {
  display: flex;
  gap: 0;
  align-items: center;
}

.two-col-services > .col-text {
  flex: 0 0 54%;
  max-width: 54%;
}

.two-col-services > .col-img {
  flex: 0 0 46%;
  max-width: 46%;
}

@media (max-width: 768px) {
  .two-col-services {
    flex-direction: column;
  }
  .two-col-services.reverse-mobile {
    flex-direction: column-reverse;
  }
  .two-col-services > .col-text,
  .two-col-services > .col-img {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ==================== SECTION-SPECIFIC STYLES ==================== */

.video-col iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--radius-img);
}

.text-col {
  padding: 20px 0 20px 35px;
}

@media (max-width: 768px) {
  .text-col {
    padding: 15px;
  }
}

.text-col h2 {
  color: var(--navy-light);
  font-weight: 400;
  font-size: clamp(31px, 4vw, 46px);
  margin-bottom: 20px;
}

.text-col p {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 15px;
}

.img-col {
  padding: 0 15px;
}

.img-col img {
  width: 100%;
  border-radius: var(--radius-img);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Dr. Lewis section */
.dr-lewis-text h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}

.dr-lewis-text p {
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 10px;
}

.dr-lewis-text ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.dr-lewis-text ul li {
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  padding: 3px 0;
}

.dr-lewis-photo {
  text-align: right;
}

.dr-lewis-photo img.main-photo {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-img);
  margin-bottom: 15px;
}

.dr-lewis-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.dr-lewis-gallery img {
  width: 100%;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s;
}

.dr-lewis-gallery img:hover {
  transform: scale(1.05);
}

/* Service cards on homepage */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 1024px) {
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 400;
  color: var(--text-gray);
  padding: 20px 20px 10px;
}

.service-card .btn {
  margin: 0 20px 20px;
}

/* Testimonials carousel */
.testimonials-carousel {
  position: relative;
  max-width: 739px;
  margin: 0 auto;
  overflow: hidden;
}

@media (max-width: 768px) {
  .testimonials-carousel {
    max-width: 350px;
  }
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 20px;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-slide img {
  width: 69px;
  height: 69px;
  border-radius: 50%;
  border: 8px solid var(--navy-light);
  margin: 0 auto 20px;
  object-fit: cover;
}

.testimonial-slide blockquote {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-slide cite {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  color: var(--navy-light);
  font-style: normal;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 25px;
  color: var(--navy-light);
  cursor: pointer;
  z-index: 5;
  padding: 10px;
}

.carousel-arrow.prev {
  left: -10px;
}

.carousel-arrow.next {
  right: -10px;
}

/* ==================== FOOTER ==================== */

.footer-cta {
  position: relative;
  background-size: cover;
  background-position: center center;
  padding: 146px 0 65px;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-cta {
    padding: 50px 25px;
  }
}

.footer-cta h2 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 55px;
  margin-bottom: 30px;
}

.footer-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-map {
  position: relative;
}

.footer-map iframe {
  width: 100%;
  height: 680px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .footer-map iframe {
    height: 337px;
  }
}

.footer-contact-card {
  position: absolute;
  top: 80px;
  right: 5%;
  width: 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
  overflow: hidden;
}

@media (max-width: 768px) {
  .footer-contact-card {
    position: static;
    width: 100%;
    max-width: 400px;
    margin: -200px auto 40px;
  }
}

.contact-card-header {
  background-color: var(--navy-light);
  padding: 20px;
  text-align: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.contact-card-header h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card-body {
  padding: 15px 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 5px;
}

.contact-item img {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.contact-item a,
.contact-item span {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 400;
  color: var(--text-muted);
}

.contact-item a:hover {
  color: var(--navy);
}

.contact-divider {
  width: 350px;
  max-width: 100%;
  height: 1px;
  background-color: var(--border-light);
  margin: 10px auto;
}

.contact-hours h4 {
  color: var(--navy-light);
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 15px 0 8px 20px;
}

.contact-hours p {
  color: var(--navy-light);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
  margin-left: 20px;
  padding-bottom: 15px;
}

.footer-bottom {
  background-color: var(--navy-dark);
  padding: 0 0 20px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px;
  }
}

.footer-logo img {
  max-height: 50px;
  margin: 10px 0;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.footer-nav a {
  padding: 10px 11px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 300;
}

.footer-nav a:hover {
  color: var(--white);
  opacity: 0.8;
}

.footer-copyright {
  color: var(--copyright-gray);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 1px;
}

/* ==================== SERVICES PAGE ==================== */

.services-hero {
  position: relative;
  background-size: cover;
  background-position: center center;
  padding: 40px 20px;
  text-align: center;
}

.services-hero h1 {
  color: var(--text-gray);
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 63px);
  font-weight: 500;
}

.services-hero p {
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 22px;
  max-width: 800px;
  margin: 15px auto 30px;
}

.services-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-section {
  padding: 100px 0;
}

.service-section:first-of-type {
  padding-top: 152px;
}

@media (max-width: 768px) {
  .service-section {
    padding: 50px 0;
  }
  .service-section:first-of-type {
    padding-top: 50px;
  }
}

.service-section h2 {
  color: var(--text-gray);
  font-family: var(--font-heading);
  font-size: clamp(31px, 4vw, 52px);
  font-weight: 400;
  line-height: 58px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .service-section h2 {
    text-align: center;
  }
}

.service-section p {
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}

/* ==================== SERVICE SUBPAGES ==================== */

.service-subpage {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .service-subpage {
    padding: 30px 0;
  }
}

.service-subpage h1 {
  color: var(--text-gray);
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  margin-bottom: 20px;
}

.service-subpage .post-content {
  color: #353535;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
}

/* ==================== PAGE HEADER (hero banner) ==================== */

.page-hero-banner {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 300px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
}

/* ==================== BLOG ==================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}

.blog-card:hover {
  border-color: var(--navy-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.blog-card h3 a {
  color: var(--text-dark);
}

.blog-card h3 a:hover {
  color: var(--navy);
}

.blog-card p {
  color: var(--text-gray);
  font-size: 0.9375rem;
}

.blog-card-meta {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.blog-card-meta span {
  margin-right: 1rem;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
}

.post-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--navy-light);
}

.post-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--navy-light);
}

.post-meta {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

/* ==================== TESTIMONIALS PAGE ==================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1548px;
  margin: 0 auto;
  padding: 100px 20px 0;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 0 10px rgba(9, 9, 9, 0.07);
  padding: 50px 20px 0;
  overflow: hidden;
}

.testimonial-card .testimonial-text {
  color: var(--text-gray);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 35px;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .testimonial-card .testimonial-text {
    padding: 0 20px;
  }
}

.testimonial-card .testimonial-author {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 29px;
  font-weight: 500;
  text-align: center;
  padding: 34px 60px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .testimonial-card .testimonial-author {
    padding: 20px;
    font-size: 22px;
  }
}

.video-testimonials {
  text-align: center;
  padding: 0 20px 170px;
}

.video-testimonials h2 {
  color: var(--text-gray);
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 500;
  margin: 121px 0 67px;
}

.video-testimonials-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.video-testimonial-thumb {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s;
  position: relative;
}

.video-testimonial-thumb:hover {
  transform: scale(1.03);
}

.video-testimonial-thumb img {
  display: block;
  width: 100%;
  max-width: 400px;
}

.video-testimonial-thumb::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Video lightbox */
.video-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.video-lightbox.active {
  display: flex;
}

.video-lightbox iframe {
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border: none;
}

.video-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
}

/* ==================== GALLERY ==================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ==================== CONTACT FORM ==================== */

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-family: var(--font-heading);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(17, 33, 83, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ==================== BREADCRUMBS ==================== */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--text-gray);
}

.breadcrumb a:hover {
  color: var(--navy);
}

/* ==================== TAG LISTS ==================== */

.tag-list,
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list li,
.category-list li {
  margin: 0;
}

.tag-list a,
.category-list a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-light);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.tag-list a:hover,
.category-list a:hover {
  background-color: var(--navy);
  color: var(--white);
}

/* ==================== SERVICE LIST ==================== */

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.services-list li {
  margin: 0;
}

.services-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.services-list a:hover {
  border-color: var(--navy);
  background-color: var(--bg-light);
}

.services-list a::before {
  content: "\2192";
  color: var(--navy);
  font-weight: 600;
}
