/*
Theme Name: Sleep Medicine Specialists
Theme URI: https://www.southfloridasleeps.com
Author: Your Name
Author URI: https://yoursite.com
Description: A professional WordPress theme for Sleep Medicine Specialists of South Florida
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sleep-medicine
Domain Path: /languages

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned 
with the community.
*/

/* 
Import your custom styles from the styles folder
Note: Your custom styles should be in /styles/styles.css
*/




/* ══════════════════════════════════════════════════════════════════
   Sleep Medicine Specialists of South Florida
   Compiled Stylesheet — All Pages
   Colors: Sand #EEECE4 | Navy #263850 | Slate #526A81
           Amber #EEB258 | Yellow #FDDE64
   Fonts:  Montserrat (headings) | Inter (body)
══════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────
   1. DESIGN TOKENS
──────────────────────────────────────────── */
:root {
  --sand:   #EEECE4;
  --navy:   #263850;
  --slate:  #526A81;
  --amber:  #EEB258;
  --yellow: #FDDE64;
}

/* ────────────────────────────────────────────
   2. BASE RESET
──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--sand);
  color: var(--navy);
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }





/* ────────────────────────────────────────────
   3. HEADER
──────────────────────────────────────────── */
.site-header {
  background-color: var(--sand);
  border-bottom: 2px solid var(--slate);
  position: sticky;
  top: 0;
  z-index: 1040;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 992px) {
  .header-inner { padding: 0 5rem; height: 80px; }
}

@media (max-width: 676px) {
  .logo-lockup { height:auto !important; }
}

.logo-lockup {
  display: flex;
  line-height: 1.2;
  text-decoration: none;
  height: 65px;
  width: auto;
}

.logo-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 0.02em;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger-btn {
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: color 0.2s;
  border-radius: 6px;
}

.hamburger-btn:hover { color: var(--amber); }

.btn-cta {
  background-color: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.btn-cta:hover {
  background-color: var(--navy);
  color: #fff;
  transform: scale(1.04);
}

.lang-toggle {
  border: 2px solid var(--slate);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
}

.lang-btn {
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
}

.lang-btn.active {
  background-color: var(--navy);
  color: #fff;
}

.lang-btn:not(.active):hover {
  background-color: rgba(238,178,88,0.15);
}

/* ────────────────────────────────────────────
   4. TOP-DROP NAVIGATION
──────────────────────────────────────────── */
.top-nav-wrap {
  position: sticky;
  top: 72px;
  z-index: 1030;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.32s cubic-bezier(0.4,0,0.2,1),
              opacity    0.28s ease;
  background-color: var(--sand);
  border-bottom: 1px solid var(--slate);
}

@media (min-width: 992px) {
  .top-nav-wrap { top: 80px; }
}

.top-nav-wrap.open {
  max-height: 500px;
  opacity: 1;
}

.nav-links {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
}

@media (min-width: 992px) {
  .nav-links { padding: 1.5rem 5rem; }
}

.nav-link-item {
  display: block;
  padding: 15px 0;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-link-item:last-of-type { border-bottom: none; }
.nav-link-item:hover        { color: var(--amber); }
.nav-link-item.active       { color: var(--amber); font-weight: 600; }



/* ========================================
   Temporary Dropdown
======================================== */

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;

    background: #fff;

    padding: 10px 0;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.25s ease;

    z-index: 999;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    white-space: nowrap;
    color: #222;
}

.nav-dropdown-item:hover {
    background: #f5f5f5;
}


/* ────────────────────────────────────────────
   5. HERO — shared base
──────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  top: -1px;
}

.hero-section.hero-sm { min-height: 380px; }

@media (min-width: 992px) {
  .hero-section        { min-height: 640px; }
  .hero-section.hero-sm { min-height: 650px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.50) 0%,
    rgba(0,0,0,0.40) 50%,
    rgba(0,0,0,0.62) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 80px 20px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  margin-bottom: 1.1rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
}

.hero-desc {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.spec-tag {
  background: rgba(238,178,88,0.14);
  border: 1.5px solid rgba(238,178,88,0.6);
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ────────────────────────────────────────────
   6. SHARED BUTTONS
──────────────────────────────────────────── */
.btn-hero-primary {
  background-color: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  padding: 13px 28px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.btn-hero-primary:hover { background-color: var(--yellow); color: var(--navy); transform: scale(1.02); }

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 13px 28px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, color 0.3s;
  display: inline-block;
}

.btn-hero-outline:hover { background: #fff; color: var(--navy); border: 2px solid var(--amber); transform:scale(1.02); }

.btn-navy {
  background-color: var(--navy);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 36px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.btn-navy:hover { background-color: var(--slate); color: #fff; transform:scale(1.02); }

.btn-navy-contact {
  background-color: var(--navy);
  color: #ffffff !important;
  border: none;
  border-radius: 12px;
  padding: 14px 36px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out !important;
  display: inline-block;
}

.btn-navy-contact:hover { background-color: var(--slate); color: #fff; transform: scale(1.02); }

.btn-amber {
  background-color: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  padding: 14px 36px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.btn-amber.hover-slate:hover {background-color: var(--slate) !important; transform: scale(1.02);}

.btn-amber:hover { background-color: var(--navy); color: #ffffff; transform:scale(1.02); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 13px 28px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline-navy:hover { background-color: var(--navy); color: #fff; }

/* ────────────────────────────────────────────
   7. LAYOUT UTILITIES
──────────────────────────────────────────── */
.content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 992px) { .content-wrapper { padding: 0 5rem; } }

.section-pad        { padding: 5rem 0; }
.section-pad-top    { padding-top: 5rem; }
.section-pad-bottom { padding-bottom: 5rem; }

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.65rem;
  display: block;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 3rem;
}

.section-sub.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.text-center { text-align: center; }

.section-divider {
  height: 1px;
  background: rgba(82,106,129,0.28);
  margin: 3rem auto 0;
  max-width: 820px;
}

/* ────────────────────────────────────────────
   8. HOME: STATS STRIP
──────────────────────────────────────────── */
.stats-strip {
  background-color: var(--navy);
  padding: 3.5rem 0;
}

.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (max-width: 767px) { .stats-strip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .stats-strip-grid { grid-template-columns: 1fr; } }

.strip-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--amber);
  display: block;
  margin-bottom: 4px;
}

.strip-stat-label { font-size: 13px; color: rgba(255,255,255,0.65); }

/* ────────────────────────────────────────────
   9. HOME: SERVICES OVERVIEW
──────────────────────────────────────────── */
.services-overview { padding: 5rem 0; }

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) { .overview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .overview-grid { grid-template-columns: 1fr; } }

.overview-card {
  border: 2px solid var(--slate);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  background: var(--sand);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.overview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  opacity: 0;
  transition: opacity 0.25s;
}

.overview-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(38,56,80,0.1);
}

.overview-card:hover::before { opacity: 1; }

.overview-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.overview-icon i { font-size: 22px; color: var(--amber); }

.overview-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.overview-card p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.overview-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.overview-link:hover { color: var(--navy); }

/* ────────────────────────────────────────────
   10. HOME: ABOUT TEASER
──────────────────────────────────────────── */
.about-teaser {
  padding: 5rem 0;
  background: #fff;
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 991px) {
  .about-teaser-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.about-photo-wrap { position: relative; }

.about-photo-frame {
  border: 3px solid var(--slate);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-photo-badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 12px;
  padding: 13px 17px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.6;
  border: 2px solid var(--amber);
}

.about-teaser-content h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1rem; }

.about-teaser-content p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.72;
  margin-bottom: 1.5rem;
}

