/* VIGEO Health - Clean Main CSS */

:root {
  --brand-red: #af2d2c;
  --brand-dark: #8b2322;
  --brand-warm: #b8453e;
  --cozy-peach: #ffeee6;
  --cozy-cream: #fefcfa;
  --healthcare-blue: #2563eb;
  --healthcare-teal: #0891b2;
  --healthcare-green: #059669;
  --trust-blue: #1e40af;
  --accent-light: #f0f9ff;
  --text-primary: #0a0a0a;
  --text-secondary: #2d3748;
  --text-muted: #4a5568;
  --bg-light: #f8fafc;
  --bg-gradient: linear-gradient(135deg, #fef7f0 0%, #ffffff 50%, #fdf4f0 100%);
  --border-color: #e2e8f0;
  --nav-height: 72px;
  --transition-speed: 0.3s;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --medical-accent: rgba(175, 45, 44, 0.03);
  --cozy-shadow: rgba(175, 45, 44, 0.08);
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Scroll offset for anchor links - accounts for fixed navbar */
/* Using negative margin to pull content higher */
#service-highlights {
  scroll-margin-top: -8vh;
}

/* Scroll to the eyebrow text (SIMPLE PROCESS, OUR DIFFERENCE) */
#how-to-get-started {
  scroll-margin-top: -3vh;
}

#why-choose-us {
  scroll-margin-top: -3vh !important;
}

#reviews,
#google-reviews,
#resource-hub {
  scroll-margin-top: -10vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

a {
  color: var(--brand-red);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--brand-dark);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation - Resource Center Style */
.main-navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  background: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  border-bottom: 1px solid #e0e0e0 !important;
  min-height: 60px !important;
  height: 60px !important;
  padding: 0 !important;
}

.main-navbar .navbar-inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 8px 20px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  gap: 8px !important;
  height: 60px !important;
  box-sizing: border-box !important;
}

.main-navbar .navbar-brand img {
  height: 48px !important;
  width: auto !important;
}

.main-navbar .desktop-nav {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
  list-style: none !important;
}

.main-navbar .nav-link {
  padding: 10px 16px !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
  color: var(--text-primary) !important;
  text-decoration: none !important;
  position: relative !important;
}

.main-navbar .nav-link::after {
  display: none !important;
}

.main-navbar .nav-link:hover {
  background: rgba(175, 45, 44, 0.05) !important;
  color: var(--brand-red) !important;
}

.main-navbar .nav-cta {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.main-navbar .provider-portal-link {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 8px 12px !important;
  background: transparent !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  color: #666 !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
}

.main-navbar .provider-portal-link:hover {
  background: #fafafa !important;
  color: var(--text-primary) !important;
}

.main-navbar .nav-phone-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 8px 16px !important;
  background: var(--brand-red) !important;
  color: white !important;
  border-radius: 25px !important;
  text-decoration: none !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(175, 45, 44, 0.15) !important;
}

.main-navbar .nav-phone-btn:hover {
  background: #9a2625 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 15px rgba(175, 45, 44, 0.25) !important;
  color: white !important;
}

.main-navbar .nav-phone-btn svg {
  width: 16px !important;
  height: 16px !important;
}

/* Hero Section - Cozy Healthcare Design */
.hero {
  margin-top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fef7f0 0%, #ffffff 50%, #fdf4f0 100%);
  position: relative;
  padding: calc(var(--nav-height) + 2rem) 0 4rem 0;
  overflow: hidden;
}

/* Diagonal curved graphics for cozy feel */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 80%;
  height: 120%;
  background: linear-gradient(145deg, rgba(175, 45, 44, 0.08) 0%, rgba(175, 45, 44, 0.04) 30%, transparent 60%);
  clip-path: ellipse(70% 60% at 20% 40%);
  transform: rotate(-15deg);
  z-index: 0;
  animation: gentle-sway 20s ease-in-out infinite;
  opacity: 0.8;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -15%;
  width: 70%;
  height: 100%;
  background: linear-gradient(225deg, rgba(175, 45, 44, 0.06) 0%, rgba(175, 45, 44, 0.03) 40%, transparent 70%);
  clip-path: ellipse(65% 80% at 80% 60%);
  transform: rotate(20deg);
  z-index: 0;
  animation: gentle-sway 25s ease-in-out infinite reverse;
  opacity: 0.6;
}

