/* ============================================================
   MEDEVAC PAGE STYLES — Extracted from medevac.html mockup
   Page-specific styles for the Air Ambulance page
   ============================================================ */

/* --- COMMON COMPONENTS --- */
.section-tag {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

/* --- HERO SECTION --- */
.hero {
  background-color: var(--navy);
  padding: 40px 24px 30px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 18, 44, 0.88);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.hero-content {
  padding-right: 24px;
}

.hero-content .section-tag {
  color: var(--orange-red);
}

.hero-title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 800;
}

.hero-title span {
  color: var(--orange-red);
}

.hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  max-width: 600px;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 10px;
  height: 10px;
  background-color: var(--orange-red);
  border-radius: 2px;
}

/* Hero Stats Section */
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  font-family: var(--font-display);
}

.stat-suffix {
  color: var(--vibrant-blue);
  margin-left: 2px;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

.hero-right-col {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}

.hero-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  color: var(--text-dark);
  position: relative;
  width: 100%;
}

.card-top-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(219, 56, 30, 0.08);
  color: var(--orange-red);
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  border: 1px solid rgba(219, 56, 30, 0.15);
}

.card-top-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  background-color: var(--orange-red);
  border-radius: 50%;
  margin-right: 6px;
  display: inline-block;
}

.hero-card h3 {
  font-size: 19px;
  margin-bottom: 16px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
}

.form-group {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.form-group input {
  padding: 10px 14px;
  border: 1px solid rgba(0, 34, 68, 0.15);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--vibrant-blue);
  box-shadow: 0 0 0 3px rgba(28, 117, 188, 0.1);
}

.hero-card .btn-primary {
  width: 100%;
  padding: 11px;
  font-size: 14.5px;
  margin-top: 6px;
}

.card-footer-phone {
  margin-top: 16px;
  text-align: center;
  border-top: 1px solid rgba(0, 34, 68, 0.08);
  padding-top: 12px;
}

.card-footer-phone span {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 6px;
}

.card-phone-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
}

.card-phone-num svg {
  width: 16px;
  height: 16px;
  fill: var(--vibrant-blue);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials {
  background-color: var(--navy);
  padding: 40px 24px;
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonials-header {
  margin-bottom: 0;
}

.testimonials-header .section-tag {
  color: rgba(255, 255, 255, 0.7);
}

.memories-header h2,
.testimonials-header h2,
.testimonials-header-wrap h2,
.testimonials h2,
.equipments-header h2,
.fleet-header h2,
.how-header h2,
.why-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  gap: 24px;
}

.google-rating-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.google-logo {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
  user-select: none;
}

.rating-info {
  display: flex;
  flex-direction: column;
}

.rating-info .stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #FBBC05;
  font-size: 14px;
}

.rating-info .score {
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  margin-left: 6px;
}

.rating-info .reviews {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  font-family: var(--font-body);
}

.slider-arrows {
  display: flex;
  gap: 12px;
}

.t-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.t-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.t-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background-color: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  min-height: 380px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-family: var(--font-display);
  margin-bottom: 24px;
}

.testimonial-meta .route {
  font-weight: 700;
  color: #ffffff;
}

.testimonial-meta .bullet {
  color: #e53e3e;
  font-size: 8px;
  display: flex;
  align-items: center;
}

.testimonial-meta .meta-item {
  font-weight: 500;
  color: #ffffff;
}

.testimonial-body {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 32px;
  font-family: var(--font-body);
}

.testimonial-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: none;
  padding-top: 0;
}

.testimonial-author h4 {
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.testimonial-author p {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.testimonial-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.testimonial-link:hover {
  text-decoration: underline;
}

/* --- MEMORIES SECTION --- */
.memories {
  background-color: var(--vibrant-blue);
  padding: 40px 0;
  color: var(--text-light);
}

.memories-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.memories-header .section-tag {
  color: rgba(255, 255, 255, 0.7);
}

.memories-header h2 {
  font-size: 36px;
  font-weight: 800;
}

.memories-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 20px;
}

.carousel-track.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.carousel-track.animate-marquee:hover {
  animation-play-state: paused;
}

.memory-slide {
  flex: 0 0 auto;
  height: 360px;
  aspect-ratio: 9 / 16;
  margin-right: 16px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.memory-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.memory-slide:hover img {
  transform: scale(1.05);
}

/* Slide Overlay & Zoom */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 10, 30, 0.75) 100%);
  opacity: 1;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  pointer-events: none;
}

.slide-caption {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  font-family: var(--font-display);
}

.slide-subcaption {
  margin-top: 8px;
}

.slide-subcaption-row1 {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.slide-subcaption-row2 {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
  font-family: var(--font-body);
  text-transform: uppercase;
}

.slide-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  opacity: 1;
  transition: opacity 0.3s;
}

/* --- LIGHTBOX --- */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 10, 30, 0.92);
  backdrop-filter: blur(10px);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  user-select: none;
}