.credential-list { list-style: none; padding: 0; margin: 0 0 2rem; }

.credential-list li {
  font-size: 14px;
  color: var(--navy);
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid rgba(82,106,129,0.12);
  font-weight: 500;
}

.credential-list li:last-child { border-bottom: none; }

.credential-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 13px;
}

/* ────────────────────────────────────────────
   11. HOME: CONDITIONS TEASER (category cards)
──────────────────────────────────────────── */
.conditions-teaser { padding: 5rem 0; }

.cat-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 991px) { .cat-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .cat-cards-grid { grid-template-columns: 1fr; } }

.cat-card {
  border: 2px solid var(--slate);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  background: var(--sand);
  text-align: center;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.cat-card:hover {
  border-color: var(--amber);
  background: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(38,56,80,0.12);
}

.cat-card:hover .cat-icon        { background: var(--amber); }
.cat-card:hover .cat-icon i      { color: var(--navy); }
.cat-card:hover .cat-card-title  { color: #fff; }
.cat-card:hover .cat-card-count  { color: rgba(255,255,255,0.7); }

.cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background 0.25s;
}

.cat-icon i { font-size: 24px; color: var(--amber); transition: color 0.25s; }

.cat-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 6px;
  transition: color 0.25s;
}

.cat-card-count { font-size: 12px; color: var(--slate); transition: color 0.25s; }

/* ────────────────────────────────────────────
   12. HOME: PATIENT JOURNEY
──────────────────────────────────────────── */
.journey-section { padding: 5rem 0; background: #fff; }

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 767px) { .journey-steps { grid-template-columns: 1fr; } }

.journey-step {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 2px solid var(--slate);
  border-radius: 16px;
  background: var(--sand);
  transition: border-color 0.25s;
}

.journey-step:hover { border-color: var(--amber); }

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--amber);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.journey-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 0.75rem; }
.journey-step p  { font-size: 13px; color: var(--slate); line-height: 1.65; margin: 0; }

/* ────────────────────────────────────────────
   13. HOME: CTA BANNER
──────────────────────────────────────────── */
.cta-banner {
  background-color: var(--navy);
  padding: 5.5rem 0;
  text-align: center;
}

.cta-banner .section-title  { color: #fff; margin-bottom: 1rem; }
.cta-banner .section-sub    { color: rgba(255,255,255,0.7); margin-left: auto; margin-right: auto; text-align: center; margin-bottom: 2.5rem; }

/* ────────────────────────────────────────────
   14. ABOUT: BIO SECTION
──────────────────────────────────────────── */
.bio-section { padding: 5rem 0; }

.bio-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 991px) {
  .bio-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.bio-photo-wrap {
  border: 3px solid var(--slate);
  border-radius: 20px;
  overflow: hidden;
}

.bio-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

.bio-photo-caption {
  background: var(--navy);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bio-photo-caption i    { color: var(--amber); font-size: 17px; flex-shrink: 0; }
.bio-photo-caption span { color: rgba(255,255,255,0.82); font-size: 12px; font-weight: 500; }

.bio-content h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 0.5rem; }

.bio-credentials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.75rem;
}

.cred-tag {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--slate);
  color: var(--slate);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bio-content p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.72;
  margin-bottom: 1.25rem;
}

.bio-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 575px) { .bio-detail-grid { grid-template-columns: 1fr; } }