/* Additional diagonal wave overlays */
.hero .diagonal-wave-1 {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 60%;
  height: 40%;
  background: linear-gradient(160deg, rgba(175, 45, 44, 0.05) 0%, transparent 50%);
  clip-path: polygon(0% 20%, 100% 0%, 100% 60%, 0% 80%);
  transform: rotate(-8deg);
  z-index: 1;
  animation: gentle-sway 18s ease-in-out infinite;
  opacity: 0.7;
}

.hero .diagonal-wave-2 {
  content: '';
  position: absolute;
  bottom: 15%;
  right: -5%;
  width: 50%;
  height: 35%;
  background: linear-gradient(340deg, rgba(175, 45, 44, 0.04) 0%, transparent 60%);
  clip-path: polygon(40% 0%, 100% 20%, 100% 100%, 0% 80%);
  transform: rotate(12deg);
  z-index: 1;
  animation: gentle-sway 22s ease-in-out infinite reverse;
  opacity: 0.5;
}

@keyframes gentle-sway {
  0%, 100% { 
    transform: rotate(-15deg) translateY(0px);
  }
  25% { 
    transform: rotate(-12deg) translateY(-10px);
  }
  50% { 
    transform: rotate(-18deg) translateY(5px);
  }
  75% { 
    transform: rotate(-14deg) translateY(-5px);
  }
}

@keyframes morph-float {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 50% 30% 70% 40%;
  }
  25% { 
    transform: translate(20px, -15px) rotate(2deg) scale(1.02);
    border-radius: 40% 60% 50% 30%;
  }
  50% { 
    transform: translate(-10px, 25px) rotate(-1deg) scale(0.98);
    border-radius: 60% 40% 30% 70%;
  }
  75% { 
    transform: translate(15px, -20px) rotate(1deg) scale(1.01);
    border-radius: 30% 70% 40% 60%;
  }
}

@keyframes gentle-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10;
  background: rgba(255, 252, 249, 0.98);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 10px 30px rgba(175, 45, 44, 0.04);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: visible;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.hero-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1), 0 12px 35px rgba(175, 45, 44, 0.05);
}

/* Cozy curved overlays around container */
.hero-container::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 400px;
  height: 200px;
  background: linear-gradient(135deg, rgba(175, 45, 44, 0.06) 0%, rgba(175, 45, 44, 0.02) 60%, transparent 100%);
  clip-path: ellipse(80% 100% at 70% 50%);
  transform: rotate(-25deg);
  z-index: -1;
  animation: gentle-sway 28s ease-in-out infinite;
  opacity: 0.8;
}

.hero-container::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 350px;
  height: 250px;
  background: linear-gradient(315deg, rgba(175, 45, 44, 0.05) 0%, rgba(175, 45, 44, 0.02) 50%, transparent 80%);
  clip-path: ellipse(90% 80% at 30% 50%);
  transform: rotate(30deg);
  z-index: -1;
  animation: gentle-sway 32s ease-in-out infinite reverse;
  opacity: 0.6;
}

/* Content Side */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 2rem;
  position: relative;
  justify-content: center;
  height: 100%;
}

.hero-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
  margin: 0;
  margin-top: 0;
  letter-spacing: -0.02em;
}

.headline-accent {
  color: var(--brand-red);
  display: inline;
  margin-top: 0;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin: 0.3rem 0 0.5rem 0;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Trust Badge for logos */
.trust-badge {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

a.trust-badge {
  text-decoration: none;
}

.trust-badge:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.trust-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text-based trust badge for Senior Resource Partners */
.trust-badge-text {
  width: auto;
  min-width: 48px;
  padding: 0.25rem;
}

.srp-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--text-primary);
  text-align: center;
}

.srp-text span {
  display: block;
}

.hero-description {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 1rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-dark));
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-speed);
  box-shadow: 0 4px 20px rgba(175, 45, 44, 0.3);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-dark), #703028);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(175, 45, 44, 0.4);
  color: white;
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: white;
  border: 2px solid rgba(175, 45, 44, 0.2);
  border-radius: 12px;
  transition: all var(--transition-speed);
  text-decoration: none;
  color: var(--text-primary);
  white-space: nowrap;
  font-weight: 500;
}

.btn-secondary:hover {
  border-color: var(--brand-red);
  background: rgba(175, 45, 44, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(175, 45, 44, 0.15);
  color: var(--text-primary);
}

.btn-secondary svg {
  color: var(--brand-red);
  flex-shrink: 0;
}

.phone-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.phone-label {
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1;
}

.trust-indicators {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(175, 45, 44, 0.2);
}

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

.trust-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.trust-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.2;
}

