/* ============================================
   FIRST HOME CARE — Design System & Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --clr-primary: #2d7cb5;
  --clr-primary-light: #4a9fd4;
  --clr-primary-dark: #1a5a8a;
  --clr-teal: #2ab0a4;
  --clr-teal-light: #5eeadd;
  --clr-teal-dark: #1e8a80;
  --clr-accent: #f07052;
  --clr-dark: #1b2e3d;
  --clr-dark-blue: #264452;
  --clr-bg-warm: #faf6f3;
  --clr-bg-light: #f5efec;
  --clr-white: #ffffff;
  --clr-text: #2c3e50;
  --clr-text-light: #6b7c8d;
  --clr-text-muted: #94a3b4;
  --clr-border: rgba(0,0,0,0.08);
  --clr-overlay: rgba(27,46,61,0.7);
  --clr-glass: rgba(255,255,255,0.12);
  --clr-glass-border: rgba(255,255,255,0.2);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Sizing */
  --max-width: 1200px;
  --nav-height: 80px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.14);
  --shadow-glow: 0 0 40px rgba(42,176,164,0.25);
  --shadow-gold: 0 4px 30px rgba(212,175,55,0.15);
  --shadow-card-hover: 0 24px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(42,176,164,0.1);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background-color: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--clr-dark);
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* --- Utility Classes --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--clr-teal);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-teal), var(--clr-teal-light));
  transform: translateY(-50%);
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: var(--space-lg);
  color: var(--clr-dark);
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-light);
  max-width: 600px;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.text-center { text-align: center; }
.text-white { color: var(--clr-white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(45,124,181,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45,124,181,0.4);
}

.btn-outline {
  border: 2px solid var(--clr-white);
  color: var(--clr-white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--clr-white);
  color: var(--clr-primary);
  transform: translateY(-2px);
}

.btn-teal {
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-teal-light));
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(42,176,164,0.3);
}

.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(42,176,164,0.4);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-smooth);
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  padding: 6px 0;
}

.header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-icon-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: contain;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.header.scrolled .logo-icon-img {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color var(--transition-base);
}

.header.scrolled .logo-text {
  color: var(--clr-dark);
}

.logo-text span {
  color: var(--clr-teal-light);
}

.header.scrolled .logo-text span {
  color: var(--clr-teal);
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 6px;
}

.header.scrolled .nav-links {
  border-top-color: var(--clr-border);
}

/* Utility row (row 2): phone, CTA, language */
.nav-utility {
  width: 100%;
  order: 10;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 10px 0 2px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 10px;
}

.header.scrolled .nav-utility {
  border-top-color: var(--clr-border);
}

.nav-links a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-white);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
  letter-spacing: 1.5px;
}

.header.scrolled .nav-links a {
  color: var(--clr-text);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-white);
  background: rgba(255,255,255,0.15);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
  color: var(--clr-primary);
  background: rgba(45,124,181,0.08);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-white);
  white-space: nowrap;
  transition: color var(--transition-base);
}

.header.scrolled .nav-phone {
  color: var(--clr-primary);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  background: var(--clr-teal);
  color: var(--clr-white);
  white-space: nowrap;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(42,176,164,0.3);
}