.bio-detail-item {
  border: 2px solid rgba(82,106,129,0.4);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
}

.detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 5px;
  display: block;
}

.detail-value { font-size: 13px; font-weight: 600; color: var(--navy); }

/* ────────────────────────────────────────────
   15. ABOUT: PHILOSOPHY PILLARS
──────────────────────────────────────────── */
.philosophy-section {
  padding: 5rem 0;
  background: var(--navy);
}

.philosophy-section .section-title { color: #fff; }
.philosophy-section .section-sub   { color: rgba(255,255,255,0.68); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 767px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar-card {
  border: 2px solid rgba(82,106,129,0.45);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: border-color 0.25s;
}

.pillar-card:hover { border-color: var(--amber); }

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(238,178,88,0.1);
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pillar-icon i { font-size: 20px; color: var(--amber); }

.pillar-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.pillar-card p  { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.65; margin: 0; }

/* ────────────────────────────────────────────
   16. ABOUT: CARE PROCESS STEPS
──────────────────────────────────────────── */
.process-section { padding: 5rem 0; }

.process-steps { max-width: 820px; margin: 0 auto; }

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.process-step:last-child { margin-bottom: 0; }

.process-step-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--amber);
}

.process-step-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 0.5rem; }
.process-step-content p  { font-size: 14px; color: var(--slate); line-height: 1.65; margin: 0; }

/* ────────────────────────────────────────────
   17. ABOUT: CERTIFICATIONS GRID
──────────────────────────────────────────── */
.certs-section { padding: 4rem 0; background: #fff; }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) { .certs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .certs-grid { grid-template-columns: repeat(2, 1fr); } }

.cert-card {
  border: 2px solid var(--slate);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  background: var(--sand);
  transition: border-color 0.25s, transform 0.25s;
}

.cert-card:hover { border-color: var(--amber); transform: translateY(-3px); }

.cert-card i    { font-size: 2rem; color: var(--amber); display: block; margin-bottom: 0.75rem; }
.cert-card span { font-size: 12px; font-weight: 700; color: var(--navy); font-family: 'Montserrat', sans-serif; line-height: 1.4; display: block; }

/* ────────────────────────────────────────────
   18. SERVICES PAGE
──────────────────────────────────────────── */
.services-section { padding: 5rem 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

@media (max-width: 767px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  border: 2px solid var(--slate);
  border-radius: 16px;
  padding: 2rem;
  background: var(--sand);
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--amber);
  box-shadow: 0 8px 28px rgba(38,56,80,0.1);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i { font-size: 22px; color: var(--amber); }

.service-card h3 { font-size: 17px; font-weight: 700; margin: 0; }

.service-card > p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(82,106,129,0.18);
  padding-top: 1rem;
}

.service-list li {
  font-size: 13px;
  color: var(--slate);
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.5;
}

.service-list li::before {
  content: '→';
  color: var(--amber);
  font-weight: 900;
  position: absolute;
  left: 0;
  font-size: 11px;
  top: 6px;
}

/* What to Expect */
.expect-section { padding: 5rem 0; background: #fff; }

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 767px) { .expect-grid { grid-template-columns: 1fr; } }

.expect-card {
  border: 2px solid var(--slate);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  background: var(--sand);
  text-align: center;
  transition: border-color 0.25s;
}

.expect-card:hover { border-color: var(--amber); }

.expect-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--amber);
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.expect-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 0.75rem; }
.expect-card p  { font-size: 13px; color: var(--slate); line-height: 1.65; margin: 0; }

/* Insurance Note */
.insurance-section { padding: 3rem 0 5rem; }