#lightbox.open {
  display: flex;
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  border: none;
  background: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 9100;
  transition: var(--transition);
}

.lb-close:hover {
  transform: scale(1.1);
  color: var(--vibrant-blue);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lb-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lb-nav.prev {
  left: 24px;
}

.lb-nav.next {
  right: 24px;
}

.lb-inner {
  max-width: 90%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

#lb-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#lb-img.is-ready {
  opacity: 1;
}

.lb-caption {
  margin-top: 16px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.lb-counter {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-family: var(--font-body);
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* --- MEDICAL EQUIPMENTS SECTION --- */
.medical-equipments {
  background-color: var(--navy);
  padding: 60px 24px;
  color: var(--text-light);
}

.equipments-split-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 960px) {
  .equipments-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.equipments-left-col {
  display: flex;
  flex-direction: column;
}

.equipments-header {
  margin-bottom: 0;
}

.equipments-list-grid {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 14px 40px;
  margin-top: 32px;
  list-style: none;
  padding: 0;
  justify-content: start;
}

.equipments-list-grid li {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.equipments-list-grid li::before {
  content: '✓';
  color: var(--vibrant-blue);
  font-weight: 700;
  font-size: 15px;
}

.equipments-right-col {
  height: 420px;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.eq-column-col {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.eq-column-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: max-content;
  will-change: transform;
}

.eq-column-track.scroll-up {
  animation: verticalScrollUp 35s linear infinite;
}

.eq-column-track.scroll-down {
  animation: verticalScrollDown 35s linear infinite;
}

.eq-column-track:hover {
  animation-play-state: paused;
}

.equipment-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 140px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  cursor: pointer;
}

.equipment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.equipment-img-container {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.equipment-card h4 {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--vibrant-blue);
  line-height: 1.3;
}

@keyframes verticalScrollUp {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes verticalScrollDown {
  0% {
    transform: translate3d(0, -50%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* --- OUR FLEET SECTION --- */
.our-fleet {
  background: linear-gradient(180deg, #E4F3FF 0%, #FFFFFF 100%);
  padding: 40px 24px;
}

.fleet-container {
  max-width: 1280px;
  margin: 0 auto;
}

.fleet-header {
  margin-bottom: 48px;
}

.fleet-header .section-tag {
  color: var(--vibrant-blue);
}

.fleet-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}

.fleet-header p {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fleet-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fleet-card:hover img {
  transform: scale(1.05);
}

.fleet-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.fleet-tag-white {
  background: #ffffff;
  color: #000000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 4px;
}

.fleet-tag-blue {
  background: var(--vibrant-blue);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 4px;
}

.fleet-link {
  margin-left: auto;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --- HOW IT WORKS SECTION --- */
.how-it-works {
  background-color: #ffffff;
  padding: 60px 24px;
  border-top: 1px solid rgba(0, 34, 68, 0.05);
}

.how-container {
  max-width: 1280px;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 32px;
}

.how-header .section-tag {
  color: var(--vibrant-blue);
}

.how-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 8px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(0, 34, 68, 0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 36px;
}

.step {
  background: #ffffff;
  padding: 24px 20px;
  text-align: center;
  position: relative;
}

.step-n {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vibrant-blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-family: var(--font-display);
}

.step-ti {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.step-b {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  font-family: var(--font-body);
}

.step-arr {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--vibrant-blue);
  color: #ffffff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  font-weight: 700;
}

.step:last-child .step-arr {
  display: none;
}

.btn-outline-blue {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid var(--vibrant-blue);
  background: transparent;
  color: var(--vibrant-blue);
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-display);
  transition: var(--transition);
  text-align: center;
  display: block;
}

.btn-outline-blue:hover {
  background: rgba(28, 117, 188, 0.05);
  transform: translateY(-1px);
}

.hero-work-link-container {
  text-align: center;
  margin-top: 16px;
}

.hero-work-link {
  background: transparent;
  border: none;
  color: var(--vibrant-blue);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
  padding: 8px 16px;
  display: inline-block;
  text-decoration: none;
}

.hero-work-link:hover {
  color: #ffffff;
  transform: translateY(-1.5px);
}

@media (max-width: 960px) {
  .steps-row {
    grid-template-columns: 1fr;
    gap: 16px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }

  .step {
    border: 1px solid rgba(0, 34, 68, 0.08);
    border-radius: 12px;
    padding: 20px;
  }

  .step-arr {
    right: auto;
    left: 50%;
    bottom: -20px;
    top: auto;
    transform: translateX(-50%) rotate(90deg);
  }
}

/* --- WHY JHANKAR SECTION --- */
.why-jhankar {
  background: linear-gradient(180deg, #E4F3FF 0%, #FFFFFF 100%);
  padding: 40px 24px;
}

.why-container {
  max-width: 1280px;
  margin: 0 auto;
}

.why-header {
  margin-bottom: 48px;
}

.why-header .section-tag {
  color: var(--vibrant-blue);
}

.why-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.why-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 900px;
}

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

.why-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 28px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 34, 68, 0.02);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--vibrant-blue);
  box-shadow: 0 12px 30px rgba(0, 34, 68, 0.08);
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--navy);
  font-weight: 800;
}

.why-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- FAQ SECTION --- */
.faq {
  background: linear-gradient(180deg, #E4F3FF 0%, #FFFFFF 100%);
  padding: 40px 24px;
  border-top: 1px solid rgba(0, 34, 68, 0.05);
}

.faq-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.faq-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.faq-content-top .section-tag {
  color: var(--vibrant-blue);
}

.faq-content-top h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.faq-content-top p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.faq-call-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 30px;
  box-shadow: 0 10px 25px rgba(0, 34, 68, 0.05);
  border: 1px solid rgba(28, 117, 188, 0.1);
  max-width: 400px;
}

.faq-call-box span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}

.faq-call-box a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
}

.faq-call-box a svg {
  width: 22px;
  height: 22px;
  fill: var(--vibrant-blue);
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid rgba(0, 34, 68, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.accordion-header h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-muted);
  transition: var(--transition);
}

.accordion-icon::before {
  width: 12px;
  height: 2px;
}

.accordion-icon::after {
  width: 2px;
  height: 12px;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.accordion-content {
  padding-bottom: 24px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Active Accordion Item */
.accordion-item.active {
  border-color: rgba(28, 117, 188, 0.4);
  background-color: #f7fafc;
  box-shadow: 0 4px 15px rgba(0, 34, 68, 0.03);
}

.accordion-item.active .accordion-header h3 {
  color: var(--vibrant-blue);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-item.active .accordion-icon::before,
.accordion-item.active .accordion-icon::after {
  background-color: var(--vibrant-blue);
}

.accordion-item.active .accordion-body {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
}

/* --- TRUST TICKER BAR --- */
.trust-ticker-wrapper {
  background-color: var(--navy);
  width: 100%;
  overflow: hidden;
}

.trust-ticker-bar {
  padding: 16px 0;
  overflow: hidden;
  width: 100%;
  display: flex;
  background: #cb0000;
}

.trust-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: trustMarquee 90s linear infinite;
  padding-right: 48px;
}

.ticker-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-bar-item svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  flex-shrink: 0;
}

@keyframes trustMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 768px) {
  .trust-ticker-bar {
    padding: 12px 0;
  }

  .trust-track {
    gap: 32px;
    padding-right: 32px;
  }

  .ticker-bar-item {
    font-size: 12px;
  }

  .ticker-bar-item svg {
    width: 15px;
    height: 15px;
  }
}

/* --- MODAL DIALOG --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 34, 68, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #ffffff;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-dark);
}

/* --- TOAST SUCCESS NOTIFICATION --- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1a7a4a;
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.active {
  transform: translateY(0);
  opacity: 1;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    padding-right: 0;
  }

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

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

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

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

  .memories-slide {
    flex: 0 0 calc(25% - 12px);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

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

  .testimonials-slider {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .testimonials-slider::-webkit-scrollbar {
    display: none;
  }

  .testimonials-track {
    gap: 16px;
    transform: none !important;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-height: auto;
    scroll-snap-align: start;
    padding: 24px;
  }

  .testimonial-meta {
    flex-wrap: wrap;
    gap: 6px 8px;
  }

  .testimonial-body {
    font-size: 18px;
  }

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

  .equipments-left-col,
  .equipments-header,
  .equipments-right-col {
    width: 100%;
    min-width: 0;
  }

  .equipments-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    width: 100%;
  }

  .equipments-list-grid li {
    min-width: 0;
  }

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

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

  .memories-slide {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 34px 16px 24px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.12;
  }

  .testimonials {
    padding: 36px 16px;
  }

  .memories-header h2,
  .testimonials-header h2,
  .testimonials-header-wrap h2,
  .testimonials h2,
  .equipments-header h2,
  .fleet-header h2,
  .how-header h2,
  .why-header h2 {
    font-size: 28px !important;
  }

  .testimonials-controls {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .google-rating-box {
    padding: 10px 12px;
  }

  .slider-arrows {
    flex-shrink: 0;
  }

  .testimonial-card {
    padding: 22px;
  }

  .testimonial-footer {
    gap: 18px;
    align-items: flex-start;
  }

  .medical-equipments {
    padding: 48px 16px;
  }

  .equipments-header h2 {
    font-size: 28px !important;
  }

  .equipments-header p {
    max-width: 100% !important;
    font-size: 14px !important;
  }

  .equipments-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
  }

  .equipments-right-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    height: 360px;
  }

  .equipment-card {
    min-width: 0;
    padding: 10px 6px;
  }

  .equipment-img-container {
    height: 56px;
  }

  .equipment-card h4 {
    font-size: 11.5px;
    overflow-wrap: anywhere;
  }

  .equipments-slider {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .nav-right .btn-primary {
    display: none;
  }
}