/* MediGrow360 - Healthcare Digital Marketing Website */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Merriweather:ital,wght@0,300;0,400;1,400&display=swap');

/* CSS Reset & Variables */
:root {
  /* Aqua Breeze Color Palette */
  --clr-primary: #155E63;
  --clr-secondary: #0E2A47;
  --clr-accent: #FFD93D;
  --clr-accent-2: #FFAAA7;
  --clr-bg: #F9FBFA;
  --clr-surface: #FFFFFF;
  --clr-text: #2F3E46;
  --clr-muted: #6B7280;
  --clr-border: #E9ECEF;
  --clr-success: #10B981;
  --clr-warning: #F59E0B;
  --clr-error: #EF4444;
  
  /* Design Tokens */
  --radius: 16px;
  --shadow: 0 10px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 25px 50px rgba(0,0,0,.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Merriweather', serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Container */
  --container-max: 1200px;
  --container-padding: 1rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--clr-primary);
  color: white;
  padding: 8px;
  border-radius: 4px;
  text-decoration: none;
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-secondary);
  margin-bottom: var(--space-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
}

p {
  margin-bottom: var(--space-sm);
}

.lead {
  font-size: 1.25rem;
  color: var(--clr-muted);
  font-weight: 300;
}

.muted {
  color: var(--clr-muted);
  font-size: 0.875rem;
}

/* Links */
a {
  color: var(--clr-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus {
  color: var(--clr-secondary);
  text-decoration: underline;
}

/* Focus Management */
:focus {
  outline: 2px solid var(--clr-accent);
  outline-offset: 2px;
}

/* Header */
.header {
  background: var(--clr-surface);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--container-padding);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-primary);
  text-decoration: none;
}

.nav {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav__link {
  color: var(--clr-text);
  font-weight: 500;
  padding: var(--space-xs);
  border-radius: var(--space-xs);
  transition: var(--transition);
}

.nav__link:hover, .nav__link:focus {
  background: var(--clr-bg);
  text-decoration: none;
}

.nav__link--active {
  color: var(--clr-primary);
  font-weight: 600;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--clr-text);
  cursor: pointer;
}

@media (max-width: 768px) {
  .header {
    height: auto;
    min-height: 60px;
  }
  
  .header__container {
    padding: var(--space-sm) var(--space-md);
    min-height: 60px;
  }
  
  .logo {
    font-size: 1.25rem;
  }
  
  /* Hide Request Proposal button on mobile */
  .header .btn--primary {
    display: none;
  }
  
  .nav {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-surface);
    flex-direction: column;
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-top: 1px solid var(--clr-border);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  
  .nav--open {
    transform: translateY(-100%);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-toggle {
    display: block;
    padding: var(--space-xs);
    z-index: 1001;
  }
  
  /* Mobile-only CTA link */
  .nav__link--mobile-cta {
    display: block;
    background: var(--clr-primary);
    color: var(--clr-surface) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    margin-top: var(--space-md);
  }
  
  .nav__link--mobile-cta:hover {
    background: var(--clr-secondary);
    color: var(--clr-surface) !important;
  }
}

/* Hide mobile CTA on desktop */
@media (min-width: 769px) {
  .nav__link--mobile-cta {
    display: none;
  }
}

/* Main Content */
.main {
  margin-top: 80px; /* Account for fixed header */
  min-height: calc(100vh - 80px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 150px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  line-height: 1.4;
  word-wrap: break-word;
  hyphens: auto;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--clr-primary);
  color: white;
  border-color: var(--clr-primary);
}

.btn--primary:hover, .btn--primary:focus {
  background: var(--clr-secondary);
  border-color: var(--clr-secondary);
  text-decoration: none;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 42, 71, 0.4);
}

.btn--secondary {
  background: var(--clr-surface);
  color: var(--clr-primary);
  border-color: var(--clr-surface);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.btn--secondary:hover, .btn--secondary:focus {
  background: var(--clr-accent);
  color: var(--clr-secondary);
  border-color: var(--clr-accent);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 217, 61, 0.4);
}

.btn--accent {
  background: var(--clr-accent);
  color: var(--clr-secondary);
  border-color: var(--clr-accent);
  box-shadow: 0 4px 12px rgba(255, 217, 61, 0.3);
}

.btn--accent:hover, .btn--accent:focus {
  background: var(--clr-surface);
  border-color: var(--clr-surface);
  color: var(--clr-secondary);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4);
}

.btn--small {
  padding: var(--space-xs) var(--space-md);
  min-width: 120px;
}

.btn--large {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.125rem;
  min-width: 200px;
}

/* Enhanced visibility button for dark backgrounds */
.btn--outline-light {
  background: transparent;
  color: white;
  border-color: white;
  border-width: 2px;
}

.btn--outline-light:hover, .btn--outline-light:focus {
  background: white;
  color: var(--clr-secondary);
  border-color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

/* Coral accent button for variety */
.btn--coral {
  background: var(--clr-accent-2);
  color: var(--clr-secondary);
  border-color: var(--clr-accent-2);
}

.btn--coral:hover, .btn--coral:focus {
  background: var(--clr-secondary);
  color: white;
  border-color: var(--clr-secondary);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 170, 167, 0.4);
}