.insurance-note {
  background: var(--navy);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

@media (max-width: 575px) { .insurance-note { flex-direction: column; } }

.insurance-note .ins-icon { font-size: 2.2rem; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.insurance-note h3 { color: #fff; font-size: 18px; margin-bottom: 0.5rem; }
.insurance-note p  { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.65; margin: 0; }

/* ────────────────────────────────────────────
   19. CONTACT PAGE
──────────────────────────────────────────── */

/* ========================================
   CONTACT FORM 7 CUSTOM STYLES
======================================== */

.cf7-contact-form br {
    display: none !important;
}

.cf7-contact-form {
    width: 100%;
}

/* Rows + Columns */
.cf7-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.cf7-col {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

.cf7-col-12 {
    width: 100%;
}

.cf7-col-6 {
    width: 50%;
}

/* Labels */
.cf7-contact-form label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    color: #22395b;
    margin-bottom: 14px;
}

/* Inputs */
.cf7-contact-form input[type="text"],
.cf7-contact-form input[type="email"],
.cf7-contact-form input[type="tel"],
.cf7-contact-form select,
.cf7-contact-form textarea {
    width: 100%;
    border: 2px solid #516c84;
    border-radius: 10px;
    background: #ffffff;
    padding: 13px 15px;
    font-size: 15px;
    color: #22395b;
    box-sizing: border-box;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
}

/* Textarea */
.cf7-contact-form textarea {
    height: 200px;
    resize: vertical;
}

/* Placeholder */
.cf7-contact-form input::placeholder,
.cf7-contact-form textarea::placeholder {
    color: #a4adb8;
    opacity: 1;
}

/* Focus State */
.cf7-contact-form input:focus,
.cf7-contact-form textarea:focus,
.cf7-contact-form select:focus {
    border-color: #22395b;
}

/* Select Dropdown Arrow */
.cf7-contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M1 1.5L9 10.5L17 1.5' stroke='%2322395b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 24px center;
    padding-right: 60px;
}

/* Submit Button */
.cf7-contact-form input[type="submit"] {
    background: #e6ad4b;
    color: #22395b;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 56px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    width: auto;
}

.cf7-contact-form input[type="submit"]:hover {
    transform: scale(1.02);
    background-color: var(--navy);
    color: #ffffff;
}

/* Remove default CF7 spacing */
.cf7-contact-form .wpcf7-form-control-wrap {
    display: block;
}

/* Mobile */
@media (max-width: 767px) {

    .cf7-col-6 {
        width: 100%;
    }

    .cf7-contact-form label {
        font-size: 18px;
    }

    .cf7-contact-form input[type="text"],
    .cf7-contact-form input[type="email"],
    .cf7-contact-form input[type="tel"],
    .cf7-contact-form select,
    .cf7-contact-form textarea {
        font-size: 18px;
        padding: 18px 22px;
    }

    .cf7-contact-form input[type="submit"] {
        width: 100%;
        justify-content: center;
    }
}




.contact-section { padding: 5rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-form-wrap {
  padding: 0px 25px 0 0 ;
}

.contact-icon::before {
  content: '';
  background-image: url('../sleep-medicine-specialists/images/icons_services-talkbubble.png');
  width: 32px;
  height: 32px;
  background-size: 32px;
  background-repeat: no-repeat;
  border-radius: 50px;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-form-wrap h2 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.contact-form-wrap > p { font-size: 15px; color: var(--slate); margin-bottom: 2rem; }

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

@media (max-width: 575px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.1rem; }

.form-label-custom {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-input-custom {
  width: 100%;
  border: 2px solid var(--slate);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background: #ffffff;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
}

.form-input-custom:focus { border-color: var(--amber); background: #fff; }
.form-input-custom::placeholder { color: rgba(82,106,129,0.55); }

select.form-input-custom { cursor: pointer; }
textarea.form-input-custom { resize: vertical; min-height: 110px; }

.form-submit-btn {
  background-color: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 0.25rem;
}

.form-submit-btn:hover { background-color: var(--navy); color:#ffffff; }

/* Contact Info Panel */
.contact-info-panel { display: flex; flex-direction: column; gap: 1.25rem; }

.info-card {
  border: 2px solid var(--slate);
  border-radius: 16px;
  padding: 1.5rem;
  background: var(--sand);
  transition: border-color 0.25s;
}

.info-card:hover { border-color: var(--amber); }

.info-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.9rem;
}

.info-card-header i    { font-size: 18px; color: var(--amber); }
.info-card-header h3   { font-size: 13px; font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: 0.07em; }

.info-card p           { font-size: 14px; color: var(--slate); line-height: 1.65; margin: 0; }
.info-card a           { color: var(--amber); font-weight: 600; font-size: 14px; transition: color 0.2s; }
.info-card a:hover     { color: var(--navy); }

.hours-list            { list-style: none; padding: 0; margin: 0; }

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(82,106,129,0.14);
  color: var(--slate);
}

.hours-list li:last-child { border-bottom: none; }
.hours-list .day          { font-weight: 600; color: var(--navy); }

.map-placeholder {
  border: 2px solid var(--slate);
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}

.map-placeholder i { font-size: 2.25rem; color: var(--amber); }

/* ────────────────────────────────────────────
   20. CONDITIONS PAGE
──────────────────────────────────────────── */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
}

.filter-label { font-weight: 600; color: var(--navy); font-size: 14px; margin-right: 4px; }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 10px;
  border: 2px solid var(--slate);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.chip:hover { border-color: var(--amber); transform:scale(1.02); }
.chip.active { background-color: #f8df78; color: var(--navy); border:3px solid #f8df78; }

.disorders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) { .disorders-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .disorders-grid { grid-template-columns: 1fr; gap: 1rem; } }

.disorder-card {
  position: relative;
  background: var(--sand);
  border: 2px solid var(--slate);
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
  animation: fadeInUp 0.35s ease both;
}

.disorder-card:hover:not(.expanded) {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(38,56,80,0.1);
}

.disorder-card.expanded {
  grid-column: span 2;
  cursor: default;
}

@media (max-width: 575px) { .disorder-card.expanded { grid-column: span 1; } }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.category-badge {
  position: absolute;
    top: 14px;
    right: 14px;
    background: var(--amber);
    border: nonee;
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  margin-top: 1rem;
}

.card-icon i { font-size: 20px; color: var(--amber); }

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.disorder-card .card-icon i.bi::before {
  content: '' !important;
  height: 28px;
  width: 28px;
  display: inline-block;
  background-size: 28px;
  background-position: center;
  position: relative;
  top: 2px;
}

.bi-wind::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-wind.png);
}

.bi-speedometer2::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-weight.png);
}

.bi-moon-stars::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-moon.png);
}

.bi-activity::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-echowave.png);
}

.bi-person-walking::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-footsteps.png);
}

.bi-clock::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-clock.png) !important;
}

.bi-clock-contact::before {
  content: '';
  background-image: url(../sleep-medicine-specialists/images/icon_contact-clock.png) !important;
  width: 16px;
  height: 16px;
  background-size: 16px;
  background-repeat: no-repeat;
  border-radius: 50px;
  background-repeat: no-repeat;
  background-position: center;
}

.bi-house::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-bed.png);
}

.bi-exclamation-circle::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-exclamation.png);
  height: 40px !important;
  width: 40px !important;
  background-size: 40px !important;
  border-radius: 50px;
  top: 3px !important;
}

