/* ==========================================================================
   PAWAN AMBULANCE SERVICE - STYLESHEET (AMBULANCE EMERGENCY THEME)
   Colors: Emergency Red, Medical Deep Navy Blue, Hospital White, Warning Gold, Life Green
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-red: #D32F2F;
  --primary-red-hover: #B71C1C;
  --primary-red-glow: rgba(211, 47, 47, 0.4);
  --primary-red-subtle: #FEF2F2;
  --navy-deep: #0A192F;
  --navy-mid: #0E2A47;
  --navy-light: #1E3A8A;
  --medical-cyan: #0284C7;
  --alert-amber: #D97706;
  --alert-yellow: #F59E0B;
  --life-green: #059669;
  --life-green-glow: rgba(5, 150, 105, 0.35);
  
  --bg-main: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-alt: #F1F5F9;
  --card-bg: #FFFFFF;
  --border-color: #E2E8F0;
  --border-highlight: #CBD5E1;
  
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-emergency: 0 0 25px rgba(211, 47, 47, 0.35);
  
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 75px; /* space for mobile sticky emergency bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ==========================================================================
   TOP EMERGENCY DISPATCH BAR
   ========================================================================== */
.top-emergency-bar {
  background: linear-gradient(90deg, #991B1B 0%, #D32F2F 50%, #0F2744 100%);
  color: #FFFFFF;
  padding: 6px 0;
  font-size: 0.825rem;
  font-weight: 500;
  position: relative;
  z-index: 100;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.live-dot {
  width: 7px;
  height: 7px;
  background-color: #4ADE80;
  border-radius: 50%;
  animation: live-pulse 1.4s infinite;
}

.top-location-badge {
  display: none;
  align-items: center;
  gap: 4px;
  color: #E2E8F0;
  font-size: 0.8rem;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .top-location-badge {
    display: inline-flex;
  }
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.top-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: #FEF08A;
  letter-spacing: 0.3px;
  transition: var(--transition-fast);
}

.top-phone-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.main-header {
  background: #FFFFFF;
  border-bottom: 2px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  gap: 8px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 1;
  min-width: 0;
  text-decoration: none;
}

.logo-icon-box {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary-red), #B71C1C);
  color: #FFFFFF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(211, 47, 47, 0.25);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-icon-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  to { left: 200%; }
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.1;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.brand-title span {
  color: var(--primary-red);
}

.brand-subtitle {
  font-size: 0.52rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .logo-icon-box {
    width: 24px;
    height: 24px;
    font-size: 12px;
    border-radius: 5px;
  }
  .brand-title {
    font-size: 0.82rem;
  }
  .brand-subtitle {
    display: none; /* Hide long subtitle on mobile to give ample breathing room */
  }
}

@media (min-width: 768px) {
  .logo-icon-box {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .brand-title {
    font-size: 1.05rem;
  }
  .brand-subtitle {
    font-size: 0.60rem;
  }
}

/* Nav Menu */
.nav-menu {
  display: none;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-deep);
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-red);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-red);
  border-radius: 2px;
}

/* ==========================================================================
   SERVICES DROPDOWN MEGA MENU
   ========================================================================== */
.nav-item {
  position: relative;
  list-style: none;
}

.nav-item > .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-item > .nav-link .nav-arrow {
  font-size: 0.65rem;
  transition: transform 0.22s ease;
  display: inline-block;
}

.nav-item:hover > .nav-link .nav-arrow,
.nav-item.open > .nav-link .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown Panel */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  min-width: 530px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(10, 25, 47, 0.2), 0 4px 14px rgba(0,0,0,0.08);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 1000;
  margin-top: 8px;
}

/* Arrow tip */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  border-left: 1.5px solid var(--border-color);
  border-top: 1.5px solid var(--border-color);
  z-index: 1;
}

/* Invisible bridge so mouse hover is never lost when moving cursor from nav-link to dropdown */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
  display: block;
}

/* Active / Hover states: both hover and .open class (for click) keep it open and interactive */
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown header */
.dropdown-header {
  padding: 10px 14px 8px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 6px;
}

.dropdown-header-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

/* 2-column grid of service links */
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 4px;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 5;
}

.dropdown-link:hover {
  background-color: var(--primary-red-subtle);
}

.dropdown-link-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  background: var(--bg-alt);
  transition: background-color 0.15s ease;
}

.dropdown-link:hover .dropdown-link-icon {
  background: rgba(211, 47, 47, 0.12);
}

.dropdown-link-text {
  display: flex;
  flex-direction: column;
}

.dropdown-link-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.2;
  transition: color 0.15s ease;
}

.dropdown-link:hover .dropdown-link-name {
  color: var(--primary-red);
}

.dropdown-link-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 1px;
}

/* Dropdown footer */
.dropdown-footer {
  padding: 8px 14px 10px;
  border-top: 1px solid var(--border-color);
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dropdown-footer-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-red);
  color: #FFFFFF;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.dropdown-footer-call:hover {
  background: #B71C1C;
  color: #FFFFFF;
}

.dropdown-footer-all {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-red);
  transition: color 0.15s ease;
  white-space: nowrap;
}

.dropdown-footer-all:hover {
  color: #B71C1C;
  text-decoration: underline;
}

/* Mobile drawer sub-menu */
.drawer-submenu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0 4px 16px;
  border-left: 2px solid var(--primary-red-subtle);
  margin-left: 16px;
  margin-top: 6px;
}

.drawer-submenu.open {
  display: flex;
}

.drawer-submenu a {
  font-size: 0.95rem !important;
  padding: 7px 10px !important;
  color: var(--text-muted) !important;
  border-bottom: none !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.drawer-submenu a:hover {
  color: var(--primary-red) !important;
  background: var(--primary-red-subtle) !important;
}

.drawer-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-deep);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border-color);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  text-align: left;
}

.drawer-toggle-btn:hover {
  background-color: var(--primary-red-subtle);
  color: var(--primary-red);
}

.drawer-toggle-arrow {
  font-size: 0.8rem;
  transition: transform 0.22s ease;
}

