/* ═══════════════════════════════════════════════════════════
   Centre d'Urologie Pr. Rabii Redouane – Main Stylesheet
   Colors from brand logo:
     --blue-light  : #14A4DE
     --blue-dark   : #205DA6
     --accent      : #FFF200  (yellow)
   ═══════════════════════════════════════════════════════════ */

/* ── 1. CSS Custom Properties ──────────────────────────── */
:root {
  --blue-light:    #14A4DE;
  --blue-dark:     #205DA6;
  --blue-gradient: linear-gradient(160deg, #14A4DE 0%, #205DA6 100%);
  --accent:        #FFF200;
  --accent-dark:   #d4c800;
  --white:         #ffffff;
  --text:          #1c2b3a;
  --text-muted:    #5a6e82;
  --text-light:    #8a9ab0;
  --bg:            #f5f8fc;
  --bg-card:       #ffffff;
  --border:        #dde4ee;
  --shadow-sm:     0 1px 4px rgba(32,93,166,.08);
  --shadow-md:     0 4px 20px rgba(32,93,166,.12);
  --shadow-lg:     0 8px 40px rgba(32,93,166,.16);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    .2s ease;
  --max-width:     1200px;
  --font-sans:     'Inter', system-ui, -apple-system, sans-serif;
  --font-heading:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* ── 2. Reset & Base ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--blue-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-light); }
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
ul { list-style: none; }
address { font-style: normal; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.08; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem);   font-weight: 700; line-height: 1.15; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 700; line-height: 1.2; }
h4 { font-size: 1.05rem; font-family: var(--font-heading); font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--blue-dark);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ── 3. Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn--primary {
  background: var(--blue-gradient);
  color: var(--white);
  border-color: transparent;
}
.btn--primary:hover {
  background: linear-gradient(160deg, #1bb5f5 0%, #2468b8 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}
.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--text);
}

.btn--outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}
.btn--outline:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.btn--sm { padding: .5rem 1rem; font-size: .82rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* Nav CTA — pill button */
.btn--nav-cta {
  background: linear-gradient(135deg, #14A4DE 0%, #205DA6 100%);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: .6rem 1.4rem;
  font-size: .875rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: .02em;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(20, 164, 222, .30);
  transition: box-shadow var(--transition), transform var(--transition), filter var(--transition);
}
.btn--nav-cta:hover {
  filter: brightness(1.12);
  box-shadow: 0 4px 20px rgba(20, 164, 222, .45);
  transform: translateY(-1px);
  color: #fff;
}

/* ── 4. Topbar ──────────────────────────────────────────── */
.topbar {
  background: var(--blue-dark);
  color: #cde5f5;
  font-size: .82rem;
  padding: .35rem 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar__item {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.topbar__item a { color: #cde5f5; }
.topbar__item a:hover { color: var(--accent); }
.topbar__item svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar__hours { margin-left: auto; }
.topbar__mobile-tel { margin-left: .75rem; color: var(--accent) !important; font-weight: 600; }
.topbar__mobile-tel svg { width: 13px; height: 13px; }

/* ── 5. Site Header ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 2px 20px rgba(32,93,166,.13); }
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: .75rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { height: 50px; width: auto; }
.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.site-logo__text strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--blue-dark);
}
.site-logo__text em {
  font-style: normal;
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── 6. Navigation ──────────────────────────────────────── */
.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-item > a {
  display: block;
  padding: .5rem .6rem;
  font-size: .825rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-item > a:hover,
.nav-item--active > a { color: var(--blue-light); background: var(--bg); }

/* Dropdown */
.nav-item--has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
}
.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: .6rem 1.25rem;
  font-size: .875rem;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown li a:hover {
  background: var(--bg);
  color: var(--blue-light);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── 7. Page Hero (default) ─────────────────────────────── */
.page-hero {
  background: var(--blue-gradient);
  color: var(--white);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; opacity: .9; max-width: 680px; }

/* ── 8. Homepage Hero ───────────────────────────────────── */
.home-hero {
  background: var(--blue-gradient);
  color: var(--white);
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(5rem, 12vw, 10rem);
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/img/hero-pattern.svg') center/cover no-repeat;
  opacity: .06;
}
.home-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: stretch;
  gap: 3rem;
}
.home-hero__photo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  margin-bottom: calc(-1 * clamp(5rem, 12vw, 10rem));
}
.home-hero__photo-img {
  width: 100%;
  max-width: 400px;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.25));
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 88%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 88%);
}
.home-hero__label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.home-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.home-hero__lead {
  font-size: 1.15rem;
  opacity: .88;
  max-width: 580px;
  margin-bottom: 2rem;
}
.home-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.home-hero__trust {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(255,242,0,.4);
}
.hero-stat__num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.02em;
}
.hero-stat__label {
  font-size: .78rem;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .2rem;
}