.card-description  { font-size: 15px; color: var(--slate); line-height: 1.65; margin-bottom: 1rem; }
.card-learn-more   { font-size: 15px; font-weight: 600; color: var(--amber); transition: color 0.2s; display: inline-block; }
.card-learn-more:hover { color: var(--navy); }

.card-expanded { display: none; }
.disorder-card.expanded .card-preview  { display: none; }
.disorder-card.expanded .card-expanded { display: block; }

.expanded-detail {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  white-space: pre-line;
}

.how-we-help-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

.how-we-help-list { list-style: none; padding: 0; margin: 0 0 1.25rem; }

.how-we-help-list li {
  font-size: 15px;
  color: var(--slate);
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.5;
}

.how-we-help-list li::before {
  content: '•';
  color: var(--amber);
  font-weight: 900;
  position: absolute;
  left: 4px;
}

.btn-back {
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}

.btn-back:hover { color: var(--navy); }

.approach-section { padding: 0 0 4rem; }

.approach-section p,
.when-section p {
  font-size: 1.0625rem;
  color: var(--navy);
  line-height: 1.72;
}

.when-section { padding: 4rem 0 5rem; }

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.check-circle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.check-circle i { font-size: 20px; color: #fff; }

/* ────────────────────────────────────────────
   21. FOOTER
──────────────────────────────────────────── */
.site-footer { background-color: var(--navy); color: #fff; }

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

@media (min-width: 992px) { .footer-inner { padding: 4rem 5rem; } }

.footer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(82,106,129,0.45);
  margin-bottom: 3rem;
}

@media (max-width: 575px) { .footer-stats { grid-template-columns: 1fr; } }

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--amber);
  display: block;
  margin-bottom: 4px;
}

.stat-label { font-size: 14px; color: rgba(255,255,255,0.65); }

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 991px) { .footer-links-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .footer-links-grid { grid-template-columns: 1fr; } }

.footer-col-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,1);
  font-size: 14px;
  margin-bottom: 9px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(82,106,129,0.45);
}

.footer-utility { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.utility-link {
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}

.utility-link:hover { color: #fff; text-decoration: underline; }
.utility-sep { color: rgba(255,255,255,0.28); font-size: 12px; }

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); margin: 0; }

.social-links { display: flex; gap: 10px; }

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.2s;
  text-decoration: none;
  background: transparent;
}
.social-btn.facebook::before {
    content: '';
    background-image: url('../sleep-medicine-specialists/images/icons_sm-facebook.png');
    display: inline-block;
    width: 18px;
    height: 18px;
    background-size: cover;
    position: relative;
}
.social-btn.twitter::before {
    content: '';
    background-image: url(../sleep-medicine-specialists/images/icons_sm-twitter.png);
    display: inline-block;
    width: 18px;
    height: 18px;
    background-size: cover;
    position: relative;
}
.social-btn.instagram::before {
    content: '';
    background-image: url(../sleep-medicine-specialists/images/icons_sm-instagram.png);
    display: inline-block;
    width: 18px;
    height: 18px;
    background-size: cover;
    position: relative;
}
.social-btn.linkedin::before {
    content: '';
    background-image: url(../sleep-medicine-specialists/images/icons_sm-linkedin.png);
    display: inline-block;
    width: 18px;
    height: 18px;
    background-size: cover;
    position: relative;
}

.social-btn:hover {
  border-color: var(--amber);
  color: var(--navy);
}

/* ────────────────────────────────────────────
   22. TOAST
──────────────────────────────────────────── */
.toast-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-toast {
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
  border-left: 3px solid var(--amber);
}

.custom-toast i { color: var(--amber); font-size: 16px; }

/* ────────────────────────────────────────────
   23. HOME PAGE — FIGMA-EXACT COMPONENTS
──────────────────────────────────────────── */

/* Panel (outlined box) */
.panel {
  background: var(--sand);
  border: 2px solid var(--slate);
  border-radius: 20px;
  padding: 1.5rem;
}

.panel-inverted {
  background: var(--navy);
  border: 2px solid var(--amber);
  border-radius: 20px;
  padding: 1.5rem;
  color: #fff;
}

/* Tinted section bg */
.section-tinted { background: rgba(255,255,255,0.3); }

/* Why Sleep Matters — impact strip */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 575px) { .impact-grid { grid-template-columns: repeat(2, 1fr); } }

.impact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.impact-icon i  { font-size: 24px; color: var(--amber); }
.impact-label   { font-size: 13px; color: var(--navy); font-weight: 500; }

.heart-icon::before, .brain-icon::before, .lightning-icon::before, .smile-icon::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background-size: cover;
}
.heart-icon::before {
  background-image: url('../sleep-medicine-specialists/images/icons_home-heart.png');
}
.brain-icon::before {
  background-image: url('../sleep-medicine-specialists/images/icons_home-brain.png');
}
.lightning-icon::before {
  background-image: url('../sleep-medicine-specialists/images/icons_home-lightning.png');
}
.smile-icon::before {
  background-image: url('../sleep-medicine-specialists/images/icons_home-smile.png');
}


/* Our Approach — 2-col layout */
.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 991px) { .approach-layout { grid-template-columns: 1fr; } }

.approach-img {
  border: 2px solid var(--slate);
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy);
}

.approach-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.approach-pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pillar-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
}

.approach-pillar h4 { font-size: 16px; margin-bottom: 4px; color: var(--navy); }
.approach-pillar p  { font-size: 14px; color: var(--slate); margin: 0; }