.drawer-toggle-btn.open .drawer-toggle-arrow {
  transform: rotate(180deg);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .main-header .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Primary SOS Button in Header */
.btn-emergency-call {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--primary-red) 0%, #B71C1C 100%);
  color: #FFFFFF;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.76rem;
  box-shadow: 0 3px 10px rgba(211, 47, 47, 0.35);
  animation: siren-pulse 2.2s infinite;
  border: 1.5px solid #FFFFFF;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

@media (min-width: 480px) {
  .btn-emergency-call {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (min-width: 768px) {
  .btn-emergency-call {
    font-size: 0.84rem;
    padding: 7px 14px;
  }
}

.btn-emergency-call:hover {
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-whatsapp-header {
  display: none;
  align-items: center;
  gap: 5px;
  background-color: #25D366;
  color: #FFFFFF;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

@media (min-width: 1100px) {
  .btn-whatsapp-header {
    display: inline-flex;
  }
}

.btn-whatsapp-header:hover {
  background-color: #1EBE5B;
  color: #FFFFFF;
}

/* Mobile Hamburger Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 36px;
  background: #F1F5F9;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  cursor: pointer;
  padding: 6px 7px;
  z-index: 101;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #E2E8F0;
  border-color: var(--primary-red);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background-color: var(--navy-deep);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

.drawer-links a {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-deep);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border-color);
}

.drawer-links a.active, .drawer-links a:hover {
  background-color: var(--primary-red-subtle);
  color: var(--primary-red);
}

.drawer-emergency-box {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   URGENT CONTINUOUS SCROLLING TICKER MARQUEE
   ========================================================================== */
.alert-ticker {
  background: #FFFBEB;
  border-bottom: 1.5px solid #FDE68A;
  padding: 6px 0;
  overflow: hidden;
  position: relative;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticker-badge {
  background: linear-gradient(135deg, var(--primary-red), #B71C1C);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ticker-marquee-wrapper {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  gap: 50px;
}

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

.ticker-marquee-text {
  font-size: 0.825rem;
  color: #92400E;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.ticker-call-btn {
  background-color: #D97706;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.ticker-call-btn:hover {
  background-color: #B45309;
  color: #FFFFFF;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-emergency {
  position: relative;
  background-color: var(--navy-deep);
  color: #FFFFFF;
  padding: 42px 0 52px;
  overflow: hidden;
}

/* Container for Animated Background Layers */
.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* Individual Background Slide with Ken Burns Effect */
.hero-bg-slide {
  position: absolute;
  top: -8%;
  left: -8%;
  width: 116%;
  height: 116%;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  will-change: transform, opacity;
}

/* Slide 1 - Hero Ambulance (0s - 6s in cycle) */
.hero-bg-slide.slide-1 {
  background-image: url('../images/hero-ambulance.jpg');
  animation: heroSlide1 18s ease-in-out infinite;
}

/* Slide 2 - Hero Banner Ambulance Action (6s - 12s in cycle) */
.hero-bg-slide.slide-2 {
  background-image: url('../images/hero-banner.jpg');
  animation: heroSlide2 18s ease-in-out infinite;
}

/* Slide 3 - Full Fleet Lineup (12s - 18s in cycle) */
.hero-bg-slide.slide-3 {
  background-image: url('../images/fleet.jpg');
  animation: heroSlide3 18s ease-in-out infinite;
}

@keyframes heroSlide1 {
  0% {
    opacity: 0;
    transform: scale(1) translate(0, 0);
  }
  6% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  38% {
    opacity: 0;
    transform: scale(1.1) translate(-1%, -0.5%);
  }
  100% {
    opacity: 0;
    transform: scale(1.1) translate(-1%, -0.5%);
  }
}

@keyframes heroSlide2 {
  0%, 30% {
    opacity: 0;
    transform: scale(1.08) translate(1%, 0);
  }
  36% {
    opacity: 1;
  }
  63% {
    opacity: 1;
  }
  71% {
    opacity: 0;
    transform: scale(1.18) translate(-1%, 0.8%);
  }
  100% {
    opacity: 0;
    transform: scale(1.18) translate(-1%, 0.8%);
  }
}

@keyframes heroSlide3 {
  0%, 63% {
    opacity: 0;
    transform: scale(1.12) translate(-0.5%, -0.5%);
  }
  69% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1) translate(0.5%, 0.5%);
  }
}

/* Dark Gradient Overlay for Maximum Text & Form Legibility */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.86) 45%, rgba(14, 42, 71, 0.65) 100%);
  z-index: 1;
}

@media (max-width: 991px) {
  .hero-bg-overlay {
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.94) 0%, rgba(10, 25, 47, 0.84) 60%, rgba(10, 25, 47, 0.92) 100%);
  }
}

/* Animated Emergency Siren Light Glow Effect */
.hero-siren-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: 
    radial-gradient(circle at 75% 35%, rgba(220, 38, 38, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 88% 60%, rgba(37, 99, 235, 0.20) 0%, transparent 45%);
  animation: sirenAmbientGlow 4s ease-in-out infinite alternate;
}

@keyframes sirenAmbientGlow {
  0% {
    opacity: 0.5;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.03);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.01);
  }
}

/* Cinematic Shimmer Sweep */
.hero-light-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  transform: skewX(-25deg);
  animation: lightSweepAnim 8s infinite ease-in-out;
  z-index: 1;
}

@keyframes lightSweepAnim {
  0%, 60% { left: -100%; }
  100% { left: 200%; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-content {
  z-index: 2;
}

/* ==========================================================================
   FULL-WIDTH AMBULANCE IMAGE BANNER (after hero section)
   ========================================================================== */
.ambulance-image-banner {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ambulance-image-banner {
    height: 420px;
  }
}

@media (min-width: 1200px) {
  .ambulance-image-banner {
    height: 520px;
  }
}

.ambulance-image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 8s ease;
}

.ambulance-image-banner:hover img {
  transform: scale(1.04);
}

.ambulance-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 25, 47, 0.88) 0%,
    rgba(10, 25, 47, 0.55) 50%,
    rgba(211, 47, 47, 0.25) 100%
  );
  display: flex;
  align-items: center;
}

.ambulance-banner-content {
  padding: 0 24px;
  max-width: 680px;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .ambulance-banner-content {
    padding: 0 60px;
  }
}

.banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211, 47, 47, 0.85);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  animation: siren-pulse 2s infinite;
}

.banner-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
  .banner-heading {
    font-size: 2.8rem;
  }
}

.banner-heading span {
  color: #EF4444;
  text-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.banner-subtext {
  font-size: 1rem;
  color: #CBD5E1;
  margin-bottom: 24px;
  line-height: 1.6;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-banner-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-red);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(211,47,47,0.5);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-banner-call:hover {
  background: #B71C1C;
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-banner-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-banner-wa:hover {
  background: #1EBE5B;
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* Ambulance Image Strip (3-image showcase) */
.ambulance-image-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 640px) {
  .ambulance-image-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.strip-item {
  position: relative;
  height: 220px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .strip-item {
    height: 280px;
  }
}

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

.strip-item:hover img {
  transform: scale(1.06);
}

.strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  pointer-events: none;
}

.strip-label {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.strip-sublabel {
  font-size: 0.78rem;
  color: #CBD5E1;
  margin-top: 2px;
}

.hero-ambulance-banner-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  margin-top: 18px;
}

.hero-ambulance-thumb {
  width: 65px;
  height: 45px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211, 47, 47, 0.25);
  border: 1px solid rgba(239, 68, 68, 0.5);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #FCA5A5;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-title .highlight-red {
  color: #EF4444;
  text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #CBD5E1;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-cta-box {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn-hero-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  color: #FFFFFF;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.45);
  border: 2px solid #FCA5A5;
  transition: all var(--transition-fast);
}

.btn-hero-call:hover {
  background: #B91C1C;
  transform: translateY(-2px);
  color: #FFFFFF;
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.6);
}