/* Hero Section - Default for Internal Pages */
.hero {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
  color: white;
  text-align: center;
  padding: var(--space-xxl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Hero Section with Video Background - Homepage Only */
.hero.hero--video {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
  background: none;
  padding: 0;
}

/* Video Background Container - Video Hero Only */
.hero--video .hero__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero--video .hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Fallback background for when video doesn't load - Video Hero Only */
.hero--video .hero__video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
}

/* Dark overlay for text visibility - Video Hero Only */
.hero--video .hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 94, 99, 0.7);
  background: linear-gradient(
    135deg,
    rgba(21, 94, 99, 0.8) 0%,
    rgba(14, 42, 71, 0.8) 50%,
    rgba(21, 94, 99, 0.7) 100%
  );
  z-index: 2;
}

/* Default Hero Content for Internal Pages */
.hero__title {
  color: white;
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Video Hero Content - Homepage Only */
.hero--video .hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: var(--space-xxl) 0;
}

.hero--video .hero__title {
  color: #FFFFFF !important;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.1;
}

.hero--video .hero__subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  font-weight: 500;
  line-height: 1.4;
}

/* Default Hero CTA Styles */
.hero__cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Video Hero CTA Styles - Homepage Only */
.hero--video .hero__cta {
  margin-top: var(--space-xl);
}