/* Conversion band (navy diagonal) */
.conversion-band {
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.conversion-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(82,106,129,0.07) 10px,
    rgba(82,106,129,0.07) 11px
  );
}

.conversion-band-inner { position: relative; z-index: 1; }

.conversion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 991px) { .conversion-grid { grid-template-columns: 1fr; } }

/* Tertiary button */
.btn-tertiary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--slate);
  border-radius: 12px;
  padding: 13px 28px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.btn-tertiary:hover { border-color: var(--amber); color: var(--navy); transform:scale(1.02); }

.btn-tertiary-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 13px 28px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  text-align: center;
}

.btn-tertiary-white:hover { background: #fff; color: var(--navy); border: 2px solid var(--amber); transform:scale(1.02); }

/* Simple disorder cards (home page — no expand) */
.disorder-card-simple {
  position: relative;
  background: var(--sand);
  border: 2px solid var(--slate);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.disorder-card-simple .dcs-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.dcs-icon.wind, .dcs-icon.pill, .dcs-icon.weight, .dcs-icon.moon, .dcs-icon.echowave, .dcs-icon.footsteps, .dcs-icon.clock, .dcs-icon.bed {
  content: '';
  display: inline-block;
  background-size: cover;
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center;
}

.dcs-icon.wind {
  background-image: url(../sleep-medicine-specialists/images/icons_services-wind.png);
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center;
}

.dcs-icon.pill {
  background-image: url(../sleep-medicine-specialists/images/icons_services-pill.png);
}

.dcs-icon.weight {
  background-image: url(../sleep-medicine-specialists/images/icons_services-weight.png);
}

.dcs-icon.moon {
  background-image: url(../sleep-medicine-specialists/images/icons_services-moon.png);
}

.dcs-icon.echowave {
  background-image: url(../sleep-medicine-specialists/images/icons_services-echowave.png);
}

.dcs-icon.footsteps {
  background-image: url(../sleep-medicine-specialists/images/icons_services-footsteps.png);
}

.dcs-icon.clock {
  background-image: url(../sleep-medicine-specialists/images/icons_services-clock.png);
}

.dcs-icon.bed {
  background-image: url(../sleep-medicine-specialists/images/icons_services-bed.png);
}

.disorder-card-simple .dcs-icon i { font-size: 28px; color: var(--amber); }

.disorder-card-simple h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.disorder-card-simple p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}

/* Provider spotlight */
.provider-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 991px) { .provider-layout { grid-template-columns: 1fr; } }

.provider-photo {
  border: 4px solid var(--slate);
  border-radius: 20px;
  overflow: hidden;
}

.provider-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (max-width: 991px) { .provider-photo img { height: 280px; } }

.provider-cert-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.provider-cert-list li { font-size: 15px; color: var(--navy); padding: 2px 0; }

.provider-bullets { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.provider-bullets li { display: flex; align-items: flex-start; gap: 8px; font-size: 15px; color: var(--navy); padding: 4px 0; }
.provider-bullets li .bul { color: var(--amber); flex-shrink: 0; font-size: 18px; line-height: 1.2; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) { .testimonials-grid { grid-template-columns: 1fr; } }
@media (min-width: 576px) and (max-width: 767px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonial-card {
  background: var(--sand);
  border: 2px solid var(--slate);
  border-radius: 20px;
  padding: 1.75rem;
  position: relative;
}

.testimonial-card::before {
    content: '';
    background-image: url(../sleep-medicine-specialists/images/icons_home-quotemarks.png);
    width: 45px;
    height: 45px;
    display: inline-block;
    position: absolute;
    right: 20px;
    background-repeat: no-repeat;
    background-size: 40px;
}

.testimonial-card .t-quote { font-size: 15px; color: var(--navy); margin-bottom: 1rem; line-height: 1.65; position: relative; z-index: 1; }
.testimonial-card .t-name  { font-size: 14px; color: var(--slate); }

.slider-dots { display: flex; justify-content: center; gap: 10px; }

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--slate);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
  display: inline-block;
}

.dot.active { background: var(--yellow); border-color: var(--yellow); }
.dot:hover  { border-color: var(--amber); }

/* Contact section (home) */
.contact-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

@media (max-width: 991px) { .contact-home-grid { grid-template-columns: 1fr; } }

.map-frame {
  border: 4px solid var(--slate);
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.contact-info-label {
  font-size: 12px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
  font-weight: 600;
  display: block;
}

.contact-info-value {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 1rem;
}

/* Floating phone button */
.floating-phone-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--amber);
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
    border: none;
    cursor: pointer;
    z-index: 999;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    padding: 10px 20px;
}

.phone-text-holder {
    line-height: 5px;
    position: relative;
    top: 5px;
}

.phone-headline {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #22395b;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.phone-text {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #22395b;
    margin-bottom: 14px;
}

.floating-phone-btn:hover { background: var(--yellow); transform: scale(1.1); }
.floating-phone-btn i { font-size: 22px; color: var(--navy); margin-right: 8px; }

/* ────────────────────────────────────────────
   24. ABOUT: OUR STORY / APPROACH SECTIONS
──────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 991px) { .story-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.story-panel {
  border: 2px solid var(--slate);
  border-radius: 20px;
  padding: 2.5rem;
  background: var(--sand);
}

.story-panel p {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.72;
  margin-bottom: 1rem;
}

.story-panel p:last-child { margin-bottom: 0; }

.referral-panel {
  background: var(--navy);
  border: 2px solid var(--amber);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 820px;
  margin: 3rem auto 0;
}

.referral-panel h3 { color: #fff; font-size: 1.65rem; margin-bottom: 0.75rem; }
.referral-panel p  { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.7; margin: 0; }

/* ────────────────────────────────────────────
   25. ABOUT: PROVIDER CARDS
──────────────────────────────────────────── */
.provider-list { display: flex; flex-direction: column; gap: 1.25rem; }