.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
}

.btn-hero-whatsapp:hover {
  background: #1EBE5B;
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* Hero Stats Row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #F8FAFC;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-top: 4px;
}

/* Hero Quick Booking Card */
.hero-booking-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--text-main);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.booking-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.booking-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-badge {
  background-color: var(--primary-red-subtle);
  color: var(--primary-red);
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: #F8FAFC;
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-red);
  background-color: #FFFFFF;
}

.btn-book-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-red) 0%, #B71C1C 100%);
  color: #FFFFFF;
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.35);
  transition: transform var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-book-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(211, 47, 47, 0.45);
}

.booking-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ==========================================================================
   URGENT CALL OUT TICKER / BAR
   ========================================================================== */
.alert-ticker {
  background-color: #FEF3C7;
  border-bottom: 1px solid #FDE68A;
  padding: 10px 0;
  font-size: 0.9rem;
  color: #92400E;
  font-weight: 600;
}

.ticker-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.ticker-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-call-btn {
  background-color: #D97706;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.ticker-call-btn:hover {
  background-color: #B45309;
  color: #FFFFFF;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section-padding {
  padding: 60px 0;
}

@media (min-width: 992px) {
  .section-padding {
    padding: 85px 0;
  }
}

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

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

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-red);
  background-color: var(--primary-red-subtle);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PREMIUM DARK SERVICES SECTION (NEW REDESIGN)
   ========================================================================== */

/* Section wrapper — dark navy background */
.services-section-dark {
  background: linear-gradient(135deg, #070F1E 0%, #0A1828 50%, #0D1F35 100%);
  padding: 75px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Subtle ambient glow background orb */
.services-section-dark::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(211, 47, 47, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Section Header */
.services-header-dark {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
}

.services-tag-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211, 47, 47, 0.18);
  border: 1px solid rgba(211, 47, 47, 0.4);
  color: #FCA5A5;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.services-title-dark {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .services-title-dark {
    font-size: 3rem;
  }
}

.services-title-dark span {
  color: #EF4444;
  text-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
}

.services-desc-dark {
  font-size: 1.05rem;
  color: #94A3B8;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid Layout */
.services-grid-dark {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .services-grid-dark {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid-dark {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Base Service Card */
.svc-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
  backdrop-filter: blur(6px);
}

/* Top color accent line */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  transition: height 0.28s ease;
}

.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.18);
}

.svc-card:hover::before {
  height: 4px;
}

/* Number Badge */
.svc-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  user-select: none;
  transition: color 0.28s;
}

.svc-card:hover .svc-num {
  color: rgba(255, 255, 255, 0.1);
}

/* Icon Circle */
.svc-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.svc-card:hover .svc-icon-circle {
  transform: scale(1.1) rotate(-4deg);
}

/* Hot Badge */
.svc-hot-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  width: fit-content;
}

/* Card name */
.svc-name {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: #F1F5F9;
  margin-bottom: 10px;
  line-height: 1.25;
}

/* Card description */
.svc-desc {
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Feature list */
.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}

.svc-list li {
  font-size: 0.82rem;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-list li::before {
  content: '▸';
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Card Footer */
.svc-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}

.svc-btn-call {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #FFFFFF;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.svc-btn-call:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  color: #FFFFFF;
}

.svc-btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #CBD5E1;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: all 0.18s ease;
}

.svc-btn-link:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
}

/* ─── Color Variants ─── */