/* Visual Side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
}

/* Cozy diagonal curves around photo */
.hero-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -60px;
  width: calc(100% + 120px);
  height: calc(100% + 80px);
  background: linear-gradient(145deg, rgba(175, 45, 44, 0.08) 0%, rgba(175, 45, 44, 0.04) 40%, transparent 80%);
  clip-path: ellipse(85% 70% at 30% 40%);
  transform: rotate(-20deg);
  z-index: 1;
  animation: gentle-sway 24s ease-in-out infinite;
  opacity: 0.7;
}

.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 60%;
  height: 80%;
  background: linear-gradient(320deg, rgba(175, 45, 44, 0.06) 0%, rgba(175, 45, 44, 0.02) 50%, transparent 70%);
  clip-path: ellipse(90% 60% at 70% 60%);
  transform: rotate(25deg);
  z-index: 1;
  animation: gentle-sway 26s ease-in-out infinite reverse;
  opacity: 0.5;
}

@keyframes morph-bg {
  0%, 100% { 
    border-radius: 40% 60% 50% 70%;
    transform: rotate(0deg);
  }
  25% { 
    border-radius: 60% 40% 30% 70%;
    transform: rotate(2deg);
  }
  50% { 
    border-radius: 50% 50% 80% 20%;
    transform: rotate(-1deg);
  }
  75% { 
    border-radius: 30% 70% 40% 60%;
    transform: rotate(1deg);
  }
}

@keyframes gentle-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 0.4; }
}

.image-container {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2), 0 15px 50px rgba(175, 45, 44, 0.12), 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
  max-width: 100%;
  transform: translateY(0) scale(1) rotate(0deg);
}

.image-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-dark), var(--brand-red));
  border-radius: 34px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover {
  transform: translateY(-15px) scale(1.04) rotate(3deg);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.25), 0 25px 60px rgba(175, 45, 44, 0.2), 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-container:hover::before {
  opacity: 0.3;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.02);
}

/* Cozy curved decorative accents */
.hero-visual .decorative-shape-1 {
  position: absolute;
  top: -5%;
  left: -20%;
  width: 200px;
  height: 100px;
  background: linear-gradient(160deg, rgba(175, 45, 44, 0.06) 0%, rgba(175, 45, 44, 0.02) 60%, transparent 100%);
  clip-path: ellipse(80% 100% at 50% 50%);
  transform: rotate(-35deg);
  z-index: 2;
  animation: gentle-sway 16s ease-in-out infinite;
  opacity: 0.7;
}

.hero-visual .decorative-shape-2 {
  position: absolute;
  bottom: -10%;
  right: -15%;
  width: 180px;
  height: 120px;
  background: linear-gradient(200deg, rgba(175, 45, 44, 0.05) 0%, rgba(175, 45, 44, 0.02) 50%, transparent 80%);
  clip-path: ellipse(75% 90% at 40% 60%);
  transform: rotate(40deg);
  z-index: 2;
  animation: gentle-sway 20s ease-in-out infinite reverse;
  opacity: 0.5;
}

/* Responsive Design */

/* Mobile Navigation */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: all var(--transition-speed);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  transform: translateX(100%);
  transition: transform var(--transition-speed);
  z-index: 999;
  display: none;
}

/* Cozy Section Styles - Following VH Brand Guide */
.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Service Highlights Section */
.section--service-highlights {
  background: var(--cozy-cream);
  position: relative;
}

.section--service-highlights::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60%;
  height: 140%;
  background: linear-gradient(145deg, rgba(175, 45, 44, 0.04) 0%, rgba(175, 45, 44, 0.02) 40%, transparent 80%);
  clip-path: ellipse(70% 80% at 60% 40%);
  transform: rotate(20deg);
  z-index: 1;
  animation: gentle-sway 25s ease-in-out infinite;
}

.section--service-highlights .services-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(175, 45, 44, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -30%;
  width: 60%;
  height: 40%;
  background: linear-gradient(135deg, rgba(175, 45, 44, 0.02) 0%, transparent 60%);
  clip-path: ellipse(80% 70% at 50% 50%);
  transform: rotate(-15deg);
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 60px rgba(175, 45, 44, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(175, 45, 44, 0.25);
  position: relative;
  z-index: 2;
}

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

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.4;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--brand-red);
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-red);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-link:hover {
  color: var(--brand-dark);
  transform: translateX(5px);
}

