/* ═══════════════════════════════════════════════
   Cabinet Dr. Bentouir Tarik — Cardiologue Sète
   ═══════════════════════════════════════════════ */

:root {
  --red:      #B71C1C;
  --red-light:#FFEBEE;
  --red-mid:  #E53935;
  --navy:     #1A237E;
  --dark:     #1C1C1E;
  --gray:     #6B7280;
  --light:    #F8F9FA;
  --white:    #FFFFFF;
  --border:   #E5E7EB;
  --shadow:   0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:0 12px 40px rgba(0,0,0,.12);
  --radius:   12px;
  --radius-lg:20px;
  --font-serif:'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition:.25s ease;
}

*, *::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(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }
button { cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
}
.btn-primary svg { width:18px; height:18px; flex-shrink:0; }
.btn-primary:hover { background: #8B0000; border-color: #8B0000; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(183,28,28,.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
}
.btn-outline svg { width:18px; height:18px; }
.btn-outline:hover { background: var(--red); color: var(--white); transform: translateY(-1px); }

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-heart { width:28px; height:28px; color: var(--red); flex-shrink:0; }
.nav-brand div { display:flex; flex-direction:column; line-height:1.2; }
.brand-name { font-family:var(--font-serif); font-size:1.05rem; font-weight:700; color:var(--dark); }
.brand-sub  { font-size:.72rem; color:var(--gray); font-weight:500; letter-spacing:.5px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}
.nav-links li a:hover { background: var(--light); color: var(--red); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #8B0000 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display:block;
  width:24px; height:2px;
  background: var(--dark);
  border-radius:2px;
  transition: var(--transition);
}