/* RED — ICU */
.svc-red::before { background: linear-gradient(90deg, #EF4444, #DC2626); }
.svc-red .svc-icon-circle { background: rgba(239, 68, 68, 0.15); box-shadow: 0 0 20px rgba(239, 68, 68, 0.2); }
.svc-red .svc-list li::before { color: #EF4444; }
.svc-red .svc-hot-badge { background: rgba(239, 68, 68, 0.2); color: #FCA5A5; border: 1px solid rgba(239, 68, 68, 0.3); }
.svc-red .svc-btn-call { background: linear-gradient(135deg, #EF4444, #B91C1C); box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35); }
.svc-red:hover { box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15); }

/* ORANGE — Cardiac */
.svc-orange::before { background: linear-gradient(90deg, #F97316, #EA580C); }
.svc-orange .svc-icon-circle { background: rgba(249, 115, 22, 0.15); box-shadow: 0 0 20px rgba(249, 115, 22, 0.2); }
.svc-orange .svc-list li::before { color: #FB923C; }
.svc-orange .svc-btn-call { background: linear-gradient(135deg, #F97316, #C2410C); box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35); }
.svc-orange:hover { box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15); }

/* BLUE — Oxygen */
.svc-blue::before { background: linear-gradient(90deg, #3B82F6, #1D4ED8); }
.svc-blue .svc-icon-circle { background: rgba(59, 130, 246, 0.15); box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); }
.svc-blue .svc-list li::before { color: #60A5FA; }
.svc-blue .svc-btn-call { background: linear-gradient(135deg, #3B82F6, #1E40AF); box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35); }
.svc-blue:hover { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15); }

/* PURPLE — Dead Body */
.svc-purple::before { background: linear-gradient(90deg, #A855F7, #7C3AED); }
.svc-purple .svc-icon-circle { background: rgba(168, 85, 247, 0.15); box-shadow: 0 0 20px rgba(168, 85, 247, 0.2); }
.svc-purple .svc-list li::before { color: #C084FC; }
.svc-purple .svc-hot-badge { background: rgba(168, 85, 247, 0.2); color: #D8B4FE; border: 1px solid rgba(168, 85, 247, 0.3); }
.svc-purple .svc-btn-call { background: linear-gradient(135deg, #A855F7, #6D28D9); box-shadow: 0 4px 14px rgba(168, 85, 247, 0.35); }
.svc-purple:hover { box-shadow: 0 20px 40px rgba(168, 85, 247, 0.15); }

/* GREEN — BLS */
.svc-green::before { background: linear-gradient(90deg, #22C55E, #15803D); }
.svc-green .svc-icon-circle { background: rgba(34, 197, 94, 0.15); box-shadow: 0 0 20px rgba(34, 197, 94, 0.2); }
.svc-green .svc-list li::before { color: #4ADE80; }
.svc-green .svc-btn-call { background: linear-gradient(135deg, #22C55E, #15803D); box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35); }
.svc-green:hover { box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15); }

/* CYAN — Outstation */
.svc-cyan::before { background: linear-gradient(90deg, #06B6D4, #0284C7); }
.svc-cyan .svc-icon-circle { background: rgba(6, 182, 212, 0.15); box-shadow: 0 0 20px rgba(6, 182, 212, 0.2); }
.svc-cyan .svc-list li::before { color: #22D3EE; }
.svc-cyan .svc-btn-call { background: linear-gradient(135deg, #06B6D4, #0369A1); box-shadow: 0 4px 14px rgba(6, 182, 212, 0.35); }
.svc-cyan:hover { box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15); }

/* Bottom CTA Strip */
.services-cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.15) 0%, rgba(14, 42, 71, 0.6) 100%);
  border: 1px solid rgba(211, 47, 47, 0.3);
  border-radius: 16px;
  padding: 22px 28px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.services-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-strip-icon {
  font-size: 2.2rem;
  animation: siren-pulse 1.8s infinite;
  flex-shrink: 0;
}

.cta-strip-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
}

.cta-strip-sub {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-top: 3px;
}

.services-cta-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-cta-strip-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #EF4444, #B91C1C);
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
  transition: all 0.18s ease;
  white-space: nowrap;
  animation: siren-pulse 2.5s infinite;
}

.btn-cta-strip-call:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  color: #FFFFFF;
}

.btn-cta-strip-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #E2E8F0;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-cta-strip-all:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   SERVICES GRID (AMBULANCE CATEGORIES)
   ========================================================================== */

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

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}

.service-card.featured {
  border: 2px solid var(--primary-red);
}

.service-badge-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary-red);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-full);
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--primary-red-subtle);
  color: var(--primary-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

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

.service-features-list {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features-list li {
  font-size: 0.85rem;
  color: var(--navy-deep);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li::before {
  content: '✓';
  color: var(--life-green);
  font-weight: 800;
}

.service-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn-card-call {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--primary-red);
  color: #FFFFFF;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
}

.btn-card-call:hover {
  background: var(--primary-red-hover);
  color: #FFFFFF;
}

.btn-card-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F1F5F9;
  color: var(--navy-deep);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
}

.btn-card-more:hover {
  background: #E2E8F0;
}

/* ==========================================================================
   WHY CHOOSE PAWAN AMBULANCE (TRUST METRICS)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-box {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.feature-icon-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-light));
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
}

.feature-box h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FLEET & EQUIPMENT SHOWCASE
   ========================================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fleet-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.fleet-img-wrap {
  width: 100%;
  height: 220px;
  background-color: #E2E8F0;
  overflow: hidden;
  position: relative;
}

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

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

.fleet-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.fleet-body {
  padding: 22px;
}

.fleet-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.fleet-equipment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 18px;
}

.tag-pill {
  background: #F1F5F9;
  color: var(--navy-deep);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   DELHI / NCR COVERAGE HUBS
   ========================================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.location-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary-red);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.location-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.location-card-title {
  font-size: 1.2rem;
  color: var(--navy-deep);
}

.eta-badge {
  background: #FEF3C7;
  color: #B45309;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.hospital-tags {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.location-call-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.location-call-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   INTERACTIVE FARE ESTIMATOR CALCULATOR
   ========================================================================== */
.calc-container {
  background: linear-gradient(135deg, #0A192F 0%, #0E2A47 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-xl);
  max-width: 900px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .calc-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.calc-form .form-label {
  color: #E2E8F0;
}

.calc-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.calc-form .form-control option {
  background-color: var(--navy-deep);
  color: #FFFFFF;
}

.calc-result-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.result-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94A3B8;
  margin-bottom: 6px;
}

.result-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #4ADE80;
  margin-bottom: 10px;
}

.result-note {
  font-size: 0.775rem;
  color: #94A3B8;
  margin-bottom: 18px;
}

/* ==========================================================================
   SEO FAQ ACCORDION
   ========================================================================== */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  transition: transform var(--transition-fast);
  color: var(--primary-red);
}

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

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 20px 18px;
  max-height: 300px;
}

/* ==========================================================================
   BREADCRUMBS & INNER PAGE HEADERS WITH HERO IMAGE & CALL BUTTON
   ========================================================================== */
.page-banner {
  position: relative;
  background-color: #070F1E;
  background-image: 
    linear-gradient(90deg, rgba(7, 15, 30, 0.94) 0%, rgba(10, 25, 47, 0.88) 55%, rgba(10, 25, 47, 0.72) 100%),
    url('../images/hero-banner.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 55px 0 55px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--primary-red);
}

/* Specific page hero background overrides */
.page-banner.banner-gallery,
.page-banner.banner-reviews {
  background-image: linear-gradient(90deg, rgba(7, 15, 30, 0.94) 0%, rgba(10, 25, 47, 0.86) 55%, rgba(10, 25, 47, 0.68) 100%), url('../images/hero-banner.jpg');
}
.page-banner.banner-icu {
  background-image: linear-gradient(90deg, rgba(7, 15, 30, 0.94) 0%, rgba(10, 25, 47, 0.86) 55%, rgba(10, 25, 47, 0.68) 100%), url('../images/icu-interior.jpg');
}
.page-banner.banner-als,
.page-banner.banner-bls,
.page-banner.banner-emergency,
.page-banner.banner-oxygen {
  background-image: linear-gradient(90deg, rgba(7, 15, 30, 0.94) 0%, rgba(10, 25, 47, 0.86) 55%, rgba(10, 25, 47, 0.68) 100%), url('../images/hero-ambulance.jpg');
}
.page-banner.banner-neonatal {
  background-image: linear-gradient(90deg, rgba(7, 15, 30, 0.94) 0%, rgba(10, 25, 47, 0.86) 55%, rgba(10, 25, 47, 0.68) 100%), url('../images/neonatal-ambulance.jpg');
}
.page-banner.banner-outstation {
  background-image: linear-gradient(90deg, rgba(7, 15, 30, 0.94) 0%, rgba(10, 25, 47, 0.86) 55%, rgba(10, 25, 47, 0.68) 100%), url('../images/outstation-ambulance.jpg');
}
.page-banner.banner-about,
.page-banner.banner-services,
.page-banner.banner-locations {
  background-image: linear-gradient(90deg, rgba(7, 15, 30, 0.94) 0%, rgba(10, 25, 47, 0.86) 55%, rgba(10, 25, 47, 0.68) 100%), url('../images/fleet.jpg');
}

/* Ambient glow & tech pattern */
.page-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.28) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 1;
}

/* Banner Container Flex Layout */
.page-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.page-banner-content {
  flex: 1;
  max-width: 740px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 12px;
}

.breadcrumb-list a {
  color: #E2E8F0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
  color: #F87171;
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #64748B;
}

.page-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.18;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
  font-size: 1.05rem;
  color: #CBD5E1;
  margin-top: 10px;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Banner Emergency Call Action Box */
.page-banner-action {
  flex-shrink: 0;
}

.banner-cta-box {
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(211, 47, 47, 0.55);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 22px rgba(211, 47, 47, 0.22);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 275px;
}

.banner-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #FCA5A5;
  background: rgba(211, 47, 47, 0.22);
  border: 1px solid rgba(211, 47, 47, 0.4);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.btn-banner-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  color: #FFFFFF !important;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 18px rgba(211, 47, 47, 0.5);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-banner-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.7);
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.banner-call-icon {
  font-size: 1.4rem;
  animation: bannerPulse 1.8s infinite ease-in-out;
}

@keyframes bannerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.16); }
}

.banner-call-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.banner-call-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.92;
  font-weight: 700;
  line-height: 1;
}

.banner-call-num {
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.banner-cta-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.btn-banner-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.16);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #86EFAC !important;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.btn-banner-wa:hover {
  background: #25D366;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.banner-eta-tag {
  font-size: 0.75rem;
  color: #FCD34D;
  font-weight: 800;
}

@media (max-width: 860px) {
  .page-banner {
    padding: 42px 0 46px;
  }
  .page-banner-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .page-banner-action {
    width: 100%;
  }
  .banner-cta-box {
    width: 100%;
    min-width: 0;
  }
  .page-title {
    font-size: 1.85rem;
  }
}

/* ==========================================================================
   SEO CONTENT & ARTICLE BLOCKS
   ========================================================================== */
.content-body {
  font-size: 1rem;
  color: #334155;
  line-height: 1.75;
}

.content-body h2 {
  font-size: 1.7rem;
  margin: 32px 0 14px;
  color: var(--navy-deep);
}

.content-body h3 {
  font-size: 1.35rem;
  margin: 24px 0 12px;
  color: var(--navy-deep);
}

.content-body p {
  margin-bottom: 16px;
}

.content-body ul, .content-body ol {
  margin-bottom: 18px;
  padding-left: 24px;
}

.content-body li {
  margin-bottom: 8px;
}

.emergency-highlight-box {
  background: #FEF2F2;
  border-left: 4px solid var(--primary-red);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  color: #991B1B;
}

.emergency-highlight-box h4 {
  color: #991B1B;
  margin-bottom: 6px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* ==========================================================================
   FOOTER — REDESIGNED CREATIVE & EYE-CATCHING
   ========================================================================== */

.main-footer {
  background: linear-gradient(160deg, #0A0F1E 0%, #0D1B3E 50%, #0A0F1E 100%);
  color: #94A3B8;
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.main-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.07) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

/* ---------- Emergency Strip ---------- */
.footer-emergency-strip {
  background: linear-gradient(90deg, #B91C1C 0%, #DC2626 50%, #B91C1C 100%);
  padding: 12px 0;
}

.footer-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-strip-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-strip-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #FEF08A;
  border-radius: 50%;
  animation: pulse-dot 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

.footer-strip-text {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.footer-strip-right {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-strip-call,
.footer-strip-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  transition: all 0.2s;
}

.footer-strip-call {
  background: rgba(255,255,255,0.2);
  color: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.footer-strip-call:hover { background: rgba(255,255,255,0.35); }

.footer-strip-wa {
  background: #25D366;
  color: #FFFFFF;
}
.footer-strip-wa:hover { background: #128C7E; }

/* ---------- Wave Divider ---------- */
.footer-wave {
  line-height: 0;
  margin-bottom: -2px;
}
.footer-wave svg { display: block; width: 100%; }

/* ---------- Footer Body ---------- */
.footer-body {
  padding: 50px 0 40px;
  position: relative;
  overflow: hidden;
}

/* ---------- Trust Badges Row ---------- */
.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 20px;
  flex: 1 1 150px;
  min-width: 140px;
  max-width: 200px;
  transition: all 0.25s;
}

.footer-trust-badge:hover {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-2px);
}

.ftb-icon { font-size: 1.5rem; }

.ftb-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.ftb-text strong {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 800;
}

.ftb-text span {
  font-size: 0.72rem;
  color: #94A3B8;
}

/* ---------- Main Grid ---------- */
.footer-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 640px) {
  .footer-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid-new {
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: 40px;
  }
}

/* ---------- Brand Column ---------- */
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #DC2626, #B91C1C);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
}

.footer-brand-title {
  font-size: 1.35rem;
  color: #FFFFFF;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.footer-brand-title span { color: #F87171; }

.footer-brand-sub {
  font-size: 0.72rem;
  color: #64748B;
  margin-top: 2px;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #94A3B8;
  margin-bottom: 20px;
}

.footer-cta-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.footer-btn-call,
.footer-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  transition: all 0.22s;
}

.footer-btn-call {
  background: linear-gradient(135deg, #DC2626, #B91C1C);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
}
.footer-btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.footer-btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}
.footer-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer-star-row {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

/* ---------- Links Columns ---------- */
.footer-heading-new {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(220, 38, 38, 0.4);
}

.fh-icon { font-size: 0.95rem; }

.footer-links-new {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-new a {
  font-size: 0.875rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  padding: 2px 0;
}

.footer-links-new a::before {
  content: '→';
  font-size: 0.7rem;
  color: #DC2626;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s;
}

.footer-links-new a:hover {
  color: #FFFFFF;
  padding-left: 8px;
}

.footer-links-new a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Dispatch Card ---------- */
.footer-dispatch-card {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(185, 28, 28, 0.08));
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 18px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.fdc-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #4ADE80;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.fdc-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse-dot 1.2s ease-in-out infinite;
}

.fdc-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.fdc-number:hover { color: #F87171; }

.fdc-sub {
  font-size: 0.75rem;
  color: #64748B;
  margin-bottom: 14px;
}

.fdc-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFFFFF;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  width: 100%;
  justify-content: center;
  transition: all 0.22s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.fdc-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Address Box */
.footer-address-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fab-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #94A3B8;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 7px 10px;
}

/* ---------- Bottom Bar ---------- */
.footer-bottom-bar {
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0;
}

.fbb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.fbb-copy {
  font-size: 0.78rem;
  color: #475569;
}

.fbb-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.fbb-links a {
  font-size: 0.78rem;
  color: #475569;
  transition: color 0.2s;
}

.fbb-links a:hover { color: #F87171; }

/* ==========================================================================
   FOOTER ANIMATED PHOTO BACKGROUND (inside footer-body)
   ========================================================================== */

/* Each slide = one real photo — absolute inside footer-body */
.fha-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fha-fade 20s infinite;
  z-index: 0;
}

/* Stagger each slide by 5s (20s total ÷ 4 slides) */
.fha-s1 { background-image: url('../images/hero-ambulance.jpg');       animation-delay: 0s; }
.fha-s2 { background-image: url('../images/fleet.jpg');                animation-delay: 5s; }
.fha-s3 { background-image: url('../images/outstation-ambulance.jpg'); animation-delay: 10s; }
.fha-s4 { background-image: url('../images/hero-banner.jpg');          animation-delay: 15s; }

/* Crossfade + slow Ken Burns zoom */
@keyframes fha-fade {
  0%    { opacity: 0;   transform: scale(1.08); }
  8%    { opacity: 1;   transform: scale(1.05); }
  22%   { opacity: 1;   transform: scale(1.02); }
  30%   { opacity: 0;   transform: scale(1.00); }
  100%  { opacity: 0;   transform: scale(1.08); }
}

/* Heavy dark overlay so text stays readable over photos */
.fha-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 10, 25, 0.82) 0%,
    rgba(8, 14, 35, 0.88) 50%,
    rgba(4, 8, 20, 0.94) 100%
  );
  z-index: 1;
}

/* Legacy content class (unused now — kept for safety) */
.fha-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 0 20px;
}

/* Live pill badge */
.fha-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.85);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 5px 18px;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  backdrop-filter: blur(6px);
}

.fha-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #FEF08A;
  border-radius: 50%;
  animation: pulse-dot 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Tagline */
.fha-tagline {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
  .fha-tagline { font-size: 2rem; }
}

/* CTA button */
.fha-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #DC2626, #B91C1C);
  color: #FFFFFF;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
  transition: all 0.25s;
  text-decoration: none;
}

.fha-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 28px rgba(220, 38, 38, 0.65);
  color: #FFFFFF;
}

/* ==========================================================================
   MOBILE STICKY EMERGENCY BOTTOM BAR
   ========================================================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-top: 2px solid var(--primary-red);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: block;
  padding: 10px 16px;
  z-index: 990;
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.btn-mobile-call {
  background: linear-gradient(135deg, var(--primary-red) 0%, #B71C1C 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  width: 100%;
  text-decoration: none;
  animation: siren-pulse 2.2s infinite;
}

.btn-mobile-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Floating SOS Button on Desktop */
.floating-sos-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--primary-red) 0%, #B71C1C 100%);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.885rem;
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.45);
  z-index: 950;
  border: 2px solid #FFFFFF;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

@media (min-width: 992px) {
  .floating-sos-btn {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .floating-sos-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    animation: siren-pulse 2.2s infinite;
  }
}

.floating-sos-btn:hover {
  transform: scale(1.04);
  color: #FFFFFF;
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.modal-dialog {
  background: #FFFFFF;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-backdrop.active .modal-dialog {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #F1F5F9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
}

/* ==========================================================================
   CREATIVE AMBULANCE GALLERY & FULL GALLERY STYLES
   ========================================================================== */

/* Home Creative Gallery Grid */
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

@media (min-width: 1024px) {
  .home-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home-gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #0A192F;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(10, 25, 47, 0.2);
}

.home-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.home-gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 25, 47, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  opacity: 0.92;
  transition: opacity 0.25s ease;
}

.gallery-card-badge {
  align-self: flex-start;
  background: rgba(211, 47, 47, 0.9);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
}

.gallery-card-info {
  color: #FFFFFF;
}

.gallery-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 2px;
}

.gallery-card-sub {
  font-size: 0.75rem;
  color: #CBD5E1;
}

.gallery-zoom-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.25s ease;
}

.home-gallery-card:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Full Gallery Page Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  background: #FFFFFF;
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.filter-btn.active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.25);
}