/* ── 9. Section utility classes ─────────────────────────── */
.section { padding-block: clamp(3rem, 7vw, 5rem); }
.section--bg { background: var(--bg); }
.section--dark { background: var(--blue-dark); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.section-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-header__label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: .5rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { max-width: 600px; margin-inline: auto; color: var(--text-muted); }

/* ── 10. Cards ──────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card-grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 12px 36px rgba(32,93,166,.15);
  transform: translateY(-5px);
}

.card--link { text-decoration: none; color: inherit; cursor: pointer; }

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #e8f6fd, #d0ebf9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.card__icon svg { width: 26px; height: 26px; color: var(--blue-dark); }

.card h3 { margin-bottom: .5rem; }
.card p { color: var(--text-muted); font-size: .9rem; flex-grow: 1; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue-dark);
}
.card__link::after { content: '→'; transition: transform var(--transition); }
.card:hover .card__link::after { transform: translateX(4px); }

/* ── 11. Two-column layout ──────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

/* ── 12. CTA Block ──────────────────────────────────────── */
.cta-block {
  background: var(--blue-gradient);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  color: var(--white);
}
.cta-block h2 { color: var(--white); margin-bottom: .75rem; }
.cta-block p { color: rgba(255,255,255,.85); margin-bottom: 2rem; max-width: 520px; margin-inline: auto; margin-bottom: 2rem; }
.cta-block__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── 13. FAQ Accordion ──────────────────────────────────── */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--blue-light);
  transition: transform var(--transition);
}
.faq-item--open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item--open .faq-answer { display: block; }

/* ── 14. Breadcrumb ─────────────────────────────────────── */
.breadcrumb {
  padding: .75rem 0;
  font-size: .82rem;
  color: var(--text-muted);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb li + li::before {
  content: '›';
  margin-right: .25rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--blue-light); }

/* ── 15. Aside / Sidebar ────────────────────────────────── */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}
.sidebar-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--blue-dark);
}
.sidebar-card + .sidebar-card { margin-top: 1.5rem; }

/* ── 16. Alert / Warning callout ─────────────────────────── */
.callout {
  border-left: 4px solid var(--blue-light);
  background: #e8f6fd;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  margin-block: 1.5rem;
}
.callout--warning {
  border-color: #e05c00;
  background: #fff3ed;
}
.callout--warning strong { color: #c05000; }

/* ── 17. Form styles ─────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--text);
}
.form-label span { color: #c0392b; margin-left: 2px; }
.form-control {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(20,164,222,.15);
}
.form-control::placeholder { color: var(--text-light); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: .15rem;
  accent-color: var(--blue-dark);
  cursor: pointer;
}
.form-check label { font-size: .85rem; color: var(--text-muted); cursor: pointer; }
.form-check a { color: var(--blue-dark); }

.form-success, .form-error {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.form-success { background: #e6f9f0; color: #1a6940; border: 1px solid #a3d9bc; }
.form-error   { background: #fdf0f0; color: #8b1a1a; border: 1px solid #f0a0a0; }

/* ── 18. Topography / prose ─────────────────────────────── */
.prose { max-width: 760px; }
.prose h2 { margin-block: 2rem .75rem; }
.prose h3 { margin-block: 1.5rem .5rem; color: var(--blue-dark); }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .4rem; }
.prose hr { border: none; border-top: 1px solid var(--border); margin-block: 2rem; }

/* ── 19. Trust badges row ───────────────────────────────── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
  justify-content: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-badge svg { width: 22px; height: 22px; color: var(--blue-light); flex-shrink: 0; }

/* ── 20. Map section ────────────────────────────────────── */
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16/7;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── 21. NAP info box ───────────────────────────────────── */
.nap-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.nap-box__row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding-block: .75rem;
  border-bottom: 1px solid var(--border);
}
.nap-box__row:last-child { border-bottom: none; }
.nap-box__icon { color: var(--blue-light); flex-shrink: 0; margin-top: .1rem; }
.nap-box__icon svg { width: 20px; height: 20px; }
.nap-box__label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--text-light); margin-bottom: .15rem; }
.nap-box__value { color: var(--text); font-size: .925rem; }
.nap-box__value a { color: var(--blue-dark); font-weight: 500; }