/* ─── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #1A237E 0%, #283593 40%, #B71C1C 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
}
.ecg-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.ecg-line {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawEcg 3s ease forwards 0.5s;
}
@keyframes drawEcg { to { stroke-dashoffset: 0; } }

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text { flex: 1; color: var(--white); }

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}
.accent { color: #EF9A9A; }

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
}

.hero-actions { display:flex; gap:16px; flex-wrap:wrap; }

.hero-actions .btn-primary { background:var(--white); color:var(--red); border-color:var(--white); }
.hero-actions .btn-primary:hover { background:#F5F5F5; box-shadow:0 6px 20px rgba(0,0,0,.2); }
.hero-actions .btn-outline { color:var(--white); border-color:rgba(255,255,255,.6); }
.hero-actions .btn-outline:hover { background:rgba(255,255,255,.15); }

.hero-card {
  flex-shrink: 0;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-width: 280px;
  text-align: center;
  color: var(--white);
  animation: fadeInRight .8s ease .3s both;
}
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }

.doctor-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 3px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.doctor-name { font-family:var(--font-serif); font-size:1.15rem; font-weight:700; }
.doctor-title { font-size:.85rem; opacity:.8; margin:4px 0 12px; }
.doctor-badges { display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin-bottom:20px; }
.badge {
  padding: 4px 12px;
  background: rgba(255,255,255,.15);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
}
.stats-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 16px;
}
.stat { display:flex; flex-direction:column; align-items:center; gap:4px; }
.stat span { font-size:1.3rem; }
.stat small { font-size:.72rem; opacity:.75; }

/* ─── QUICK BAR ─────────────────────────────────── */
.quick-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.quick-item:last-child { border-right: none; }
.quick-item:hover { background: var(--light); }
.quick-item svg { width:24px; height:24px; color:var(--red); flex-shrink:0; }
.quick-item div { display:flex; flex-direction:column; }
.quick-item strong { font-size:.85rem; font-weight:700; color:var(--dark); }
.quick-item span { font-size:.8rem; color:var(--gray); margin-top:2px; }
.quick-item.urgent .quick-item svg,
.quick-item.urgent svg { color: #D32F2F; }
.quick-item.urgent strong { color: #D32F2F; }

/* ─── SECTIONS ─────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--red-light);
  color: var(--red);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-header p { color: var(--gray); font-size: 1.05rem; }

/* ─── ABOUT ─────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text p {
  color: #374151;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.diplomes { margin-top: 28px; }
.diplomes h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}
.diplomes ul { display:flex; flex-direction:column; gap:10px; }
.diplomes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: #374151;
}
.diplomes li svg { width:18px; height:18px; color:var(--red); flex-shrink:0; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.highlight-icon { font-size: 2rem; margin-bottom: 12px; }
.highlight-card h4 { font-weight: 700; font-size: .95rem; color:var(--dark); margin-bottom: 6px; }
.highlight-card p { font-size: .85rem; color: var(--gray); line-height: 1.5; }

/* ─── SERVICES ─────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-light);
}
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 { font-weight: 700; font-size: 1rem; color:var(--dark); margin-bottom: 10px; }
.service-card p { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* ─── AVAILABILITY WIDGET ─────────────────────────────────── */
.avail-widget {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.cal-nav h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: capitalize;
}
.cal-nav-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.4rem;
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cal-nav-btn:hover { background: var(--red); color:var(--white); border-color:var(--red); }

.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  padding: 12px 16px 4px;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.cal-days-header span {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 6px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 16px;
  background: var(--white);
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}
.cal-day.empty { pointer-events: none; }
.cal-day.past { opacity: .35; pointer-events: none; color: var(--gray); }
.cal-day.today { border-color: var(--red); color: var(--red); font-weight: 700; }
.cal-day.has-slots { background: #FFF8F8; color: var(--dark); }
.cal-day.has-slots::after {
  content: '';
  position: absolute;
  bottom: 5px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.cal-day.has-slots:hover { background: var(--red); color:var(--white); border-color:var(--red); }
.cal-day.has-slots:hover::after { background: var(--white); }
.cal-day.selected { background: var(--red); color: var(--white); border-color: var(--red); }
.cal-day.selected::after { background: var(--white); }
.cal-day.no-slots { color: var(--gray); opacity:.5; pointer-events:none; }
.cal-day.loading { opacity:.5; pointer-events:none; }

.slots-panel {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  background: var(--light);
  min-height: 80px;
}
.slots-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray);
  font-size: .92rem;
}
.slots-hint svg { width:20px; height:20px; }
.slots-date-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  margin-bottom: 14px;
}
.slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.slot-chip {
  padding: 8px 18px;
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--red);
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.slot-chip:hover, .slot-chip.active { background: var(--red); color: var(--white); }
.slot-chip.booked { border-color: var(--border); color: var(--gray); cursor: default; opacity: .5; }
.no-slots-msg { color: var(--gray); font-size: .92rem; padding: 8px 0; }

/* ─── BOOKING FORM ─────────────────────────────────── */
.booking-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.book-success {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  box-shadow: var(--shadow);
}
.book-success.hidden { display: none; }
.success-anim { font-size: 4rem; margin-bottom: 20px; }
.book-success h3 { font-family:var(--font-serif); font-size:1.6rem; margin-bottom:12px; }
.book-success p { color:var(--gray); line-height:1.7; margin-bottom:10px; }
.success-details {
  background: var(--light);
  border-radius: var(--radius);
  padding: 16px;
  font-size: .9rem;
  color: var(--dark);
  margin: 16px 0;
}

.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.steps-bar {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light);
  border: 2px solid var(--border);
  color: var(--gray);
  font-weight: 700;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.step-item span { font-size: .78rem; color: var(--gray); font-weight: 500; white-space: nowrap; }
.step-item.active .step-num { background: var(--red); border-color: var(--red); color: var(--white); }
.step-item.active span { color: var(--red); font-weight: 700; }
.step-item.done .step-num { background: #4CAF50; border-color: #4CAF50; color: var(--white); }
.step-line { flex: 1; height: 2px; background: var(--border); margin: 0 8px; margin-bottom: 22px; }

.form-step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.form-step.hidden { display: none; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--dark); }
.form-ctrl {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}
.form-ctrl:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(183,28,28,.1); }
.form-ctrl.error { border-color: #E53935; }
textarea.form-ctrl { resize: vertical; min-height: 90px; }
select.form-ctrl { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position: right 14px center; padding-right:36px; }

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

.book-slots-wrap {
  margin: 6px 0 20px;
  min-height: 50px;
}
.book-slot-chip {
  display: inline-flex;
  padding: 9px 20px;
  margin: 5px;
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--red);
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.book-slot-chip:hover, .book-slot-chip.selected { background: var(--red); color: var(--white); }

.recap-box {
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  border-left: 4px solid var(--red);
}
.recap-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.recap-row:last-child { border-bottom: none; }
.recap-row span:first-child { color: var(--gray); font-weight: 500; }
.recap-row span:last-child { color: var(--dark); font-weight: 600; }

.rgpd-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 16px;
  background: #FFF8F8;
  border-radius: 10px;
  border: 1px solid var(--red-light);
}
.rgpd-check input[type="checkbox"] { margin-top: 2px; accent-color: var(--red); flex-shrink: 0; width: 16px; height: 16px; }
.rgpd-check label { font-size: .82rem; color: var(--gray); line-height: 1.5; cursor: pointer; }

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  gap: 12px;
}