/* Full Gallery Grid */
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}

@media (min-width: 1024px) {
  .full-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-caption {
  color: #FFFFFF;
  margin-top: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
  color: #FF6B6B;
}

/* ==========================================================================
   FLOATING CALL & WHATSAPP BUTTONS
   ========================================================================== */

.floating-cta-group {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
  animation: floatEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes floatEntrance {
  0% {
    opacity: 0;
    transform: translateY(25px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Shared button base */
.float-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 14px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.float-btn:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.32);
}

/* Call Button */
.float-btn-call {
  background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
  color: #FFFFFF !important;
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.45);
}

.float-btn-call:hover {
  background: linear-gradient(135deg, #EF5350 0%, #D32F2F 100%);
  box-shadow: 0 14px 32px rgba(229, 57, 53, 0.6);
  color: #FFFFFF !important;
}

/* WhatsApp Button */
.float-btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.float-btn-wa:hover {
  background: linear-gradient(135deg, #2EE574 0%, #1EB18B 100%);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
  color: #FFFFFF !important;
}

/* Icon wrapper */
.float-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.float-btn:hover .float-btn-icon {
  transform: scale(1.1);
}

.float-btn-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

/* Pulse ring on call icon */
.float-btn-icon.pulse-ring {
  position: relative;
}
.float-btn-icon.pulse-ring::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.65);
  animation: floatRingPulse 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes floatRingPulse {
  0%   { transform: scale(1);   opacity: 1; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Text wrapper */
.float-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.float-btn-label {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.9;
  font-weight: 700;
}

.float-btn-value {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.3px;
}

/* Mobile & Tablet: Compact round floating icons nicely placed above mobile bar */
@media (max-width: 991px) {
  .floating-cta-group {
    bottom: 75px;
    right: 16px;
    gap: 10px;
  }

  .float-btn {
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
  }

  .float-btn-icon {
    width: 26px;
    height: 26px;
    background: transparent;
  }

  .float-btn-icon svg {
    width: 24px;
    height: 24px;
  }

  .float-btn-text {
    display: none;
  }
}

/* ==========================================================================
   CREATIVE GOOGLE REVIEWS SECTION
   ========================================================================== */
.google-reviews-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 50%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
}

.google-reviews-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.google-reviews-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.06) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

/* Google Scorecard Banner */
.google-scorecard {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
}

.google-scorecard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4285F4 0%, #EA4335 30%, #FBBC05 60%, #34A853 100%);
}

.google-scorecard-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.google-brand-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 10px 18px;
  border-radius: 50px;
}

.google-brand-badge span {
  font-weight: 800;
  font-size: 1.05rem;
  color: #1E293B;
  letter-spacing: -0.2px;
}

.google-rating-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-rating-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1;
  font-family: var(--font-heading);
}