/* How to Get Started Section */
.section--get-started {
  background: linear-gradient(135deg, #fef7f0 0%, #ffffff 50%, #fdf4f0 100%);
  position: relative;
}

.section--get-started::before {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -20%;
  width: 70%;
  height: 120%;
  background: linear-gradient(225deg, rgba(175, 45, 44, 0.03) 0%, rgba(175, 45, 44, 0.01) 50%, transparent 80%);
  clip-path: ellipse(80% 60% at 30% 70%);
  transform: rotate(-25deg);
  z-index: 1;
  animation: gentle-sway 30s ease-in-out infinite reverse;
}

.get-started-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.process-step {
  background: rgba(255, 255, 255, 0.98);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(175, 45, 44, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-3px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 20px rgba(175, 45, 44, 0.3);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* CTA Section - Enhanced with Cozy Curved Design */
.get-started-cta {
  background: rgba(255, 252, 249, 0.98);
  padding: 3rem 2rem;
  border-radius: 32px;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 20px 60px rgba(175, 45, 44, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.get-started-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -30%;
  width: 80%;
  height: 180%;
  background: linear-gradient(135deg, rgba(175, 45, 44, 0.06) 0%, rgba(175, 45, 44, 0.03) 50%, transparent 80%);
  clip-path: ellipse(70% 85% at 30% 50%);
  transform: rotate(-20deg);
  z-index: -1;
  animation: gentle-sway 25s ease-in-out infinite;
}

.get-started-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -25%;
  width: 70%;
  height: 150%;
  background: linear-gradient(45deg, rgba(175, 45, 44, 0.04) 0%, transparent 70%);
  clip-path: ellipse(75% 80% at 70% 40%);
  transform: rotate(15deg);
  z-index: -1;
  animation: gentle-sway 20s ease-in-out infinite reverse;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cta-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.cta-divider {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
  padding: 0 1rem;
  background: rgba(255, 252, 249, 0.8);
  border-radius: 20px;
}

.cta-divider::before,
.cta-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(175, 45, 44, 0.3), transparent);
}

.cta-divider::before {
  right: 100%;
  margin-right: 1rem;
}

.cta-divider::after {
  left: 100%;
  margin-left: 1rem;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
}

.primary-btn {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-dark));
  color: white;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(175, 45, 44, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(175, 45, 44, 0.35);
  color: white;
}

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 2rem;
  border: 2px solid rgba(175, 45, 44, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.phone-cta:hover {
  background: rgba(175, 45, 44, 0.05);
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.resource-prompt {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(175, 45, 44, 0.08);
  position: relative;
  z-index: 2;
}

.resource-prompt p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.resource-prompt a {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.resource-prompt a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

/* Ensure all CTA content has proper z-index */
.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title,
.cta-description {
  position: relative;
  z-index: 2;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.section-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-top: 3rem;
  position: relative;
  display: block;
  width: 100%;
}

.section-eyebrow::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--brand-red);
  border-radius: 1px;
  opacity: 0.5;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-accent {
  color: var(--brand-red);
}

.section-lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.9;
}

/* ============================================================================
   TESTIMONIALS SECTION - Cozy Healthcare Design with Carousel
============================================================================ */

.section--reviews {
  background: linear-gradient(135deg, #fef7f0 0%, #ffffff 50%, #fdf4f0 100%);
  position: relative;
  overflow: hidden;
}

.section--reviews::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 80%;
  height: 160%;
  background: linear-gradient(160deg, rgba(175, 45, 44, 0.03) 0%, rgba(175, 45, 44, 0.01) 50%, transparent 80%);
  clip-path: ellipse(85% 70% at 30% 60%);
  transform: rotate(-25deg);
  z-index: 1;
  animation: gentle-sway 30s ease-in-out infinite;
}

.section--reviews::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -15%;
  width: 60%;
  height: 120%;
  background: linear-gradient(45deg, rgba(175, 45, 44, 0.04) 0%, transparent 60%);
  clip-path: ellipse(70% 80% at 70% 30%);
  transform: rotate(15deg);
  z-index: 1;
  animation: gentle-sway 25s ease-in-out infinite reverse;
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  z-index: 2;
}

.reviews-wrapper {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 252, 249, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(175, 45, 44, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.reviews-carousel {
  position: relative;
  height: 500px;
  overflow: hidden;
  padding: 1rem 0;
}

.reviews-track {
  display: flex;
  gap: 2rem;
  position: absolute;
  left: 0;
  height: 200px;
  width: max-content;
  will-change: transform;
}

.reviews-track:first-child {
  top: 1rem;
}

.reviews-track:nth-child(2) {
  top: 250px;
}

/* Individual Review Cards */
.review-card {
  flex: 0 0 380px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(175, 45, 44, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  height: 180px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(175, 45, 44, 0.18);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-warm));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(175, 45, 44, 0.25);
  flex-shrink: 0;
}

.reviewer-info h4,
.reviewer-info .reviewer-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.reviewer-info .reviewer-location,
.reviewer-info .review-date {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  color: #fbbf24;
  flex-shrink: 0;
}

.review-rating svg,
.star {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-secondary);
  margin: 0;
  font-style: italic;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.review-service {
  font-size: 0.875rem;
  color: var(--brand-red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================================
   RESOURCE HUB SECTION - Modern Cozy Design
============================================================================ */

.section--resource-hub {
  background: var(--cozy-cream);
  position: relative;
  overflow: hidden;
}

.section--resource-hub::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -10%;
  width: 70%;
  height: 150%;
  background: linear-gradient(135deg, rgba(175, 45, 44, 0.05) 0%, rgba(175, 45, 44, 0.02) 40%, transparent 70%);
  clip-path: ellipse(75% 85% at 70% 50%);
  transform: rotate(12deg);
  z-index: 1;
  animation: gentle-sway 28s ease-in-out infinite;
}

.resource-hub-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  z-index: 2;
}

.resource-hub-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.resource-featured {
  position: relative;
}

.resource-card-main {
  background: rgba(255, 252, 249, 0.95);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(175, 45, 44, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.resource-card-main::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(175, 45, 44, 0.08), rgba(175, 45, 44, 0.04));
  border-radius: 50%;
  z-index: -1;
  animation: gentle-spin 20s linear infinite;
}

.resource-card-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 80px rgba(175, 45, 44, 0.18);
}

.resource-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(175, 45, 44, 0.25);
}