.nav-cta:hover {
  background: var(--clr-teal-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(42,176,164,0.4);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.header.scrolled .lang-switcher-btn {
  background: rgba(0,0,0,0.05);
  border-color: var(--clr-border);
  color: var(--clr-dark);
}

.lang-switcher-btn:hover {
  background: rgba(255,255,255,0.2);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-fast);
  z-index: 1100;
  overflow: hidden;
}

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

.lang-dropdown a {
  display: block;
  padding: 10px 16px;
  color: var(--clr-text);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background var(--transition-fast);
}

.lang-dropdown a:hover {
  background: var(--clr-bg-light);
}

.lang-dropdown a.active {
  background: rgba(42,176,164,0.08);
  color: var(--clr-teal);
  font-weight: 700;
}

/* RTL Support */
html[dir="rtl"] .container { direction: rtl; }
html[dir="rtl"] .services-grid,
html[dir="rtl"] .mission-grid,
html[dir="rtl"] .team-grid,
html[dir="rtl"] .locations-grid,
html[dir="rtl"] .footer-grid { direction: rtl; }
html[dir="rtl"] .hero-content { text-align: right; }
html[dir="rtl"] .location-link { flex-direction: row-reverse; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header.scrolled .hamburger span {
  background: var(--clr-dark);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav Overlay */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--clr-dark), var(--clr-dark-blue));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.nav-mobile.active {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  padding: 12px 32px;
  border-radius: var(--radius-xl);
  transition: all var(--transition-fast);
}

.nav-mobile a:hover {
  color: var(--clr-white);
  background: rgba(255,255,255,0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,46,61,0.8) 0%,
    rgba(27,46,61,0.5) 50%,
    rgba(42,176,164,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-teal-light);
  margin-bottom: var(--space-xl);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-teal-light);
  border-radius: var(--radius-full);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
  font-weight: 700;
  line-height: 1.15;
}

.hero-title em {
  font-style: normal;
  color: var(--clr-teal-light);
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  margin-bottom: var(--space-2xl);
  max-width: 550px;
  line-height: 1.8;
}

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

/* Slider Controls */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero-dot.active {
  background: var(--clr-teal-light);
  border-color: var(--clr-teal-light);
  transform: scale(1.2);
}

.hero-arrows {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 8px;
  z-index: 20;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero-arrow:hover {
  background: rgba(255,255,255,0.25);
}

.hero-arrow svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   SERVICES BAR
   ============================================ */
.services-bar {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.services-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(42,176,164,0.2), transparent 70%);
  border-radius: var(--radius-full);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(94,234,221,0.3), transparent 50%, rgba(42,176,164,0.2));
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: -1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94,234,221,0.5), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-12px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25), 0 0 40px rgba(42,176,164,0.15);
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-xl);
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-teal-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(42,176,164,0.3);
  transition: transform var(--transition-spring);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.service-card-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-teal-light);
  margin-bottom: var(--space-sm);
}

.service-card h3 {
  font-size: 1.35rem;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.service-card .learn-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-teal-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-base);
}

.service-card:hover .learn-more {
  gap: 12px;
}

.learn-more svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.service-card:hover .learn-more svg {
  transform: translateX(4px);
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission {
  padding: var(--space-5xl) 0;
  background: var(--clr-white);
  position: relative;
}

.mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
}

.mission-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.mission-content {
  position: relative;
}

.mission-quote {
  position: relative;
  padding: var(--space-2xl);
  background: var(--clr-bg-warm);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--clr-teal);
}

.mission-quote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: var(--clr-teal);
  opacity: 0.3;
  line-height: 1;
}

.mission-quote h3 {
  font-size: 1.6rem;
  margin-bottom: var(--space-lg);
  color: var(--clr-dark);
}

.mission-quote p {
  font-size: 1rem;
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.mission-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mission-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.mission-author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--clr-dark);
}

.mission-author-info span {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

/* ============================================
   WELCOME / ABOUT SECTION
   ============================================ */
.welcome {
  padding: var(--space-5xl) 0;
  background: var(--clr-bg-light);
}

.welcome-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.welcome-header .section-label {
  justify-content: center;
}

.welcome-header .section-subtitle {
  margin: 0 auto;
}

.welcome-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: var(--space-3xl);
}

.welcome-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

.welcome-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.welcome-card-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.welcome-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.welcome-card:hover .welcome-card-image img {
  transform: scale(1.08);
}

.welcome-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.welcome-card:hover .welcome-card-image-overlay {
  opacity: 1;
}

.welcome-card-body {
  padding: var(--space-2xl);
}

.welcome-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-teal);
  margin-bottom: var(--space-sm);
}