.google-rating-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.google-stars {
  display: flex;
  gap: 4px;
  color: #FBBC05;
}

.google-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.google-rating-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.google-rating-text strong {
  color: #059669;
  font-weight: 800;
}

.google-scorecard-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-google-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-google-primary {
  background: #1A73E8;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(26, 115, 232, 0.35);
}

.btn-google-primary:hover {
  background: #1557B0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.45);
}

.btn-google-outline {
  background: #FFFFFF;
  color: #D32F2F !important;
  border: 1.5px solid #D32F2F;
}

.btn-google-outline:hover {
  background: #FEF2F2;
  transform: translateY(-2px);
}

/* Category Filter Chips */
.reviews-filter-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 30px;
  scrollbar-width: thin;
}

.review-chip {
  padding: 8px 18px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.review-chip:hover {
  border-color: #94A3B8;
  color: var(--text-main);
}

.review-chip.active {
  background: var(--navy-deep);
  color: #FFFFFF;
  border-color: var(--navy-deep);
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.2);
}

/* Review Cards Grid */
.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.google-review-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.google-review-card:hover {
  transform: translateY(-5px);
  border-color: #CBD5E1;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.reviewer-info h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  line-height: 1.2;
}

.reviewer-badge {
  font-size: 0.76rem;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
  font-weight: 600;
}

.reviewer-badge .check-icon {
  color: #1A73E8;
  font-size: 0.85rem;
}

.review-service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.tag-red {
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
}

.tag-blue {
  background: #EFF6FF;
  color: #2563EB;
  border: 1px solid #BFDBFE;
}

.tag-green {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
}

.tag-purple {
  background: #F5F3FF;
  color: #7C3AED;
  border: 1px solid #DDD6FE;
}