/* ── 22. Doctor profile card ────────────────────────────── */
.doctor-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.doctor-card__photo {
  width: 140px;
  height: 160px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg);
  border: 3px solid var(--blue-light);
}
.doctor-card__name { font-size: 1.4rem; color: var(--blue-dark); margin-bottom: .2rem; }
.doctor-card__title { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }
.doctor-card__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.tag {
  display: inline-block;
  padding: .3rem .75rem;
  background: #e8f6fd;
  color: var(--blue-dark);
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
}

/* ── 23. Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: #b0bfcc;
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col__title {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo { display: flex; align-items: center; margin-bottom: .75rem; }
.footer-logo img { height: 44px; width: auto; }
.footer-brand__name { color: var(--white); font-weight: 700; font-size: 1rem; margin-bottom: .1rem; }
.footer-brand__title { font-size: .8rem; color: var(--text-light); margin-bottom: .75rem; }
.footer-brand__note { font-size: .82rem; line-height: 1.6; margin-bottom: .75rem; }
.footer-disclaimer { font-size: .75rem; opacity: .6; font-style: italic; }

.footer-nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a { color: #b0bfcc; font-size: .875rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }

.footer-nap { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }
.footer-nap p {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  line-height: 1.5;
}
.footer-nap svg { flex-shrink: 0; margin-top: .1rem; color: var(--blue-light); }
.footer-nap a { color: #b0bfcc; }
.footer-nap a:hover { color: var(--white); }
.footer-hours { color: #8a9ab0; font-size: .82rem; }

.footer-rdv-btn { margin-top: .5rem; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: #6a7a8a;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
}
.footer-legal a { color: #6a7a8a; transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ── 24. Sticky RDV button ─────────────────────────────── */
.sticky-rdv {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--blue-gradient);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  padding: .75rem 1.4rem;
  border-radius: 2rem;
  box-shadow: 0 6px 24px rgba(20,93,166,.35);
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, box-shadow .2s ease;
  pointer-events: none;
}
.sticky-rdv.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-rdv:hover {
  box-shadow: 0 10px 32px rgba(20,93,166,.45);
  transform: translateY(-2px);
  color: #fff;
}
@media (max-width: 768px) {
  .sticky-rdv span { display: none; }
  .sticky-rdv { padding: .85rem; border-radius: 50%; }
}

/* ── 25. Cookie banner ──────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, calc(100vw - 2rem));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.5rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: .875rem; color: var(--text-muted); margin: 0; flex: 1 1 280px; }
.cookie-banner p a { color: var(--blue-dark); font-weight: 500; }
.cookie-banner__actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-banner[hidden] { display: none; }

/* ── 25. Urgency strip ──────────────────────────────────── */
.urgency-strip {
  background: #c0392b;
  color: var(--white);
  padding: .6rem 0;
  text-align: center;
  font-size: .875rem;
  font-weight: 600;
}
.urgency-strip a { color: var(--accent); font-weight: 700; }

/* ── 26. Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    max-height: 80vh;
    overflow-y: auto;
  }
  .main-nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item > a { padding: .75rem .5rem; border-radius: 0; border-bottom: 1px solid var(--border); }
  .nav-dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 .5rem 1rem;
    display: none;
  }
  .nav-item--has-dropdown.is-open .nav-dropdown { display: block; }
  .nav-item--cta { padding-top: .75rem; }
  .nav-item--cta .btn { width: 100%; justify-content: center; }
  .site-header { position: relative; }
  .site-header__inner { position: relative; }

  .home-hero__inner { grid-template-columns: 1fr; }
  .home-hero__photo { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse { direction: ltr; }
  .doctor-card { flex-direction: column; }
  .doctor-card__photo { width: 100%; max-width: 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .topbar__hours { display: none; }
}

@media (max-width: 480px) {
  .home-hero__trust { gap: 1.25rem; }
  .card-grid, .card-grid--2, .card-grid--3 { grid-template-columns: 1fr; }
}