.resource-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
}

.resource-card-main h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.resource-card-main p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.resource-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.topic-tag {
  background: rgba(175, 45, 44, 0.08);
  color: var(--brand-red);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(175, 45, 44, 0.12);
}

.resource-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-dark));
  color: white;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(175, 45, 44, 0.25);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(175, 45, 44, 0.35);
}

.resource-quick-links {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(175, 45, 44, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  height: fit-content;
}

.resource-quick-links h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.quick-links-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 252, 249, 0.8);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  border: 1px solid rgba(175, 45, 44, 0.08);
}

.quick-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(175, 45, 44, 0.15);
  box-shadow: 0 8px 24px rgba(175, 45, 44, 0.12);
}

.quick-link svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand-red);
  flex-shrink: 0;
}

.quick-link span {
  font-weight: 500;
  font-size: 0.95rem;
}

/* ============================================================================
   WHY CHOOSE VIGEO SECTION - Cozy Healthcare Design
============================================================================ */

.section--why-choose-us {
  background: linear-gradient(135deg, #fef7f0 0%, #ffffff 50%, #fdf4f0 100%);
  position: relative;
  overflow: hidden;
}

.section--why-choose-us::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -25%;
  width: 90%;
  height: 140%;
  background: linear-gradient(145deg, rgba(175, 45, 44, 0.04) 0%, rgba(175, 45, 44, 0.02) 50%, transparent 80%);
  clip-path: ellipse(80% 75% at 40% 60%);
  transform: rotate(-20deg);
  z-index: 1;
  animation: gentle-sway 32s ease-in-out infinite;
}

.section--why-choose-us::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 70%;
  height: 130%;
  background: linear-gradient(120deg, rgba(175, 45, 44, 0.03) 0%, transparent 70%);
  clip-path: ellipse(85% 70% at 60% 40%);
  transform: rotate(25deg);
  z-index: 1;
  animation: gentle-sway 28s ease-in-out infinite reverse;
}