/* ─── CONTACT ─────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-item:hover { box-shadow: var(--shadow); }
.ci-icon { width:22px; height:22px; color:var(--red); flex-shrink:0; margin-top:2px; }
.contact-item strong { display:block; font-size:.88rem; font-weight:700; margin-bottom:4px; }
.contact-item p { font-size:.9rem; color:#374151; line-height:1.6; }
.contact-item small { font-size:.78rem; color:var(--gray); }

.hours-table { border-collapse: collapse; font-size:.88rem; margin-top:4px; width:100%; }
.hours-table td { padding:4px 12px 4px 0; color:#374151; }
.hours-table tr:first-child td { padding-top:0; }
.hours-table .closed td { color:var(--gray); opacity:.6; }

.contact-map iframe { display:block; width:100%; }
.map-note { font-size:.82rem; color:var(--gray); margin-top:10px; text-align:center; }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 48px 0 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand .brand-heart { width:28px; height:28px; color: #EF9A9A; }
.footer-brand strong { display:block; font-family:var(--font-serif); font-size:1.05rem; }
.footer-brand span { font-size:.78rem; color:rgba(255,255,255,.5); }
.footer-links { display:flex; gap:24px; flex-wrap:wrap; }
.footer-links a { font-size:.88rem; color:rgba(255,255,255,.6); transition:var(--transition); }
.footer-links a:hover { color:var(--white); }

.footer-emergency {
  padding: 16px 0;
  font-size: .88rem;
  color: #EF9A9A;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 16px;
}
.footer-emergency strong { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color:rgba(255,255,255,.5); text-decoration:underline; }

/* ─── ANIMATIONS ─────────────────────────────────── */
.fade-in { opacity:0; transform:translateY(24px); transition:.6s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px; left:0; right:0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { border-radius: 10px; padding: 12px 16px; }
  .hamburger { display: flex; }

  .hero { padding: 90px 0 50px; }
  .hero-content { flex-direction: column; gap: 40px; }
  .hero-card { width:100%; }

  .quick-grid { grid-template-columns: 1fr 1fr; }

  .section { padding: 60px 0; }

  .about-highlights { grid-template-columns: 1fr 1fr; }

  .services-grid { grid-template-columns: 1fr; }

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

  .booking-form { padding: 28px 20px; }

  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 4px; }
  .footer-links { gap: 12px; }
}

@media (max-width: 480px) {
  .quick-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width:100%; justify-content:center; }
  .steps-bar .step-item span { display:none; }
  .cal-grid { gap:2px; padding:10px; }
  .cal-day { font-size:.78rem; border-radius:8px; }
}