.welcome-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
}

.welcome-card-body p {
  font-size: 0.95rem;
  color: var(--clr-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.welcome-card-body .learn-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-base);
}

.welcome-card:hover .learn-more {
  gap: 12px;
}

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

/* ============================================
   OUR TEAM
   ============================================ */
.team {
  padding: var(--space-5xl) 0;
  background: var(--clr-bg-warm);
}

.team-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.team-group {
  margin-bottom: var(--space-3xl);
}

.team-group:last-child {
  margin-bottom: 0;
}

.team-group-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--clr-border);
}

.team-group-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--clr-primary);
  flex-shrink: 0;
}

.team-group-dot--teal {
  background: var(--clr-teal);
}

.team-group-dot--accent {
  background: var(--clr-accent);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(42,176,164,0.15);
}

.team-card--lead {
  border-color: rgba(42,176,164,0.2);
  background: linear-gradient(135deg, rgba(42,176,164,0.04), var(--clr-white));
}

.team-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.team-card--lead .team-avatar {
  width: 46px;
  height: 46px;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(42,176,164,0.25);
}

.team-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.team-info strong {
  font-size: 0.88rem;
  color: var(--clr-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-info span {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.team-card--lead .team-info span {
  color: var(--clr-teal);
  font-weight: 600;
}

.team-card--medical {
  border-color: rgba(240,112,82,0.15);
  background: linear-gradient(135deg, rgba(240,112,82,0.03), var(--clr-white));
}

.team-avatar--medical {
  background: linear-gradient(135deg, #e8605a, #f07052);
}

.team-card--medical .team-info span {
  color: var(--clr-accent);
  font-weight: 600;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-dark-blue) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42,176,164,0.15), transparent 70%);
  border-radius: var(--radius-full);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45,124,181,0.1), transparent 70%);
  border-radius: var(--radius-full);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
}

.cta-banner p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-md);
}

.cta-phone {
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-teal-light);
  margin-bottom: var(--space-2xl);
  display: block;
  font-family: var(--font-body);
  transition: color var(--transition-fast);
}

.cta-phone:hover {
  color: var(--clr-white);
}

/* ============================================
   HOW WE CARE
   ============================================ */
.how-we-care {
  padding: var(--space-5xl) 0;
  background: var(--clr-white);
}

.how-we-care-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.how-we-care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.conditions-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.conditions-list h3 {
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}

.conditions-list > p {
  color: var(--clr-text-light);
  margin-bottom: var(--space-lg);
}

.progress-item {
  position: relative;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.progress-label span:last-child {
  color: var(--clr-teal);
  font-weight: 700;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--clr-bg-light);
  border-radius: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--clr-teal), var(--clr-primary));
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-we-care-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.how-we-care-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats */
.stats {
  padding: var(--space-4xl) 0;
  background: var(--clr-bg-light);
}

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

.stat-item {
  padding: var(--space-2xl);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-body);
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  font-weight: 500;
}
/* ============================================
   LOCATIONS
   ============================================ */
.locations {
  padding: var(--space-5xl) 0;
  background: var(--clr-white);
}

.locations-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.location-card {
  background: var(--clr-bg-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  transition: all var(--transition-smooth);
  border: 1px solid var(--clr-border);
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(42,176,164,0.2);
}

.location-card--main {
  border-color: rgba(42,176,164,0.3);
  background: linear-gradient(180deg, rgba(42,176,164,0.06) 0%, var(--clr-bg-warm) 100%);
}

.location-card-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-teal-light));
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.location-card-badge--affiliate {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
}

.location-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-lg);
  background: rgba(42,176,164,0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.location-card:hover .location-card-icon {
  background: rgba(42,176,164,0.2);
  transform: scale(1.1);
}

.location-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--clr-teal);
}

.location-card h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--clr-dark);
}