.provider-card {
  border: 2px solid var(--slate);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.provider-card:hover { border-color: var(--amber); }

.provider-card-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
}

@media (max-width: 767px) { .provider-card-inner { grid-template-columns: 1fr; } }

.provider-photo-col {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.provider-photo-col img {
  width: 175px;
  height: 175px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 150px;
}

.provider-photo-initials {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  background: var(--navy);
}

.provider-info-col { padding: 1.75rem 2rem; }

.provider-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.provider-cred {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 0.75rem;
  font-weight: 400;
  line-height: 1.45;
}

p.provider-tag {
    float: right;
    font-size: 13px;
    background-color: var(--amber);
    padding: 3px 10px;
    font-weight: 600;
    border-radius: 20px;
}

.provider-specialty-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 0.85rem;
}

.provider-specialty-badge {
  background: rgba(238,178,88,0.10);
  border: 1.5px solid var(--amber);
  color: var(--amber);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.provider-summary {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.btn-expand {
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 0px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.btn-expand:hover { color: var(--navy); }

.provider-bio-expanded {
  display: none;
  border-top: 1px solid rgba(82,106,129,0.18);
  padding: 1.5rem 2rem;
  background: var(--sand);
}

.provider-bio-expanded.open { display: block; }

.provider-bio-expanded p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.provider-bio-expanded p:last-child { margin-bottom: 0; }

/* ────────────────────────────────────────────
   26. SERVICES: 3-COL OVERVIEW GRID
──────────────────────────────────────────── */
.services-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) { .services-3-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .services-3-grid { grid-template-columns: 1fr; } }

.service-overview-card {
  border: 2px solid var(--slate);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  background: var(--sand);
  transition: border-color 0.25s, transform 0.25s;
}

.overview-icon::before {
  content: '' !important;
  height: 28px;
  width: 28px;
  display: inline-block;
  background-size: 28px;
  background-position: center;
  position: relative;
}

.overview-icon.map::before, .overview-icon.camera::before, .overview-icon.stethescope::before,
.overview-icon.globe::before, .overview-icon.microscope::before, .overview-icon.bag::before {
  height: 32px !important;
  width: 32px !important;
  background-size: 32px !important;
}

.overview-icon.map::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-map.png);
}

.overview-icon.camera::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-camera.png);
}

.overview-icon.echowave::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-echowave.png);
}

.overview-icon.weight::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-weight.png);
}

.overview-icon.moon::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-moon.png);
}

.overview-icon.stethescope::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-stethescope.png);
}

.overview-icon.globe::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-globe.png);
}

.overview-icon.microscope::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-microscope.png);
}

.overview-icon.bag::before {
  background-image: url(../sleep-medicine-specialists/images/icons_services-bag.png);
}

.service-overview-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 1rem 0 0.75rem;
}

.service-item-list { list-style: none; padding: 0; margin: 0; }

.service-item-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: var(--slate);
  padding: 4px 0;
  line-height: 1.45;
}

.service-item-list li::before {
  content: '';
  width: 15px;
  height: 15px;
  margin-top: 3px;
  background-image: url(../sleep-medicine-specialists/images/icons_services-checkmark.png);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Services detailed section */
.service-detail-section { padding: 5rem 0; }
.service-detail-section.tinted { background: rgba(255,255,255,0.30); }
.service-detail-section.navy { background: var(--navy); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 991px) { .service-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.service-detail-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-detail-icon.map i.bi::before {
    content: '';
    background-image: url(../sleep-medicine-specialists/images/icons_services-map.png);
    width: 42px;
    height: 42px;
    background-size: 42px;
    position: relative;
    top: 3px;
}

.service-detail-icon.camera i.bi::before {
    content: '';
    background-image: url(../sleep-medicine-specialists/images/icons_services-camera.png);
    width: 42px;
    height: 42px;
    background-size: 42px;
    position: relative;
    top: 3px;
}

.service-detail-icon.echowave i.bi::before {
    content: '';
    background-image: url(../sleep-medicine-specialists/images/icons_services-echowave.png);
    width: 42px;
    height: 42px;
    background-size: 42px;
    position: relative;
    top: 3px;
}

.service-detail-icon.weight i.bi::before {
    content: '';
    background-image: url(../sleep-medicine-specialists/images/icons_services-weight.png);
    width: 42px;
    height: 42px;
    background-size: 42px;
    position: relative;
    top: 3px;
}

.service-detail-icon.stethescope i.bi::before {
    content: '';
    background-image: url(../sleep-medicine-specialists/images/icons_services-stethescope.png);
    width: 42px;
    height: 42px;
    background-size: 42px;
    position: relative;
    top: 3px;
}

.service-detail-icon.moon i.bi::before {
    content: '';
    background-image: url(../sleep-medicine-specialists/images/icons_services-moon.png);
    width: 42px;
    height: 42px;
    background-size: 42px;
    position: relative;
    top: 3px;
}

.service-detail-icon.globe i.bi::before {
    content: '';
    background-image: url(../sleep-medicine-specialists/images/icons_services-globe.png);
    width: 42px;
    height: 42px;
    background-size: 42px;
    position: relative;
    top: 3px;
}

.service-detail-icon.microscope i.bi::before {
    content: '';
    background-image: url(../sleep-medicine-specialists/images/icons_services-microscope.png);
    width: 42px;
    height: 42px;
    background-size: 42px;
    position: relative;
    top: 3px;
}

.service-detail-icon.bag i.bi::before {
    content: '';
    background-image: url(../sleep-medicine-specialists/images/icons_services-bag.png);
    width: 42px;
    height: 42px;
    background-size: 42px;
    position: relative;
    top: 3px;
}

.service-detail-icon i { font-size: 28px; color: var(--amber); }

.service-detail-icon.on-navy { background: rgba(238,178,88,0.12); border: 2px solid var(--amber); }
.service-detail-icon.on-navy i { color: var(--amber); }

.service-detail-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.service-detail-title.white { color: #fff; }

.service-detail-body p {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.72;
  margin-bottom: 1rem;
}

.service-detail-body.white p { color: rgba(255,255,255,0.88); }

.service-detail-body a { color: var(--slate); text-decoration: underline; transition: color 0.2s; }
.service-detail-body a:hover { color: var(--amber); }

.service-detail-img {
  border-radius: 20px;
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* DME 3-panel */
.dme-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  border: 2px solid var(--slate);
  border-radius: 14px;
  background: var(--sand);
}

@media (max-width: 575px) { .dme-panels { grid-template-columns: 1fr; } }

.dme-panel {
  padding: 1.75rem;
  text-align: center;
}

.dme-panel-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.5625rem;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.dme-panel p { font-size: 15px; color: var(--slate); margin: 0; }

/* Services closing CTA */
.services-closing-cta {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
}

.services-closing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(82,106,129,0.12) 10px,
    rgba(82,106,129,0.12) 11px
  );
}

.services-closing-cta-inner { position: relative; z-index: 1; }

.services-closing-quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  color: #fff;
  max-width: 820px;
  margin: 0 auto 2.5rem;
  line-height: 1.45;
}