.why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* New Grid-Based Layout with Hero Image */
.why-choose-hero {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 3rem;
  margin: 3rem 0;
  align-items: center;
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-choose-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.why-choose-item {
  background: rgba(255, 252, 249, 0.95);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(175, 45, 44, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.why-choose-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(175, 45, 44, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

/* Image Collage Section */
.why-choose-visual {
  position: relative;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(175, 45, 44, 0.05), rgba(175, 45, 44, 0.02));
  box-shadow: 0 20px 60px rgba(175, 45, 44, 0.15);
}

.collage-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.collage-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.collage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-image:first-child {
  grid-row: 1 / 3;
}

.collage-image:nth-child(2) {
  grid-row: 1;
}

.collage-image:nth-child(3) {
  grid-row: 2;
}

/* Adjust the lower image to show more of the top (head) */
.collage-image:nth-child(3) img {
  object-position: center top;
}

.stats-overlay {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255, 252, 249, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(175, 45, 44, 0.2);
  min-width: 100px;
}

.stats-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stats-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* New Icon and Content Styling */
.feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(175, 45, 44, 0.25);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: rotate(45deg);
  animation: shimmer 4s linear infinite;
}

.feature-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 2;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.why-choose-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  word-wrap: break-word;
}

.why-choose-item p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
  flex-grow: 1;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Responsive Design for Why Choose Section */
@media (max-width: 1200px) {
  .why-choose-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .why-choose-visual {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .why-choose-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-choose-item {
    padding: 1.5rem;
    min-height: auto;
  }
  
  .why-choose-item h3 {
    font-size: 1.15rem;
  }
  
  .why-choose-item p {
    font-size: 0.9rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .why-choose-container {
    padding: 3rem 1rem;
  }
  
  .why-choose-features {
    gap: 1rem;
  }
  
  .why-choose-item {
    padding: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}

/* CTA Section */
.why-choose-cta {
  background: rgba(255, 252, 249, 0.95);
  border-radius: 32px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(175, 45, 44, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
}

.why-choose-cta::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, rgba(175, 45, 44, 0.08), rgba(175, 45, 44, 0.04));
  border-radius: 50%;
  z-index: -1;
  animation: gentle-spin 15s linear infinite;
}

.why-choose-cta h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.why-choose-cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.why-choose-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-dark));
  color: white;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(175, 45, 44, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
}

.why-choose-cta .btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(175, 45, 44, 0.35);
  color: white;
}

/* ============================================================================
   PROVIDER PORTAL SECTION - Modern Healthcare Design
============================================================================ */

.provider-portal-section {
  background: var(--cozy-cream);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.provider-portal-section::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -10%;
  width: 60%;
  height: 130%;
  background: linear-gradient(135deg, rgba(175, 45, 44, 0.04) 0%, rgba(175, 45, 44, 0.02) 50%, transparent 80%);
  clip-path: ellipse(80% 70% at 30% 60%);
  transform: rotate(-10deg);
  z-index: 1;
  animation: gentle-sway 35s ease-in-out infinite;
}

.provider-portal-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.provider-portal-left h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.provider-portal-left .section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.provider-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.provider-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(175, 45, 44, 0.08);
  transition: all 0.3s ease;
}

.provider-benefit:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(175, 45, 44, 0.15);
  transform: translateX(8px);
}

.provider-benefit svg {
  stroke: var(--brand-red);
  flex-shrink: 0;
}

.provider-benefit span {
  font-weight: 500;
  color: var(--text-primary);
}

.portal-card {
  background: rgba(255, 252, 249, 0.95);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(175, 45, 44, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  text-align: center;
  position: relative;
}

.portal-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(175, 45, 44, 0.08), rgba(175, 45, 44, 0.04));
  border-radius: 50%;
  z-index: -1;
  animation: gentle-spin 20s linear infinite;
}

.portal-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 32px rgba(175, 45, 44, 0.25);
}

.portal-icon svg {
  stroke: white;
}

.portal-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.portal-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-provider-portal {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-dark));
  color: white;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(175, 45, 44, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 1.5rem;
}

.btn-provider-portal:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(175, 45, 44, 0.35);
  color: white;
}

.portal-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.portal-link {
  color: var(--brand-red);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.portal-link:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

/* ============================================================================
   RESPONSIVE STYLES FOR SECTION HEADERS
============================================================================ */

/* ============================================================================
   GLOBAL SECTION SPACING - Compact Layout
============================================================================ */
.section {
  padding: 60px 0;
  position: relative;
}

.section-header {
  margin-bottom: 40px;
}

/* Reduce spacing between consecutive sections */
.section + .section {
  padding-top: 50px;
}

/* Special spacing for hero section */
.hero + .section {
  padding-top: 60px;
}

