/* ==========================================================================
   VMEDO Ambulance Service India Page Styles
   Design System: Plus Jakarta Sans typography, VMEDO Red (#E30613) brand palette,
   glassmorphic cards, responsive grid layouts.
   ========================================================================== */

:root {
  --color-primary: #E30613;
  --color-primary-hover: #c40410;
  --color-primary-light: #FDECEC;
  --color-dark: #0F172A;
  --color-dark-subtle: #334155;
  --color-text-muted: #64748B;
  --color-bg-light: #F8FAFC;
  --color-white: #FFFFFF;
  --color-border: #E2E8F0;

  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1);
  --shadow-red: 0 8px 24px rgba(227, 6, 19, 0.25);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-main);
  color: var(--color-dark-subtle);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* --------------------------------------------------------------------------
   CONTAINER & SECTION UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(56px, 7vw, 104px) 0;
  position: relative;
}

.section-bg-light {
  background-color: var(--color-bg-light);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 3.9vw, 3.25rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 14px;
}

.section-lead {
  font-size: 16.5px;
  color: #64748B;
  line-height: 1.6;
  text-align: center;
}

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

/* --------------------------------------------------------------------------
   BUTTONS & BADGES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-red {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-red);
}

.btn-red:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(227, 6, 19, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-dark);
  border-color: var(--color-border);
}

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

.btn-sm {
  padding: 9px 18px;
  font-size: 13.5px;
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  padding: 40px 0 45px 0;
  background: linear-gradient(180deg, #FFF5F5 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.hero-title,
.hero h1 {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
  font-size: clamp(34px, 4vw, 54px) !important;
  font-weight: 600 !important;
  color: var(--color-dark);
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 18px;
}

.hero-lead {
  font-size: 17.5px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FEF2F2;
  border: 1.5px solid #FCA5A5;
  color: var(--color-primary);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.1);
}

.phone-badge i {
  font-size: 18px;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-white);
  background: var(--color-white);
}

.hero-img-card img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   KEY HIGHLIGHTS BANNER (3 TRUST CARDS)
   -------------------------------------------------------------------------- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.highlight-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(227, 6, 19, 0.3);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.highlight-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.highlight-body p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   OUR SERVICES GRID (6 CARDS IN A SINGLE SCROLLABLE LINE)
   -------------------------------------------------------------------------- */
.services-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 4px 20px 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.services-grid::-webkit-scrollbar {
  height: 6px;
}

.services-grid::-webkit-scrollbar-track {
  background: var(--color-border);
  border-radius: 99px;
}

.services-grid::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 99px;
}

.service-card {
  flex: 0 0 310px;
  min-width: 310px;
  scroll-snap-align: start;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(227, 6, 19, 0.3);
}

.service-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--color-primary);
}

.service-icon-box img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: var(--transition);
}

.service-card:hover .service-icon-box img {
  filter: brightness(0) invert(1);
}

.service-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-cta {
  width: 100%;
}

/* --------------------------------------------------------------------------
   HOW IT WORKS SECTION (3 STEPS)
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.step-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(227, 6, 19, 0.3);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(227, 6, 19, 0.3);
}

.step-icon-wrap {
  width: 76px;
  height: 76px;
  margin: 12px auto 20px auto;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.step-icon-wrap img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.step-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   OUR OTHER SERVICES SECTION (5 CARDS)
   -------------------------------------------------------------------------- */
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.other-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.other-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(227, 6, 19, 0.3);
}

.other-img-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 10px;
  border: 1px solid var(--color-border);
}

.other-img-wrap img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.other-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   GOOGLE REVIEWS SECTION
   -------------------------------------------------------------------------- */
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.google-logo-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.google-logo-badge img {
  height: 28px;
  width: auto;
}

.rating-stars {
  color: #F59E0B;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.review-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 14px;
}

.review-quote {
  font-size: 14.5px;
  color: var(--color-dark-subtle);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
}

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

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

/* --------------------------------------------------------------------------
   CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1E293B 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--color-white);
}

.cta-banner p {
  font-size: 16.5px;
  color: #94A3B8;
  max-width: 680px;
  margin: 0 auto 30px auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-copy {
    max-width: 100%;
  }

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

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

@media (max-width: 768px) {
  .hero {
    padding: 28px 0 36px 0;
  }

  .hero-title {
    font-size: clamp(1.85rem, 5.5vw, 2.5rem);
  }

  .hero-lead {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .steps-grid,
  .reviews-grid,
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .other-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cta-banner {
    padding: 32px 20px;
  }

  .cta-banner h2 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 13px 16px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }

  .service-card {
    flex: 0 0 85%;
    min-width: 270px;
    padding: 22px 18px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cta-actions .btn {
    width: 100%;
    padding: 13px 16px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }

  .highlight-card {
    padding: 16px 14px;
    gap: 12px;
  }

  .review-card {
    padding: 22px 18px;
  }
}