video#myVideo {
    background: var(--navy);
    padding: 10px;
    border-radius: 20px;
}

/* ────────────────────────────────────────────
   27. CONTACT: UPDATED LAYOUT
──────────────────────────────────────────── */
.contact-hero-navy {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -1px;
}

.contact-hero-navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(82,106,129,0.12) 10px,
    rgba(82,106,129,0.12) 11px
  );
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) { .contact-form-layout { grid-template-columns: 2fr 1fr; } }

.contact-quick-panels { display: flex; flex-direction: column; gap: 1rem; }

.quick-panel {
  border: 2px solid var(--slate);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  background: var(--sand);
  transition: border-color 0.25s;
}

.quick-panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.6rem;
}

.quick-panel-header i    { font-size: 16px; color: var(--amber); -webkit-text-stroke: 0.5px currentColor; }
.quick-panel-header h3   { font-size: 16px; font-weight: 500; margin: 0; color: var(--navy); text-transform: uppercase; letter-spacing: 0.07em; }

.quick-panel p           { font-size: 15px; color: var(--slate); margin: 0 0 4px; }
.quick-panel a           { color: var(--navy); font-weight: 500; font-size: 15px; transition: color 0.2s; }
.quick-panel a:hover     { color: var(--amber); }
.quick-panel .qp-value   { font-size: 15px; color: var(--navy); font-weight: 600; }

.location-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.map-icon::before {
    content: '';
    background-image: url(../sleep-medicine-specialists/images/icons_services-map.png);
    width: 40px;
    height: 40px;
    background-size: 40px;
}

@media (max-width: 767px) { .location-cards-grid { grid-template-columns: 1fr; } }

.location-card {
  border: 2px solid var(--slate);
  border-radius: 16px;
  padding: 1.75rem;
  background: var(--sand);
  transition: border-color 0.25s;
}

.location-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.location-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.85rem;
}

.location-row i { font-size: 15px; color: var(--amber); flex-shrink: 0; margin-top: 2px; -webkit-text-stroke: 0.5px currentColor; }

.location-row p { font-size: 15px; color: var(--slate); margin: 0; line-height: 1.55; }
.location-row a { color: var(--slate); font-weight: 500; font-size: 15px; transition: color 0.2s; }
.location-row a:hover { color: var(--slate); }

.btn-directions {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  padding: 10px 20px;
  border: 2px solid var(--slate);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-directions:hover { border-color: var(--amber); color: var(navy); transform: scale(1.02); }

/* What to expect — contact 3-step */
.expect-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 820px;
  margin: 2.5rem auto 0;
}

@media (max-width: 767px) { .expect-steps-row { grid-template-columns: 1fr; } }

.expect-step-card {
  border: 2px solid var(--slate);
  border-radius: 16px;
  padding: 2rem;
  background: var(--sand);
  text-align: center;
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--amber);
}

.expect-step-card h3 { font-size: 18px; font-weight: 500; margin-bottom: 0.6rem; }
.expect-step-card p  { font-size: 15px; color: var(--slate); line-height: 1.65; margin: 0; }

/* International patients banner */
.intl-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
}

.intl-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(82,106,129,0.12) 10px,
    rgba(82,106,129,0.12) 11px
  );
}

.intl-banner-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; padding: 0 1.25rem; }
.intl-banner h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.intl-banner p  { color: rgba(255,255,255,0.8); font-size: 18px; line-height: 1.7; margin-bottom: 2.5rem; }