/* Enhanced buttons for video background - Homepage Only */
.hero--video .btn {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-shadow: none;
  font-weight: 600;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.hero--video .btn--accent {
  background: #FFD93D !important;
  color: #1F2937 !important;
  border-color: #FFD93D;
}

.hero--video .btn--accent:hover {
  background: #F59E0B !important;
  border-color: #F59E0B;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero--video .btn--secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero--video .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Mobile Responsiveness - Default Hero */
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.25rem;
  }
  
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile Responsiveness - Video Hero */
@media (max-width: 768px) {
  .hero--video {
    min-height: 100vh;
  }
  
  .hero--video .hero__video {
    /* Ensure video covers properly on mobile */
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero--video .hero__title {
    font-size: 2.5rem;
    padding: 0 var(--space-md);
  }
  
  .hero--video .hero__subtitle {
    font-size: 1.1rem;
    padding: 0 var(--space-md);
    max-width: 90%;
  }
  
  .hero--video .hero__cta {
    flex-direction: column;
    align-items: center;
    padding: 0 var(--space-md);
  }
  
  .hero--video .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero--video .hero__title {
    font-size: 2rem;
  }
  
  .hero--video .hero__subtitle {
    font-size: 1rem;
  }
  
  .hero--video .hero__overlay {
    background: rgba(21, 94, 99, 0.85);
  }
}

/* Performance optimizations for video */
@media (prefers-reduced-motion: reduce) {
  .hero--video .hero__video {
    animation: none;
  }
}

/* Sticky Call-to-Action Bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #155E63 0%, #0E2A47 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 3px solid #FFD93D;
}

.sticky-cta.show {
  transform: translateY(0);
}

.sticky-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.sticky-cta__text {
  color: white;
  flex: 1;
}

.sticky-cta__title {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #FFFFFF;
}

.sticky-cta__subtitle {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.sticky-cta__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn--sticky {
  padding: 0.75rem 1.5rem !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  background: #FFD93D !important;
  color: #1F2937 !important;
  border: none !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  white-space: nowrap;
}

.btn--sticky:hover {
  background: #F59E0B !important;
  transform: translateY(-1px) !important;
}

.sticky-cta__close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  line-height: 1;
}

.sticky-cta__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Mobile responsiveness for sticky CTA */
@media (max-width: 768px) {
  .sticky-cta__content {
    padding: 0.875rem 1rem;
    gap: 0.5rem;
  }
  
  .sticky-cta__text {
    flex: 1;
  }
  
  .sticky-cta__title {
    font-size: 0.95rem;
  }
  
  .sticky-cta__subtitle {
    font-size: 0.8rem;
  }
  
  .btn--sticky {
    padding: 0.625rem 1rem !important;
    font-size: 0.85rem !important;
  }
}

@media (max-width: 480px) {
  .sticky-cta__content {
    flex-direction: column;
    text-align: center;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  
  .sticky-cta__actions {
    width: 100%;
    justify-content: center;
  }
  
  .btn--sticky {
    flex: 1;
    max-width: 200px;
  }
}

/* Micro-Trust Badges */
.trust-badges-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-badge-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.875rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.trust-badge-inline i {
  color: #FFD93D;
  font-size: 1rem;
  flex-shrink: 0;
}

.trust-badge-inline span {
  white-space: nowrap;
}

/* Privacy Guarantee Text (for forms) */
.privacy-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6B7280;
  font-size: 0.8rem;
  margin-top: 0.75rem;
  justify-content: center;
}

.privacy-guarantee i {
  color: #10B981;
  font-size: 0.875rem;
}

/* Google Reviews Badge */
.reviews-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  justify-content: center;
}

.reviews-badge .stars {
  color: #FCD34D;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.reviews-badge .rating-text {
  font-weight: 600;
  color: #1F2937;
}

/* Mobile responsive trust badges */
@media (max-width: 768px) {
  .trust-badges-inline {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .trust-badge-inline {
    font-size: 0.8rem;
    gap: 0.375rem;
  }
  
  .trust-badge-inline i {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .trust-badges-inline {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }
  
  .trust-badge-inline {
    justify-content: center;
  }
}

/* Exit-Intent Popup */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.exit-popup.show {
  opacity: 1;
  visibility: visible;
}

.exit-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.exit-popup__content {
  position: relative;
  background: white;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8) translateY(30px);
  transition: transform 0.3s ease;
}

.exit-popup.show .exit-popup__content {
  transform: scale(1) translateY(0);
}

.exit-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6B7280;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.exit-popup__close:hover {
  background: #F3F4F6;
  color: #374151;
  transform: scale(1.1);
}

.exit-popup__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.exit-popup__header h3 {
  color: #1F2937;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.exit-popup__subtitle {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.exit-popup__offer {
  margin-bottom: 1.5rem;
}

.exit-popup__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.exit-popup__benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #374151;
  font-size: 0.9rem;
}

.exit-popup__benefits i {
  color: #10B981;
  font-size: 1rem;
  flex-shrink: 0;
}

.exit-popup__form-group {
  margin-bottom: 1rem;
}

.exit-popup__input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.exit-popup__input:focus {
  outline: none;
  border-color: #155E63;
  box-shadow: 0 0 0 3px rgba(21, 94, 99, 0.1);
}

.exit-popup__btn {
  width: 100%;
  padding: 1rem 1.5rem !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  background: #FFD93D !important;
  color: #1F2937 !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
  margin-bottom: 0.75rem;
}

.exit-popup__btn:hover {
  background: #F59E0B !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.exit-popup__trust {
  border-top: 1px solid #E5E7EB;
  padding-top: 1rem;
}

/* Mobile responsive popup */
@media (max-width: 768px) {
  .exit-popup__content {
    padding: 1.5rem;
    margin: 1rem;
    max-height: 85vh;
  }
  
  .exit-popup__header h3 {
    font-size: 1.25rem;
  }
  
  .exit-popup__subtitle {
    font-size: 0.9rem;
  }
  
  .exit-popup__benefits li {
    font-size: 0.85rem;
  }
  
  .exit-popup__input {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
}

/* Video Testimonials Section */
.section--video-testimonials {
  background: #F8F9FA;
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: var(--space-lg);
}

.video-testimonial {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.video-testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-testimonial__player {
  position: relative;
  cursor: pointer;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.video-thumbnail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-testimonial:hover .video-thumbnail__image {
  transform: scale(1.05);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 217, 61, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-play-button i {
  font-size: 1.5rem;
  color: #1F2937;
  margin-left: 3px; /* Slight adjustment for visual centering */
}

.video-testimonial:hover .video-play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: #FFD93D;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.video-testimonial__info {
  padding: 1.5rem;
}

.video-testimonial__title {
  color: #1F2937;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.video-testimonial__description {
  color: #6B7280;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.video-testimonial__author {
  color: #374151;
  font-size: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid #E5E7EB;
}

.video-testimonial__author strong {
  color: #155E63;
  font-weight: 600;
}

/* Video testimonial modal (for when clicked) */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-modal.show {
  opacity: 1;
  visibility: visible;
}

.video-modal__content {
  max-width: 800px;
  width: 90%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.video-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10001;
}

/* Mobile responsive video testimonials */
@media (max-width: 768px) {
  .video-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .video-thumbnail {
    height: 200px;
  }
  
  .video-play-button {
    width: 60px;
    height: 60px;
  }
  
  .video-play-button i {
    font-size: 1.25rem;
  }
  
  .video-testimonial__info {
    padding: 1.25rem;
  }
  
  .video-testimonial__title {
    font-size: 1.1rem;
  }
  
  .video-testimonial__description {
    font-size: 0.9rem;
  }
}

/* Mobile Responsive Button Fixes */
@media (max-width: 768px) {
  .btn {
    white-space: normal;
    min-width: auto;
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    line-height: 1.3;
    word-break: break-word;
    text-overflow: ellipsis;
  }
  
  .btn--large {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    min-width: auto;
  }
  
  .btn--small {
    padding: 0.625rem 0.875rem;
    font-size: 0.85rem;
    min-width: auto;
  }
  
  /* Card buttons specific */
  .card__link.btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
    line-height: 1.2;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Hero buttons */
  .hero__cta .btn {
    max-width: 280px;
    margin: 0.25rem;
  }
  
  /* Form buttons */
  .form .btn,
  form .btn {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .btn {
    font-size: 0.85rem;
    padding: 0.625rem 0.75rem;
  }
  
  .btn--large {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
  
  .card__link.btn {
    font-size: 0.8rem;
    padding: 0.625rem 0.5rem;
    line-height: 1.3;
  }
  
  /* Long button text handling */
  .btn[class*="Learn More"] {
    font-size: 0.75rem;
    padding: 0.5rem 0.25rem;
    line-height: 1.2;
  }
}

/* Sections */
.section {
  padding: var(--space-xxl) 0;
}

.section--alt {
  background: var(--clr-surface);
}

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

.section__title {
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--clr-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.card {
  background: var(--clr-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-lg);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(21, 94, 99, 0.15);
}

.card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

/* Medical Gradient Icons */
.card__icon--medical {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
  box-shadow: 0 8px 20px rgba(21, 94, 99, 0.3);
  transition: var(--transition);
}

.card__icon--medical:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(21, 94, 99, 0.4);
}

/* Different gradient variations for variety */
.card__icon--medical:nth-child(1) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.card__icon--medical:nth-child(2) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 8px 20px rgba(240, 147, 251, 0.3);
}

.card__icon--medical:nth-child(3) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
}

.card__icon--medical:nth-child(4) {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  box-shadow: 0 8px 20px rgba(67, 233, 123, 0.3);
}

.card__icon--medical:nth-child(5) {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  box-shadow: 0 8px 20px rgba(250, 112, 154, 0.3);
}

.card__icon--medical:nth-child(6) {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  box-shadow: 0 8px 20px rgba(168, 237, 234, 0.3);
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.card__content {
  flex: 1;
  margin-bottom: var(--space-md);
}

.card__link {
  margin-top: auto;
}

/* KPI Strip */
.kpi-strip {
  background: var(--clr-accent);
  padding: var(--space-lg) 0;
  text-align: center;
}

.kpi-strip__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.kpi-item {
  color: var(--clr-secondary);
}

.kpi-item__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.kpi-item__label {
  font-size: 0.875rem;
  font-weight: 600;
}

/* Testimonials */
.testimonial {
  background: var(--clr-surface);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial__content {
  font-style: italic;
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
}

.testimonial__author {
  font-weight: 600;
  color: var(--clr-primary);
}

.testimonial__role {
  font-size: 0.875rem;
  color: var(--clr-muted);
}

/* Forms */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--clr-secondary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid var(--clr-border);
  border-radius: var(--space-xs);
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--clr-primary);
  outline: none;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact-item__icon {
  width: 40px;
  height: 40px;
  background: var(--clr-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Sticky WhatsApp Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid white;
}

.whatsapp-sticky:hover {
  transform: scale(1.1) rotate(5deg);
  color: white;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #34E87A 0%, #25D366 50%, #128C7E 100%);
}

.whatsapp-sticky:active {
  transform: scale(1.05);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: var(--space-md) 0;
  background: var(--clr-bg);
}

.breadcrumbs__list {
  display: flex;
  list-style: none;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.breadcrumbs__item::after {
  content: ">";
  margin-left: var(--space-xs);
  color: var(--clr-muted);
}

.breadcrumbs__item:last-child::after {
  display: none;
}

.breadcrumbs__link {
  color: var(--clr-muted);
  font-size: 0.875rem;
}

.breadcrumbs__current {
  color: var(--clr-text);
  font-weight: 600;
  font-size: 0.875rem;
}

/* FAQ Accordion Styles - FIXED FUNCTIONALITY */
.faqs-grid {
  display: grid;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--clr-surface);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow);
}

.faq__question {
  margin: 0;
  font-size: inherit;
}

.faq__toggle {
  width: 100%;
  padding: var(--space-md);
  background: var(--clr-bg);
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  font-family: var(--font-heading);
}

.faq__toggle:hover,
.faq__toggle:focus {
  background: var(--clr-border);
  outline: none;
}

.faq__toggle[aria-expanded="true"] {
  background: var(--clr-primary);
  color: white;
}

.faq__icon {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--clr-primary);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(21, 94, 99, 0.1);
}

.faq__toggle[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

.faq__answer {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq__toggle[aria-expanded="true"] + .faq__answer {
  max-height: 200px;
  padding: var(--space-md);
}

.faq__answer p {
  margin: 0;
  color: var(--clr-text);
  line-height: 1.6;
}

.faq__content {
  padding: var(--space-md);
}

/* Case Studies Section - PROPER LIGHT TEXT ON DARK BACKGROUND */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.case-study {
  background: #FFFFFF !important;
  border: 2px solid #155E63 !important;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(21, 94, 99, 0.15) !important;
  overflow: hidden;
  transition: var(--transition);
  padding: 0 !important;
}

.case-study:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(21, 94, 99, 0.25) !important;
}

/* DARK HEADER WITH BRIGHT WHITE TEXT */
.case-study__header {
  background: linear-gradient(135deg, #155E63 0%, #0E2A47 100%) !important;
  padding: var(--space-md) !important;
  border-bottom: none !important;
}

/* FORCE BRIGHT WHITE TEXT ON DARK HEADER */
.case-study__title {
  color: #FFFFFF !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin: 0 0 8px 0 !important;
  font-family: var(--font-heading) !important;
  line-height: 1.3 !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
}

.case-study__specialty {
  color: #FFFFFF !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  margin: 0 !important;
  opacity: 0.95 !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
}

/* WHITE BACKGROUND WITH DARK TEXT FOR RESULTS */
.case-study__results {
  padding: var(--space-md) !important;
  background: #FFFFFF !important;
}

.result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-md) !important;
  padding: var(--space-sm) !important;
  background: #F8F9FA !important;
  border-radius: 8px !important;
  border: 1px solid #E5E7EB !important;
}

.result__before,
.result__after {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.result__label {
  color: #374151 !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px !important;
}

.result__number {
  color: #155E63 !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  font-family: var(--font-heading) !important;
  line-height: 1 !important;
  margin: 2px 0 !important;
}

.result__metric {
  color: #374151 !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

.result__arrow {
  color: #FFD93D !important;
  font-size: 1.5rem !important;
  font-weight: bold !important;
  margin: 0 var(--space-xs) !important;
}

.case-study__highlight {
  background: linear-gradient(135deg, #FFD93D 0%, #FFAAA7 100%) !important;
  color: #1F2937 !important;
  padding: var(--space-sm) var(--space-md) !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  text-align: center !important;
  margin: var(--space-sm) 0 var(--space-md) 0 !important;
  border: none !important;
}

.case-study .btn {
  margin: 0 var(--space-md) var(--space-md) var(--space-md) !important;
  display: inline-block !important;
  background: #155E63 !important;
  color: #FFFFFF !important;
  border: 2px solid #155E63 !important;
  padding: var(--space-sm) var(--space-md) !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: all 0.3s ease !important;
}

.case-study .btn:hover {
  background: #0E2A47 !important;
  border-color: #0E2A47 !important;
  transform: none !important;
}

/* Auto-Scrolling Logo Sections */
.client-logos,
.press-logos {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  mask: linear-gradient(
    90deg,
    transparent 0%,
    white 10%,
    white 90%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(
    90deg,
    transparent 0%,
    white 10%,
    white 90%,
    transparent 100%
  );
}

.client-logos::before,
.client-logos::after,
.press-logos::before,
.press-logos::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.client-logos::before,
.press-logos::before {
  left: 0;
  background: linear-gradient(to right, var(--clr-bg), transparent);
}

.client-logos::after,
.press-logos::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-bg), transparent);
}

.client-logos-track,
.press-logos-track {
  display: flex;
  animation: scroll-left 30s linear infinite;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
}

.client-logos-track:hover,
.press-logos-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo,
.press-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  transition: var(--transition);
  min-width: 160px;
  height: 80px;
}

.client-logo:hover,
.press-logo:hover {
  transform: scale(1.05);
}

.logo-placeholder,
.press-placeholder {
  width: 120px;
  height: 60px;
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.logo-placeholder::before,
.press-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Individual Logo Styles */
.logo-placeholder--apollo::after {
  content: 'Apollo Hospitals';
}

.logo-placeholder--fortis::after {
  content: 'Fortis Healthcare';
}

.logo-placeholder--max::after {
  content: 'Max Healthcare';
}

.logo-placeholder--manipal::after {
  content: 'Manipal Hospitals';
}

.logo-placeholder--narayana::after {
  content: 'Narayana Health';
}

.logo-placeholder--cloudnine::after {
  content: 'Cloudnine Hospitals';
}

.logo-placeholder--aster::after {
  content: 'Aster DM Healthcare';
}

.logo-placeholder--care::after {
  content: 'Care Hospitals';
}

.logo-placeholder--medanta::after {
  content: 'Medanta';
}

/* Press Logo Styles */
.press-placeholder--toi::after {
  content: 'Times of India';
}

.press-placeholder--et::after {
  content: 'Economic Times';
}

.press-placeholder--hitn::after {
  content: 'Healthcare IT News';
}

.press-placeholder--eh::after {
  content: 'Express Healthcare';
}

.press-placeholder--md::after {
  content: 'Medical Dialogues';
}

.press-placeholder--bs::after {
  content: 'Business Standard';
}

/* Responsive Design for Logo Sections */
@media (max-width: 768px) {
  .client-logos-track,
  .press-logos-track {
    animation-duration: 20s;
    gap: var(--space-lg);
  }
  
  .client-logo,
  .press-logo {
    min-width: 140px;
    height: 70px;
    padding: var(--space-sm);
  }
  
  .logo-placeholder,
  .press-placeholder {
    width: 100px;
    height: 50px;
    font-size: 0.65rem;
  }
}

/* Footer */
.footer {
  background: var(--clr-secondary);
  color: white;
  padding: var(--space-xl) 0 var(--space-lg) 0;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer__section h3 {
  color: white;
  margin-bottom: var(--space-md);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-xs);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer__links a:hover {
  color: white;
}

.footer__bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Performance & Loading */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy.loaded {
  opacity: 1;
}

/* ============================================================================
   TRUST / WHY CHOOSE US SECTION
   ============================================================================ */

.section--trust {
  background: linear-gradient(135deg, #F8FFFE 0%, #F0F9FF 100%);
  border-top: 1px solid rgba(21, 94, 99, 0.1);
  border-bottom: 1px solid rgba(21, 94, 99, 0.1);
  position: relative;
  overflow: hidden;
}

.section--trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23155E63' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xxl);
  align-items: start;
  margin-top: var(--space-xl);
}

/* Trust Features */
.trust-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.trust-feature {
  background: var(--clr-surface);
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(21, 94, 99, 0.1);
  transition: var(--transition);
  position: relative;
}

.trust-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--clr-primary);
}

.trust-feature__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  position: relative;
}

/* Trust Feature Icons */
.trust-feature__icon--hipaa {
  background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
  color: #2E7D32;
}

.trust-feature__icon--hipaa::before {
  content: '';
  width: 32px;
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%232E7D32' d='M12 2L4 5V11C4 16.55 7.84 21.74 12 23C16.16 21.74 20 16.55 20 11V5L12 2M10 17L6 13L7.41 11.59L10 14.17L16.59 7.58L18 9L10 17Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.trust-feature__icon--focus {
  background: linear-gradient(135deg, #E3F2FD 0%, #F1F8E9 100%);
  color: #1976D2;
}

.trust-feature__icon--focus::before {
  content: '';
  width: 32px;
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%231976D2' d='M12 2C13.1 2 14 2.9 14 4C14 5.1 13.1 6 12 6C10.9 6 10 5.1 10 4C10 2.9 10.9 2 12 2M21 9V7L15 1H5C3.89 1 3 1.89 3 3V21A2 2 0 0 0 5 23H19A2 2 0 0 0 21 21V9M19 9H14V4H5V21H19V9M7 11V13H17V11H7M7 15V17H14V15H7Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.trust-feature__icon--roi {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFFDE7 100%);
  color: #F57C00;
}

.trust-feature__icon--roi::before {
  content: '';
  width: 32px;
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23F57C00' d='M7 14L12 9L15 12L21 6V8H23V4H19V6H21L15 12L12 9L5 15L7 17M21 14V12H15V14H21M15 16V18H21V16H15M13 16V18H9L9 16H13M7 16V18H3V16H7Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.trust-feature__icon--results {
  background: linear-gradient(135deg, #F3E5F5 0%, #FCE4EC 100%);
  color: #7B1FA2;
}

.trust-feature__icon--results::before {
  content: '';
  width: 32px;
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%237B1FA2' d='M16 17V19H2V17S2 13 9 13 16 17 16 17M12.5 7.5A3.5 3.5 0 1 0 9 11A3.5 3.5 0 0 0 12.5 7.5M15.94 13A5.32 5.32 0 0 1 18 17V19H22V17S22 13.37 15.94 13M15 4A3.39 3.39 0 0 0 13.07 4.59A5 5 0 0 1 13.07 10.41A3.39 3.39 0 0 0 15 11A3.5 3.5 0 0 0 15 4Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.trust-feature__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.trust-feature__description {
  color: var(--clr-muted);
  line-height: 1.6;
  margin: 0;
}

/* Trust Badges Section */
.trust-badges {
  background: var(--clr-surface);
  padding: var(--space-xl);
  border-radius: var(--radius);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(21, 94, 99, 0.1);
  position: relative;
}

.trust-badges::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
}

.trust-badges__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-lg);
  text-align: center;
  font-family: var(--font-heading);
}

.badges-grid {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(21, 94, 99, 0.02);
  border-radius: var(--space-sm);
  border: 1px solid rgba(21, 94, 99, 0.1);
  transition: var(--transition);
}

.badge:hover {
  background: rgba(21, 94, 99, 0.05);
  border-color: var(--clr-primary);
}

.badge__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Badge Icons */
.badge__icon--hipaa {
  background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

.badge__icon--hipaa::before {
  content: '';
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.badge__icon--google {
  background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 75%, #EA4335 100%);
}

.badge__icon--google::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M44.5 20H24v8.5h11.8C34.7 33.9 30.1 37 24 37c-7.2 0-13-5.8-13-13s5.8-13 13-13c3.1 0 5.9 1.1 8.1 2.9l6.4-6.4C34.6 4.1 29.6 2 24 2 11.8 2 2 11.8 2 24s9.8 22 22 22c11 0 21-8 21-22 0-1.3-.2-2.7-.5-4z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.badge__icon--healthcare {
  background: linear-gradient(135deg, #E91E63 0%, #AD1457 100%);
}

.badge__icon--healthcare::before {
  content: '';
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M19,8H17V6A2,2 0 0,0 15,4H9A2,2 0 0,0 7,6V8H5A2,2 0 0,0 3,10V20A2,2 0 0,0 5,22H19A2,2 0 0,0 21,20V10A2,2 0 0,0 19,8M9,6H15V8H9V6M11,11H13V14H16V16H13V19H11V16H8V14H11V11Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.badge__icon--security {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.badge__icon--security::before {
  content: '';
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M12,1L3,5V11C3,16.55 6.84,21.74 12,23C17.16,21.74 21,16.55 21,11V5L12,1M12,7C13.4,7 14.8,8.6 14.8,10V11H16V18H8V11H9.2V10C9.2,8.6 10.6,7 12,7M12,8.2C11.2,8.2 10.4,8.7 10.4,10V11H13.6V10C13.6,8.7 12.8,8.2 12,8.2Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.badge__content {
  flex: 1;
}

.badge__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text);
  margin: 0 0 2px 0;
  font-family: var(--font-heading);
}

.badge__description {
  font-size: 0.875rem;
  color: var(--clr-muted);
  margin: 0;
}

/* Trust Stats */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(21, 94, 99, 0.1);
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-primary);
  font-family: var(--font-heading);
  margin-bottom: 4px;
  line-height: 1;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--clr-muted);
  font-weight: 500;
  line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .trust-badges {
    order: -1;
  }
}

@media (max-width: 768px) {
  .trust-features {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .trust-feature {
    padding: var(--space-md);
  }
  
  .trust-badges {
    padding: var(--space-lg);
  }
  
  .badges-grid {
    gap: var(--space-sm);
  }
  
  .badge {
    padding: var(--space-sm);
    gap: var(--space-sm);
  }
  
  .badge__icon {
    width: 40px;
    height: 40px;
  }
  
  .trust-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }
  
  .stat__number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section--trust {
    padding: var(--space-lg) 0;
  }
  
  .trust-grid {
    gap: var(--space-lg);
  }
  
  .trust-feature__icon {
    width: 50px;
    height: 50px;
  }
  
  .trust-feature__title {
    font-size: 1.125rem;
  }
  
  .trust-badges__title {
    font-size: 1.25rem;
  }
  
  .badge__title {
    font-size: 0.9rem;
  }
  
  .badge__description {
    font-size: 0.8rem;
  }
}

/* ============================================================================
   CLIENT LOGOS / PARTNER HOSPITALS SECTION
   ============================================================================ */

.section--clients {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
}

.client-logos {
  display: flex;
  gap: var(--space-xxl);
  align-items: center;
  margin-top: var(--space-xl);
  opacity: 0.7;
  overflow-x: auto;
  padding: var(--space-md) 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.client-logos::-webkit-scrollbar {
  height: 4px;
}

.client-logos::-webkit-scrollbar-track {
  background: rgba(21, 94, 99, 0.1);
  border-radius: 2px;
}

.client-logos::-webkit-scrollbar-thumb {
  background: var(--clr-primary);
  border-radius: 2px;
}

.client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  min-width: 150px;
  flex-shrink: 0;
  transition: var(--transition);
}

.client-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.logo-placeholder {
  width: 120px;
  height: 60px;
  background: linear-gradient(135deg, var(--clr-muted) 0%, var(--clr-border) 100%);
  border-radius: var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-placeholder::before {
  content: 'LOGO';
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Specific logo styles for variety */
.logo-placeholder--apollo { background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%); }
.logo-placeholder--fortis { background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%); }
.logo-placeholder--max { background: linear-gradient(135deg, #FF5722 0%, #FF8A65 100%); }
.logo-placeholder--manipal { background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%); }
.logo-placeholder--narayana { background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%); }
.logo-placeholder--cloudnine { background: linear-gradient(135deg, #00BCD4 0%, #4DD0E1 100%); }
.logo-placeholder--aster { background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%); }
.logo-placeholder--medanta { background: linear-gradient(135deg, #795548 0%, #A1887F 100%); }

/* ============================================================================
   CASE STUDIES PREVIEW SECTION
   ============================================================================ */

.section--case-studies {
  background: #F8F9FA;
  padding: var(--space-xxl) 0;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.case-study {
  background: #FFFFFF;
  padding: var(--space-xl);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #E5E7EB;
  transition: var(--transition);
  position: relative;
}

.case-study:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(21, 94, 99, 0.20);
  border-color: var(--clr-primary);
}

.case-study__header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid #E5E7EB;
}

.case-study__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.case-study__specialty {
  background: #155E63;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
}

.case-study__results {
  margin-bottom: var(--space-xl);
}

.result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  background: #F3F4F6;
  padding: var(--space-lg);
  border-radius: 8px;
  border: 1px solid #D1D5DB;
}

.result__before, .result__after {
  text-align: center;
  flex: 1;
}

.result__label {
  display: block;
  font-size: 0.85rem;
  color: #4B5563;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.result__number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

.result__after .result__number {
  color: #155E63;
}

.result__metric {
  display: block;
  font-size: 0.9rem;
  color: #4B5563;
  font-weight: 500;
}

.result__arrow {
  font-size: 1.5rem;
  color: var(--clr-primary);
  font-weight: bold;
  margin: 0 var(--space-sm);
}

.case-study__highlight {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--space-sm);
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
}

/* ============================================================================
   AWARDS & CERTIFICATIONS SECTION
   ============================================================================ */

.section--awards {
  background: var(--clr-surface);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.award {
  text-align: center;
  padding: var(--space-xl);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  background: var(--clr-surface);
}

.award:hover {
  transform: translateY(-4px);
  border-color: var(--clr-primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.award__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.award__icon--google-premier {
  background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 75%, #EA4335 100%);
}

.award__icon--google-premier::before {
  content: '';
  width: 40px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/%3E%3Cpath fill='white' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath fill='white' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/%3E%3Cpath fill='white' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.award__icon--healthcare-marketing {
  background: linear-gradient(135deg, #E91E63 0%, #AD1457 100%);
}

.award__icon--healthcare-marketing::before {
  content: '';
  width: 40px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M12 2L4 5V11C4 16.55 7.84 21.74 12 23C16.16 21.74 20 16.55 20 11V5L12 2M11 7H13V11H17V13H13V17H11V13H7V11H11V7Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.award__icon--hipaa-certified {
  background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

.award__icon--hipaa-certified::before {
  content: '';
  width: 40px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M12 2L4 5V11C4 16.55 7.84 21.74 12 23C16.16 21.74 20 16.55 20 11V5L12 2M10 17L6 13L7.41 11.59L10 14.17L16.59 7.58L18 9L10 17Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.award__icon--iso-certified {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.award__icon--iso-certified::before {
  content: '';
  width: 40px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M12,1L3,5V11C3,16.55 6.84,21.74 12,23C17.16,21.74 21,16.55 21,11V5L12,1M12,7C13.4,7 14.8,8.6 14.8,10V11H16V18H8V11H9.2V10C9.2,8.6 10.6,7 12,7M12,8.2C11.2,8.2 10.4,8.7 10.4,10V11H13.6V10C13.6,8.7 12.8,8.2 12,8.2Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.award__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.award__description {
  color: var(--clr-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.award__year {
  background: var(--clr-primary);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

/* ============================================================================
   TEAM SECTION
   ============================================================================ */

.section--team {
  background: linear-gradient(135deg, #F8FFFE 0%, #F0F9FF 100%);
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.team-member {
  background: var(--clr-surface);
  padding: var(--space-xl);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(21, 94, 99, 0.1);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.team-member__photo {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--clr-primary);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--clr-muted) 0%, var(--clr-border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.photo-placeholder::before {
  content: '👤';
  font-size: 3rem;
  opacity: 0.7;
}

.photo-placeholder--ceo { background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%); }
.photo-placeholder--cmo { background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%); }
.photo-placeholder--cto { background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%); }

.team-member__name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

.team-member__title {
  color: var(--clr-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.team-member__bio {
  color: var(--clr-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.team-member__credentials {
  background: rgba(21, 94, 99, 0.1);
  color: var(--clr-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

/* ============================================================================
   FAQS SECTION
   ============================================================================ */

.section--faqs {
  background: var(--clr-surface);
}

.faqs-grid {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--space-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--clr-primary);
}

.faq__question {
  margin: 0;
}

.faq__toggle {
  width: 100%;
  padding: var(--space-lg);
  background: var(--clr-surface);
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--clr-text);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
}

.faq__toggle:hover {
  background: rgba(21, 94, 99, 0.02);
}

.faq__toggle[aria-expanded="true"] {
  background: rgba(21, 94, 99, 0.05);
}

.faq__icon {
  font-size: 1.5rem;
  color: var(--clr-primary);
  transition: var(--transition);
  font-weight: 300;
}

.faq__toggle[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--space-lg);
  background: rgba(21, 94, 99, 0.02);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__toggle[aria-expanded="true"] + .faq__answer {
  max-height: 500px;
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.faq__answer p {
  color: var(--clr-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================================
   PRESS MENTIONS SECTION
   ============================================================================ */

.section--press {
  background: linear-gradient(135deg, #F8FFFE 0%, #F0F9FF 100%);
  border-top: 1px solid var(--clr-border);
}

.press-logos {
  display: flex;
  gap: var(--space-xxl);
  align-items: center;
  margin-top: var(--space-xl);
  opacity: 0.6;
  overflow-x: auto;
  padding: var(--space-md) 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.press-logos::-webkit-scrollbar {
  height: 4px;
}

.press-logos::-webkit-scrollbar-track {
  background: rgba(21, 94, 99, 0.1);
  border-radius: 2px;
}

.press-logos::-webkit-scrollbar-thumb {
  background: var(--clr-primary);
  border-radius: 2px;
}

.press-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  min-width: 140px;
  flex-shrink: 0;
  transition: var(--transition);
}

.press-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.press-placeholder {
  width: 100px;
  height: 40px;
  background: linear-gradient(135deg, var(--clr-muted) 0%, var(--clr-border) 100%);
  border-radius: var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.press-placeholder::before {
  content: 'PRESS';
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.press-placeholder--toi { background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%); }
.press-placeholder--et { background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%); }
.press-placeholder--hitn { background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%); }
.press-placeholder--eh { background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%); }
.press-placeholder--md { background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%); }
.press-placeholder--bs { background: linear-gradient(135deg, #795548 0%, #A1887F 100%); }

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .client-logos {
    gap: var(--space-lg);
  }
  
  .client-logo {
    min-width: 120px;
  }
  
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .case-study {
    padding: var(--space-lg);
  }
  
  .result {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .result__arrow {
    transform: rotate(90deg);
    margin: var(--space-xs) 0;
  }
  
  .awards-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .award {
    padding: var(--space-lg);
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .press-logos {
    gap: var(--space-lg);
  }
  
  .press-logo {
    min-width: 120px;
  }
  
  .faq__toggle {
    padding: var(--space-md);
    font-size: 1rem;
  }
  
  .faq__answer {
    padding: 0 var(--space-md) var(--space-md);
  }
}

@media (max-width: 480px) {
  .client-logos, .press-logos {
    gap: var(--space-md);
  }
  
  .client-logo, .press-logo {
    min-width: 100px;
  }
  
  .case-study__title {
    font-size: 1.25rem;
  }
  
  .result__number {
    font-size: 1.5rem;
  }
  
  .award__title {
    font-size: 1.125rem;
  }
  
  .team-member__name {
    font-size: 1.25rem;
  }
}

/* Print Styles */
@media print {
  .header, .whatsapp-sticky, .nav-toggle {
    display: none !important;
  }
  
  .main {
    margin-top: 0;
  }
  
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}