.tag-amber {
  background: #FFFBEB;
  color: #D97706;
  border: 1px solid #FDE68A;
}

.review-card-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.review-stars-icons {
  display: flex;
  gap: 3px;
  color: #FBBC05;
}

.review-stars-icons svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.review-date {
  font-size: 0.78rem;
  color: #94A3B8;
  font-weight: 500;
}

.review-card-body {
  font-size: 0.94rem;
  color: #334155;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 18px;
}

.review-card-body strong {
  color: #0F172A;
  background: #FEF08A;
  padding: 1px 4px;
  border-radius: 3px;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
  font-size: 0.8rem;
  color: #64748B;
  font-weight: 600;
}

.verified-location {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Stats Ribbon */
.google-stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.stat-item {
  text-align: center;
  padding: 8px;
  border-right: 1px solid #E2E8F0;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--navy-deep);
  font-family: var(--font-heading);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .google-scorecard {
    padding: 22px;
  }
  .google-stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item {
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 14px;
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
    padding-top: 14px;
  }
}

@media (max-width: 600px) {
  .google-scorecard-left {
    flex-direction: column;
    align-items: flex-start;
  }
  .google-reviews-grid {
    grid-template-columns: 1fr;
  }
  .google-scorecard-actions {
    width: 100%;
  }
  .btn-google-action {
    width: 100%;
    justify-content: center;
  }
  .google-stats-ribbon {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid #E2E8F0;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}


/* ==========================================================================
   USP TRUST BAR — Google Ads Quality Score Section
   ========================================================================== */
.usp-trust-bar {
  background: linear-gradient(135deg, #0A192F 0%, #0E2A47 100%);
  border-top: 3px solid var(--primary-red);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  position: relative;
  z-index: 2;
}
.usp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.usp-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s ease;
}
.usp-trust-item:last-child { border-right: none; }
.usp-trust-item:hover { background: rgba(255,255,255,0.05); }
.usp-trust-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.usp-trust-content { display: flex; flex-direction: column; gap: 2px; }
.usp-trust-title { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: #FFFFFF; line-height: 1.2; }
.usp-trust-sub { font-size: 0.75rem; color: #94A3B8; font-weight: 400; }
.usp-star-rating .usp-trust-title { color: #FCD34D; }
@media (max-width: 900px) {
  .usp-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-trust-item { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .usp-trust-item:nth-child(2) { border-right: none; }
  .usp-trust-item:nth-child(3), .usp-trust-item:nth-child(4) { border-bottom: none; }
}
@media (max-width: 500px) {
  .usp-trust-grid { grid-template-columns: 1fr; }
  .usp-trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .usp-trust-item:last-child { border-bottom: none; }
}

/* ==========================================================================
   AD LANDING PAGE — ambulance-ad-landing.html
   ========================================================================== */
.ad-sticky-bar { position:fixed; top:0; left:0; right:0; z-index:1000; background:var(--primary-red); display:flex; align-items:center; justify-content:space-between; padding:10px 20px; box-shadow:0 2px 12px rgba(0,0,0,.25); }
.ad-sticky-logo { font-family:var(--font-heading); font-weight:800; font-size:1rem; color:#fff; }
.ad-sticky-cta { display:inline-flex; align-items:center; gap:6px; background:#fff; color:var(--primary-red); font-family:var(--font-heading); font-weight:800; font-size:1rem; padding:8px 18px; border-radius:50px; text-decoration:none; }
.ad-hero { margin-top:55px; background:#0A192F; padding:60px 20px 65px; position:relative; overflow:hidden; }
.ad-hero .container { position:relative; z-index:2; }
.ad-hero-badge { display:inline-block; background:rgba(211,47,47,.25); border:1px solid rgba(211,47,47,.5); color:#FCA5A5; font-size:.8rem; font-weight:700; padding:5px 14px; border-radius:50px; letter-spacing:.5px; margin-bottom:16px; text-transform:uppercase; }
.ad-hero h1 { font-family:var(--font-heading); font-size:clamp(1.6rem,4vw,2.8rem); font-weight:900; color:#fff; line-height:1.2; margin:0 0 14px; }
.ad-hero h1 span { color:#FCA5A5; }
.ad-hero-sub { color:#94A3B8; font-size:1rem; max-width:580px; margin:0 auto 28px; }
.ad-cta-row { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.ad-btn-call { display:inline-flex; align-items:center; gap:8px; background:var(--primary-red); color:#fff; font-family:var(--font-heading); font-weight:800; font-size:1.1rem; padding:14px 28px; border-radius:8px; text-decoration:none; box-shadow:0 4px 20px rgba(211,47,47,.5); animation:pulse-call 2s infinite; }
@keyframes pulse-call { 0%,100%{box-shadow:0 4px 20px rgba(211,47,47,.5)}50%{box-shadow:0 4px 30px rgba(211,47,47,.8)} }
.ad-btn-wa { display:inline-flex; align-items:center; gap:8px; background:#22C55E; color:#fff; font-family:var(--font-heading); font-weight:700; font-size:1rem; padding:14px 24px; border-radius:8px; text-decoration:none; }
.ad-hero-rating { margin-top:20px; display:flex; align-items:center; justify-content:center; gap:8px; color:#FCD34D; font-size:1.1rem; font-weight:700; }
.ad-hero-rating span { color:#94A3B8; font-size:.85rem; font-weight:400; }
.ad-usp-strip { background:#F8FAFC; border-top:1px solid #E2E8F0; border-bottom:1px solid #E2E8F0; padding:16px 20px; }
.ad-usp-row { display:flex; justify-content:center; gap:32px; flex-wrap:wrap; max-width:800px; margin:0 auto; }
.ad-usp-pill { display:flex; align-items:center; gap:7px; font-size:.875rem; font-weight:600; color:#1E293B; }
.ad-form-section { padding:50px 20px; background:#fff; }
.ad-form-wrapper { max-width:560px; margin:0 auto; background:#fff; border:2px solid #E2E8F0; border-radius:16px; padding:36px; box-shadow:0 8px 40px rgba(0,0,0,.08); }
.ad-form-title { font-family:var(--font-heading); font-size:1.5rem; font-weight:800; color:#0F172A; margin:0 0 6px; text-align:center; }
.ad-form-subtitle { text-align:center; color:#64748B; font-size:.875rem; margin:0 0 24px; }
.ad-form-section .form-control { border:1.5px solid #E2E8F0; border-radius:8px; padding:12px 14px; font-size:1rem; width:100%; box-sizing:border-box; transition:border-color .2s; outline:none; }
.ad-form-section .form-control:focus { border-color:var(--primary-red); }
.ad-form-section .form-group { margin-bottom:16px; }
.ad-form-section .form-label { display:block; font-size:.85rem; font-weight:600; color:#374151; margin-bottom:6px; }
.ad-submit-btn { width:100%; background:var(--primary-red); color:#fff; border:none; border-radius:8px; padding:16px; font-family:var(--font-heading); font-size:1.1rem; font-weight:800; cursor:pointer; display:flex; align-items:center; justify-content:center; gap:8px; box-shadow:0 4px 16px rgba(211,47,47,.4); transition:background .2s,box-shadow .2s; margin-top:6px; }
.ad-submit-btn:hover { background:var(--primary-red-hover); box-shadow:0 6px 24px rgba(211,47,47,.5); }
.ad-form-note { text-align:center; color:#64748B; font-size:.78rem; margin-top:10px; }
.ad-services { padding:40px 20px; background:#F8FAFC; }
.ad-services-title,.ad-reviews-title,.ad-faq-title { text-align:center; font-family:var(--font-heading); font-size:1.4rem; font-weight:800; color:#0F172A; margin:0 0 24px; }
.ad-services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; max-width:800px; margin:0 auto; }
.ad-service-chip { background:#fff; border:1.5px solid #E2E8F0; border-radius:10px; padding:16px; display:flex; align-items:center; gap:10px; font-size:.875rem; font-weight:600; color:#1E293B; }
.ad-service-chip-icon { font-size:1.4rem; }
.ad-reviews { padding:40px 20px; background:#fff; }
.ad-reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; max-width:900px; margin:0 auto; }
.ad-review-card { background:#F8FAFC; border:1px solid #E2E8F0; border-radius:12px; padding:18px; }
.ad-review-stars { color:#F59E0B; font-size:.9rem; margin-bottom:8px; }
.ad-review-text { font-size:.85rem; color:#374151; line-height:1.55; margin-bottom:10px; }
.ad-review-author { font-size:.8rem; font-weight:700; color:#0F172A; }
.ad-faq { padding:40px 20px; background:#F8FAFC; }
.ad-faq-list { max-width:650px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.ad-faq-item { background:#fff; border:1px solid #E2E8F0; border-radius:10px; padding:16px 20px; }
.ad-faq-q { font-weight:700; font-size:.9rem; color:#0F172A; margin-bottom:6px; }
.ad-faq-a { font-size:.85rem; color:#475569; line-height:1.5; }
.ad-footer { background:#0A192F; color:#94A3B8; text-align:center; padding:24px 20px; font-size:.82rem; }
.ad-footer a { color:#FCA5A5; text-decoration:none; font-weight:600; }
@media (max-width:700px) { .ad-services-grid { grid-template-columns:repeat(2,1fr); } .ad-reviews-grid { grid-template-columns:1fr; } .ad-form-wrapper { padding:24px 18px; } }
@media (max-width:450px) { .ad-services-grid { grid-template-columns:1fr; } .ad-usp-row { gap:16px; } }

/* ── AD LANDING PAGE VISUAL ENHANCEMENTS ── */
.ad-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  text-align: left;
  max-width: 1140px;
  margin: 0 auto;
}
.ad-hero-visual {
  position: relative;
}
.ad-hero-visual-card {
  position: relative;
  background: #0B192C;
  border: 2px solid rgba(220, 38, 38, 0.4);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.ad-hero-visual-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.ad-hero-live-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(34, 197, 94, 0.6);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ad-hero-live-badge .dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.ad-hero-eta-badge {
  position: absolute;
  bottom: 56px;
  right: 14px;
  background: rgba(220, 38, 38, 0.95);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.ad-hero-visual-footer {
  padding: 12px 16px;
  background: #0A192F;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #94A3B8;
}
.ad-hero-visual-footer strong {
  color: #FCD34D;
}

.ad-trust-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ad-trust-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #E2E8F0;
  font-size: 0.95rem;
  font-weight: 500;
}
.ad-trust-bullets li span.icon {
  color: #22C55E;
  font-weight: 800;
}

/* Fleet Showcase Cards */
.ad-fleet-section {
  padding: 60px 20px;
  background: #F8FAFC;
}
.ad-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.ad-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
}
.ad-section-header p {
  color: #64748B;
  font-size: 0.95rem;
  margin: 0;
}
.ad-fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1140px;
  margin: 0 auto;
}
.ad-fleet-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.ad-fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-red);
}
.ad-fleet-img-wrap {
  position: relative;
  height: 190px;
  background: #0F172A;
  overflow: hidden;
}
.ad-fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.ad-fleet-card:hover .ad-fleet-img-wrap img {
  transform: scale(1.05);
}
.ad-fleet-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.ad-fleet-tag.badge-icu {
  background: #DC2626;
}
.ad-fleet-tag.badge-cardiac {
  background: #B91C1C;
}
.ad-fleet-tag.badge-bls {
  background: #0284C7;
}
.ad-fleet-tag.badge-outstation {
  background: #4F46E5;
}
.ad-fleet-tag.badge-mortuary {
  background: #334155;
}
.ad-fleet-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.ad-fleet-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 10px;
}
.ad-fleet-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex-grow: 1;
}
.ad-fleet-specs li {
  font-size: 0.82rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ad-fleet-specs li span.check {
  color: #16A34A;
  font-weight: 700;
}
.ad-fleet-card .btn-card-call {
  background: var(--primary-red);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}
.ad-fleet-card .btn-card-call:hover {
  background: var(--primary-red-hover);
}

/* Photo Proof Gallery Strip */
.ad-gallery-strip {
  padding: 60px 20px;
  background: #FFFFFF;
}
.ad-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1140px;
  margin: 0 auto;
}
.ad-gallery-item {
  position: relative;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.ad-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.ad-gallery-item:hover img {
  transform: scale(1.08);
}
.ad-gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 8px 6px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Two-column Form Section */
.ad-form-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.ad-form-wrapper-enhanced {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.ad-guarantee-card {
  background: #0F172A;
  border-radius: 16px;
  overflow: hidden;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.ad-guarantee-img {
  height: 190px;
  position: relative;
}
.ad-guarantee-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ad-guarantee-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}
.ad-guarantee-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #F8FAFC;
}
.ad-guarantee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ad-guarantee-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #CBD5E1;
  line-height: 1.45;
}
.ad-guarantee-list li span.icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ad-guarantee-callout {
  margin-top: auto;
  padding: 12px 16px;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 8px;
  font-size: 0.85rem;
  color: #FCA5A5;
  text-align: center;
}

/* Coverage Area Tags */
.ad-coverage-section {
  padding: 40px 20px;
  background: #F1F5F9;
  text-align: center;
}
.ad-coverage-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 20px auto 0;
}
.ad-coverage-pill {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1E293B;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ad-coverage-pill .badge {
  background: #DC2626;
  color: #FFFFFF;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .ad-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .ad-hero h1 { text-align: center; }
  .ad-hero-sub { text-align: center; }
  .ad-trust-bullets { align-items: center; }
  .ad-cta-row { justify-content: center; }
  .ad-form-layout { grid-template-columns: 1fr; }
  .ad-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 580px) {
  .ad-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ad-hero-visual-card img { height: 210px; }
  .ad-form-wrapper-enhanced { padding: 22px 16px; }
}