.location-address {
  font-size: 0.82rem;
  color: var(--clr-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.location-manager {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: var(--space-lg);
}

.location-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition-fast);
}

.location-link:hover {
  color: var(--clr-primary);
  gap: 8px;
}

/* Active card */
.location-card--active {
  border-color: var(--clr-teal) !important;
  box-shadow: 0 4px 20px rgba(42,176,164,0.15);
  transform: translateY(-4px);
}

.location-card--active .location-card-icon {
  background: var(--clr-teal);
}

.location-card--active .location-card-icon svg {
  color: white;
}

/* Google Map */
.locations-map {
  margin-top: var(--space-3xl);
}

.locations-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.locations-map-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-dark);
  transition: all var(--transition-base);
}

.locations-map-wrapper {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
}

.locations-map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-5xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: var(--space-4xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-xl);
}

.footer-brand .logo-text {
  color: var(--clr-white);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--clr-teal);
  color: var(--clr-white);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-xl);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--clr-teal-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--clr-teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-xl) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-lang {
  display: flex;
  gap: 16px;
}

.footer-lang a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: color var(--transition-fast);
}

.footer-lang a:hover,
.footer-lang a.active {
  color: var(--clr-teal-light);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-primary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .mission-grid,
  .how-we-care-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .welcome-cards {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
  }

  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --space-5xl: 5rem;
    --space-4xl: 3.5rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-arrows {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

  .cta-phone {
    font-size: 1.5rem;
  }
}

/* --- Keyframe Animations --- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gentle-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(42,176,164,0.2); }
  50% { box-shadow: 0 0 0 12px rgba(42,176,164,0); }
}

/* ============================================
   PREMIUM ENHANCEMENTS
   ============================================ */

/* Animated gradient border on CTA buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

/* Premium section dividers */
.services::after,
.welcome::after,
.caregivers::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-teal-light), transparent);
}

/* Subtle glow on location cards hover */
.location-card:hover {
  box-shadow: var(--shadow-card-hover);
}

/* Premium stat number shimmer */
.stat-number {
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-teal-light), var(--clr-primary));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

/* Team card premium hover */
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Elegant focus states */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--clr-teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Smooth page-wide selection color */
::selection {
  background: rgba(42,176,164,0.2);
  color: var(--clr-dark);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--clr-teal), var(--clr-primary));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--clr-teal-dark), var(--clr-primary-dark));
}

/* CTA banner animated gradient */
.cta-banner {
  background: linear-gradient(-45deg, #1b2e3d, #264452, #1e8a80, #2ab0a4) !important;
  background-size: 300% 300% !important;
  animation: gradient-shift 8s ease infinite;
}

/* Footer premium separator */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* ============================================
   SERVICE DETAIL MODALS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,25,35,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  transform: translateY(40px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-header {
  background: linear-gradient(135deg, var(--clr-dark), var(--clr-dark-blue));
  padding: 36px 40px 28px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

.modal-header .service-icon {
  width: 56px;
  height: 56px;
  margin: 0 0 16px 0;
}

.modal-header h3 {
  font-size: 1.6rem;
  color: var(--clr-white);
  margin-bottom: 6px;
}

.modal-header .modal-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

.modal-body {
  padding: 32px 40px 40px;
}

.modal-body h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 12px;
  letter-spacing: 0;
}

.modal-body p {
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.modal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.modal-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: var(--clr-bg-warm);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--clr-text);
  line-height: 1.4;
}

.modal-feature::before {
  content: '✓';
  color: var(--clr-teal);
  font-weight: 700;
  flex-shrink: 0;
}

.modal-cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--clr-border);
}

.modal-cta .btn {
  flex: 1;
  text-align: center;
}

@media (max-width: 600px) {
  .modal-content { margin: 10px; }
  .modal-header { padding: 24px 20px 20px; }
  .modal-body { padding: 20px; }
  .modal-features { grid-template-columns: 1fr; }
  .modal-cta { flex-direction: column; }
}
