/* ============================================================
   FAR FILLIMORE CARE HOMES — REFERRAL DECK
   styles.css (Single-Page Scroll Edition)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;1,400&family=Inter:wght@400;500&display=swap');

/* --- Theme Variables --- */
:root {
  --primary: #1e3d6b;
  --primary-dark: #0f223f;
  --primary-light: #2a4e85;
  --accent: #b05c3a;
  --accent-hover: #c46840;
  --accent-gold: #c5a059;
  --bg-light: #f5f0e8;
  --bg-dark: #1e1e1e;
  --card-bg: #ffffff;
  
  --text-dark: #2e2a22;
  --text-muted: #6a6058;
  --text-light: #f5f0e8;
  
  --glass-bg: rgba(30, 61, 107, 0.88);
  --glass-border: rgba(255, 255, 255, 0.12);
  --card-shadow: 0 4px 20px rgba(30, 61, 107, 0.04);
  --hover-shadow: 0 12px 35px rgba(30, 61, 107, 0.1);
  --glow-gold: 0 0 15px rgba(197, 160, 89, 0.3);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* --- Page --- */
body {
  background: var(--bg-dark);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto; /* Allow full vertical scrolling */
  min-height: 100vh;
}

/* ============================================================
   DECK SHELL
   ============================================================ */
.deck {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
}

.slides-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Slide Layout (Stretched in vertical flow) */
.slide {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   SHARED COMPONENTS
   ============================================================ */

/* Top band (slides 2–5) - Glassmorphism */
.top-band {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  z-index: 10;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #b0c8e0;
  text-transform: uppercase;
}

.slide-num {
  font-size: 11px;
  color: #7ab8e0;
  letter-spacing: 0.06em;
}

/* Slide footer (slides 2–5) - Soft Glassmorphism */
.slide-footer {
  background: rgba(232, 226, 216, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(30, 61, 107, 0.05);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  z-index: 10;
}

.footer-logo {
  font-family: 'Lora', serif;
  font-size: 13.5px;
  color: var(--primary);
  font-weight: 500;
}

.footer-url {
  font-size: 12px;
  color: var(--text-muted);
}

/* CTA button - Shine Effect */
.cta-btn {
  background: var(--accent);
  color: #fff5ee;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(176, 92, 58, 0.25);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(176, 92, 58, 0.4);
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  transition: left 0.6s ease;
}

.cta-btn:hover::after {
  left: 130%;
}

.cta-btn i { font-size: 16px; transition: transform 0.2s; }
.cta-btn:hover i { transform: translateX(3px); }

/* Value cards - Glow & Lift */
.values-row {
  display: flex;
  gap: 12px;
}

.val {
  flex: 1;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.val:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(30, 61, 107, 0.18);
}

.val i { font-size: 19px; color: var(--accent-gold); }
.val-label { font-size: 13px; font-weight: 500; color: #f0ede6; }
.val-desc { font-size: 12px; color: #9ab8d8; line-height: 1.35; }

/* Pull quote */
.quote-block {
  border-left: 3px solid var(--accent);
  padding: 10px 0 10px 20px;
}

.quote-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: #3e3628;
  line-height: 1.6;
  margin-bottom: 6px;
}

.quote-attr {
  font-size: 12px;
  color: var(--text-muted);
}

/* Body copy */
.body-text {
  font-size: 15px;
  color: #5a5248;
  line-height: 1.72;
}

.intro-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   SLIDE 1 — HERO / COVER
   ============================================================ */
.slide--hero {
  background: var(--primary-dark);
}

@keyframes cinematicZoom {
  0% { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}

.hero-bg {
  position: absolute;
  inset: -10px;
  background-size: cover;
  background-position: center top;
  animation: cinematicZoom 20s infinite alternate ease-in-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 25, 45, 0.62) 0%, rgba(10, 15, 25, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hero-top-bar {
  padding: 32px 48px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 12px;
  color: #b8ceb4;
  letter-spacing: 0.07em;
  margin-top: 4px;
}

/* Glassmorphism Badge */
.cqc-badge {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cqc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ec98a;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(126, 201, 138, 0.5);
}

.cqc-badge span {
  font-size: 12px;
  color: #d0e8cc;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Upgraded Center Content - Frosted Glass Shade Box */
.hero-centre {
  flex: 0 1 auto;
  align-self: center;
  margin: auto; /* Vertically centers the box in the content height */
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 48px;
  max-width: 680px;
  width: calc(100% - 64px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-headline {
  font-family: 'Lora', serif;
  font-size: 46px;
  font-weight: 400;
  background: linear-gradient(135deg, #ffffff 60%, #e5c19d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.18;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.hero-sub {
  font-size: 16px;
  color: #c8d8c4;
  line-height: 1.65;
  max-width: 560px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.stats-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Glassmorphism Pills with Hover Lift */
.stat-pill {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--glass-border);
  border-radius: 99px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.stat-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.stat-pill i { font-size: 17px; color: #7ab8e0; }
.stat-pill span { font-size: 13.5px; color: #e8ede6; white-space: nowrap; }

.hero-footer {
  position: relative;
  z-index: 2;
  background: rgba(10, 15, 25, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.hero-footer-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #a0b49e;
}

.hero-footer-item i { font-size: 14px; color: #6a8e68; }
.hero-footer-div { color: #2a3e64; }

/* ============================================================
   SLIDE 2 — ABOUT US
   ============================================================ */
.slide--light { background: var(--bg-light); }

.s2-body {
  flex: 1;
  display: flex;
  gap: 0;
  min-height: 0;
}

.s2-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 48px;
  gap: 20px;
  min-height: 0;
}

.s2-headline {
  font-family: 'Lora', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.22;
}

.s2-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.s2-right {
  width: 45%;
  max-width: 700px;
  flex-shrink: 0;
  padding: 48px 48px 48px 0;
  display: flex;
}

/* ============================================================
   SLIDE 3 — OUR SERVICES
   ============================================================ */
.s3-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 48px;
  gap: 20px;
  min-height: 0;
}

.s3-intro { display: flex; flex-direction: column; gap: 6px; }

.s3-headline {
  font-family: 'Lora', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}

.service-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid #ddd8ce;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
  border-color: var(--accent-gold);
}

.service-card-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.service-card-header { display: flex; align-items: center; gap: 10px; }
.service-card-icon { font-size: 20px; color: var(--primary); }
.service-card-title { font-size: 15px; font-weight: 500; color: var(--text-dark); }
.service-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

.closing-note {
  background: var(--primary);
  border-radius: 8px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(30, 61, 107, 0.15);
}

.closing-note i { font-size: 18px; color: var(--accent-gold); flex-shrink: 0; }
.closing-note span { font-size: 13.5px; color: #d4e4d0; line-height: 1.5; }

/* ============================================================
   SLIDE 4 & 5 — CONTENT WITH SIDE PHOTO
   ============================================================ */
.s4-body {
  flex: 1;
  display: flex;
  gap: 32px;
  padding: 48px;
  min-height: 0;
}

.s4-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.s4-headline {
  font-family: 'Lora', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
}

.timeline { display: flex; flex-direction: column; }

.step { display: flex; gap: 14px; cursor: default; }

.step-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 28px;
  flex-shrink: 0;
}

/* Premium Timeline Dot Glow */
.step-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  flex-shrink: 0;
  box-shadow: var(--glow-gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.step:hover .step-dot {
  transform: scale(1.15);
  box-shadow: 0 0 18px rgba(197, 160, 89, 0.6);
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.step-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent-gold));
  margin: 3px 0;
  min-height: 12px;
}

.step-content {
  padding-bottom: 12px;
  flex: 1;
  padding-top: 3px;
}

.step-title { font-size: 14px; font-weight: 500; color: var(--text-dark); margin-bottom: 3px; transition: color 0.2s; }
.step:hover .step-title { color: var(--accent); }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.promise-box {
  background: #fff8f0;
  border: 1px solid #d4a882;
  border-radius: 8px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(176, 92, 58, 0.05);
}

.promise-box i { font-size: 19px; color: var(--accent); flex-shrink: 0; }
.promise-text { font-size: 13.5px; color: #3e2e20; line-height: 1.5; }
.promise-text strong { font-weight: 500; color: var(--accent); }

.s4-right {
  width: 38%;
  max-width: 550px;
  flex-shrink: 0;
  display: flex;
}

/* ============================================================
   SLIDE 6 — CONTACT & CTA
   ============================================================ */
.slide--contact {
  background: var(--primary-dark);
}

.contact-bg {
  position: absolute;
  inset: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cinematicZoom 20s infinite alternate ease-in-out;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 25, 45, 0.72) 0%, rgba(10, 12, 20, 0.85) 100%);
}

/* Upgraded Center Contact Card - Frosted Glass Shade Box */
.contact-content {
  position: relative;
  z-index: 2;
  flex: 0 1 auto;
  align-self: center;
  margin: auto; /* Vertically centers the box in the content height */
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 48px;
  max-width: 680px;
  width: calc(100% - 64px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.contact-headline {
  font-family: 'Lora', serif;
  font-size: 38px;
  font-weight: 400;
  background: linear-gradient(135deg, #ffffff 60%, #e5c19d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.contact-para {
  font-size: 14.5px;
  color: #c0d0bc;
  line-height: 1.7;
  max-width: 580px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 460px;
}

/* Glassmorphic Contact Rows */
.contact-row {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              background 0.3s,
              border-color 0.3s;
}

.contact-row:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
}

.contact-row i { font-size: 20px; color: var(--accent-gold); flex-shrink: 0; }
.contact-method-label { font-size: 11px; font-weight: 500; color: var(--text-light); opacity: 0.75; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-method-value { font-size: 15px; color: #f0ede6; margin-top: 2px; }
.contact-method-note { font-size: 12px; color: #9ab8d8; margin-top: 2px; }

.contact-logo-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.contact-logo-name {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 500;
  color: #e8e2d8;
  letter-spacing: 0.02em;
}

.contact-logo-tagline {
  font-size: 12px;
  color: var(--accent-gold);
  font-style: italic;
  letter-spacing: 0.05em;
}

.reg-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.03em;
}

/* ============================================================
   TABLET RESPONSIVE — 761px to 1024px
   ============================================================ */
@media (min-width: 761px) and (max-width: 1024px) {
  /* Reduce padding on the slides for narrower tablet screen widths */
  .top-band { padding: 12px 24px; }
  .slide-footer { padding: 10px 24px; }
  .s2-left, .s3-body, .s4-body, .hero-centre, .contact-content {
    padding: 32px;
  }
  .hero-top-bar {
    padding: 24px 32px 0;
  }

  /* Adjust side-photo widths so text content has more breathing room */
  .s2-right {
    width: 35%;
    padding: 32px 32px 32px 0;
  }
  .s4-right {
    width: 30%;
  }

  /* Scale down typography slightly for tablet layouts */
  .hero-headline { font-size: 40px; }
  .hero-sub { font-size: 15px; }
  
  .s2-headline, .s3-headline, .s4-headline { font-size: 24px; }
  .body-text, .intro-text { font-size: 13.5px; }
  
  .val-label { font-size: 12px; }
  .val-desc { font-size: 11px; }
  .quote-text { font-size: 14px; }
  
  .service-card-title { font-size: 13.5px; }
  .service-card-desc { font-size: 12px; }
  
  .room-count { font-size: 24px; }
  .fee-amount { font-size: 28px; }
  
  .step-title { font-size: 13px; }
  .step-desc { font-size: 12px; }
  
  .contact-headline { font-size: 32px; }
  .contact-para, .contact-method-value { font-size: 13.5px; }
}

/* ============================================================
   MOBILE RESPONSIVE — ≤ 760px
   ============================================================ */
@media (max-width: 760px) {

  /* --- Page shell --- */
  body {
    overflow-y: auto;
  }

  .deck {
    width: 100%;
    height: auto;
    min-height: 100vh;
  }

  .slides-wrapper {
    height: auto;
  }

  /* --- Slide shell --- */
  .slide {
    position: relative;
    border-radius: 0;
    height: auto;
    min-height: 100dvh;
    opacity: 1;
    pointer-events: all;
    display: flex;
    transform: none;
    transition: none;
  }

  /* --- Shared top/bottom bands --- */
  .top-band { padding: 12px 16px; }
  .slide-footer { padding: 10px 16px; }
  .footer-logo { font-size: 11px; }

  /* ── SLIDE 1 — HERO ── */
  .hero-top-bar { padding: 16px 16px 0; flex-wrap: wrap; gap: 8px; }
  .logo-name { font-size: 14px; }
  .logo-tagline { font-size: 10px; }

  /* Glass shade paddings on mobile */
  .hero-centre {
    padding: 24px 20px;
    margin: 24px 16px;
    width: calc(100% - 32px);
    gap: 16px;
  }

  .hero-headline {
    font-size: 26px;
    line-height: 1.22;
  }

  .hero-sub {
    font-size: 13px;
    max-width: 100%;
  }

  .stats-row { gap: 7px; }
  .stat-pill { padding: 6px 12px; }
  .stat-pill span { font-size: 11.5px; }

  .cta-btn {
    font-size: 13px;
    padding: 11px 20px;
    width: 100%;
    justify-content: center;
  }

  .hero-footer {
    padding: 12px 16px;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-footer-div { display: none; }

  /* ── SLIDE 2 — ABOUT ── */
  .s2-body { flex-direction: column; }

  .s2-right {
    width: 100%;
    max-width: 100%;
    padding: 0 16px 16px;
    height: 180px;
    flex-shrink: 0;
  }

  .s2-right img { min-height: 0 !important; height: 100% !important; }

  .s2-left {
    padding: 24px 16px;
    gap: 12px;
    height: auto;
  }

  .s2-headline { font-size: 20px; }
  .body-text { font-size: 12.5px; line-height: 1.6; }
  .values-row { flex-direction: column; gap: 6px; }
  .val { padding: 10px 12px; }
  .val-label { font-size: 11.5px; }
  .val-desc { font-size: 11px; }
  .quote-text { font-size: 13px; }
  .quote-attr { font-size: 11px; }

  /* ── SLIDE 3 — SERVICES ── */
  .s3-body { padding: 24px 16px; gap: 12px; height: auto; }
  .s3-headline { font-size: 19px; }
  .intro-text { font-size: 12px; }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .service-card-title { font-size: 12.5px; }
  .service-card-desc { font-size: 11px; }

  /* ── SLIDE 4 & 5 — DETAILS ── */
  .s4-body { flex-direction: column; padding: 24px 16px; gap: 14px; height: auto; }
  
  .s4-right {
    display: flex;
    width: 100%;
    max-width: 100%;
    padding: 0 16px 16px;
    height: 180px;
    flex-shrink: 0;
  }
  .s4-right img { min-height: 0 !important; height: 100% !important; }
  .s4-headline { font-size: 19px; }

  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .room-count { font-size: 18px; }
  .room-label { font-size: 10.5px; }
  .amenity { font-size: 11px; }

  .fee-block {
    padding: 12px 14px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .fee-amount { font-size: 22px; }
  .fee-label { font-size: 11.5px; }

  .step { gap: 10px; }
  .step-dot { width: 22px; height: 22px; font-size: 10px; }
  .step-title { font-size: 12px; }
  .step-desc { font-size: 11px; }

  /* ── SLIDE 6 — CONTACT ── */
  .contact-content {
    padding: 24px 20px;
    margin: 24px 16px;
    width: calc(100% - 32px);
    gap: 16px;
  }

  .contact-headline { font-size: 24px; }
  .contact-para { font-size: 12px; max-width: 100%; }
  .contact-methods { max-width: 100%; gap: 7px; }
  .contact-row { padding: 10px 14px; gap: 10px; }
  .contact-method-value { font-size: 12px; }
}

/* ============================================================
   VERY SMALL SCREENS — ≤ 400px
   ============================================================ */
@media (max-width: 400px) {
  .hero-headline { font-size: 22px; }
  .s2-headline { font-size: 18px; }
  .s3-headline, .s4-headline { font-size: 17px; }
  .contact-headline { font-size: 20px; }

  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .amenity { font-size: 10.5px; padding: 4px 9px; }

  .stat-pill span { font-size: 10.5px; }
  .cta-btn { font-size: 12.5px; }
}
