/* Akash Ambulance Service - Static Website CSS */

/* CSS Variables */
:root {
  --primary: #dc2626;
  --primary-dark: #b91c1c;
  --secondary: #1e40af;
  --secondary-dark: #1e3a8a;
  --background: #ffffff;
  --foreground: #1f2937;
  --muted: #f3f4f6;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary);
}

.btn-success {
  background-color: #22c55e;
  color: white;
}

.btn-success:hover {
  background-color: #16a34a;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Header */
.header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
}

/* Navigation */
.nav {
  display: none;
}

.nav ul {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

/* Services Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 50;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--foreground);
  transition: background 0.3s ease;
}

.dropdown-menu a:hover {
  background: var(--muted);
  color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: var(--shadow-lg);
  padding: 1rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover {
  color: var(--primary);
}

.header-cta {
  display: none;
}

/* Emergency Banner */
.emergency-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 0.75rem 1rem;
  text-align: center;
}

.emergency-banner a {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--muted);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-content p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
}

.why-content h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.why-content p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* About Page */
.page-hero {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  padding: 6rem 0 4rem;
  text-align: center;
  color: white;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content img {
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
}

.contact-item h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  color: var(--muted-foreground);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Map */
.map-container {
  margin-top: 3rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Service Detail Page */
.service-detail {
  padding: 3rem 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.service-detail img {
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.service-detail-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-detail-content p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.service-features {
  margin: 2rem 0;
}

.service-features h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-features ul {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--muted-foreground);
}

.service-features li::before {
  content: '✓';
  color: #22c55e;
  font-weight: bold;
}

/* Footer */
.footer {
  background: var(--foreground);
  color: white;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255,255,255,0.7);
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.call {
  background: var(--primary);
}

/* Animations */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Responsive */
@media (min-width: 768px) {
  .nav {
    display: block;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .header-cta {
    display: flex;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content,
  .contact-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .page-hero {
    padding: 4rem 0 3rem;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-buttons {
    bottom: 1rem;
    right: 1rem;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.amblife-about {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(90deg, #ffffff 55%, #fff1f1 45%);
}

.amblife-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.amblife-content {
  flex: 1;
}

.amblife-tag {
  color: #e60000;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.amblife-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin: 15px 0 20px;
  color: #111;
}

.amblife-content h1 span {
  color: #e60000;
}

.amblife-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

.amblife-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.stat-box {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stat-box strong {
  display: block;
  font-size: 22px;
  color: #e60000;
}

.stat-box span {
  font-size: 13px;
  color: #555;
}

.amblife-image {
  flex: 1;
  position: relative;
  background: #ffdede;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.amblife-image img {
  max-width: 100%;
  height: auto;
}

.availability {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #1bbd36;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .amblife-container {
    flex-direction: column;
  }

  .amblife-content h1 {
    font-size: 34px;
  }

  .amblife-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ambulance-services {
  width: 100%;
  padding: 80px 20px;
  background: #fafafa;
  font-family: 'Poppins', sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services-tag {
  color: #e60000;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.services-container h2 {
  font-size: 36px;
  margin: 10px 0;
  color: #111;
}

.services-subtitle {
  font-size: 15px;
  color: #666;
  max-width: 650px;
  margin: 0 auto 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .icon {
  width: 45px;
  height: 45px;
  background: #ffe5e5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.tags {
  margin: 15px 0;
}

.tags span {
  display: inline-block;
  font-size: 11px;
  padding: 5px 10px;
  background: #fff0f0;
  color: #e60000;
  border-radius: 20px;
  margin-right: 6px;
}

.service-card a {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #e60000;
  font-weight: 500;
  text-decoration: none;
}

.emergency-btn {
  display: inline-block;
  margin-top: 50px;
  background: #ff4d4d;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-container h2 {
    font-size: 28px;
  }
}
*{
  box-sizing:border-box;
  font-family:Poppins, sans-serif;
}

.ambulance-services{
  padding:70px 20px;
  background:#fafafa;
}

.services-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.service-box{
  background:#ffffff;
  padding:30px 26px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.icon-box{
  width:44px;
  height:44px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  margin-bottom:15px;
}

.icon-box.light{
  background:#ffe6e6;
  color:#ff0000;
}

.icon-box.red{
  background:#ff0000;
  color:#ffffff;
}

.service-box h3{
  font-size:16px;
  margin-bottom:8px;
  color:#111;
}

.service-box p{
  font-size:13px;
  color:#666;
  line-height:1.6;
}

.service-tags{
  margin:14px 0;
}

.service-tags span{
  display:inline-block;
  font-size:11px;
  padding:5px 10px;
  border-radius:20px;
  background:#fff0f0;
  color:#ff0000;
  margin-right:6px;
  margin-bottom:6px;
}

/* BUTTONS */
.btn-outline,
.btn-fill{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  width:100%;
  padding:9px;
  border-radius:22px;
  font-size:13px;
  font-weight:500;
  text-decoration:none;
}

.btn-outline{
  border:1.5px solid #ff0000;
  color:#ff0000;
  background:#fff;
}

.btn-outline:hover{
  background:#ff0000;
  color:#fff;
}

.btn-fill{
  background:#ff0000;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:991px){
  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:576px){
  .services-grid{
    grid-template-columns:1fr;
  }
}
*{
  box-sizing:border-box;
  font-family:Poppins, sans-serif;
}

.why-choose{
  width:100%;
  padding:80px 20px;
  background:#ffffff;
}

.why-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:50px;
}

/* LEFT */
.why-left{
  flex:1;
}

.why-tag{
  color:#ff0000;
  font-size:13px;
  font-weight:600;
}

.why-left h2{
  font-size:40px;
  margin:12px 0 20px;
  line-height:1.2;
}

.why-left h2 .red{
  color:#ff0000;
}

.why-left p{
  font-size:15px;
  color:#555;
  max-width:520px;
}

.why-stats{
  display:flex;
  gap:30px;
  margin:30px 0;
  padding:20px;
  background:#fff2f2;
  border-radius:14px;
}

.why-stats strong{
  display:block;
  font-size:22px;
  color:#ff0000;
}

.why-stats span{
  font-size:13px;
  color:#555;
}

.call-btn{
  display:inline-block;
  background:#ff0000;
  color:#fff;
  padding:14px 28px;
  border-radius:30px;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
}

/* RIGHT */
.why-right{
  flex:1;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.why-card{
  background:#ffffff;
  padding:20px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.why-card .icon{
  width:38px;
  height:38px;
  background:#ffe6e6;
  color:#ff0000;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}

.why-card h4{
  font-size:15px;
  margin-bottom:6px;
}

.why-card p{
  font-size:13px;
  color:#666;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:991px){
  .why-container{
    flex-direction:column;
  }
}
.testimonials{
  padding:80px 20px;
  background:#fafafa;
  font-family:Poppins, sans-serif;
}

.testimonials-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.testimonials h2{
  font-size:34px;
  margin-bottom:10px;
}

.testimonials-subtitle{
  font-size:15px;
  color:#666;
  max-width:650px;
  margin:0 auto 50px;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.testimonial-card{
  background:#fff;
  padding:25px;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,0.06);
  text-align:left;
  position:relative;
}

.quote{
  width:30px;
  height:30px;
  background:#ffe6e6;
  color:#ff0000;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  margin-bottom:10px;
}

.stars{
  color:#ff0000;
  font-size:14px;
  margin-bottom:10px;
}

.testimonial-card p{
  font-size:14px;
  color:#555;
  line-height:1.6;
  margin-bottom:18px;
}

.user{
  display:flex;
  align-items:center;
  gap:10px;
}

.avatar{
  width:34px;
  height:34px;
  background:#ff0000;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:600;
}

.user strong{
  font-size:13px;
}

.user small{
  font-size:12px;
  color:#777;
}

.google-rating{
  margin-top:45px;
  display:inline-block;
  background:#e6f7ec;
  color:#1e7f43;
  padding:10px 20px;
  border-radius:30px;
  font-size:13px;
}

/* RESPONSIVE */
@media(max-width:991px){
  .testimonial-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .testimonial-grid{
    grid-template-columns:1fr;
  }
}
.faq-section{
  padding:80px 20px;
  background:#fafafa;
  font-family:Poppins, sans-serif;
}

.faq-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:50px;
}

/* LEFT */
.faq-left{
  flex:1;
}

.faq-tag{
  color:#ff0000;
  font-size:13px;
  font-weight:600;
}

.faq-left h2{
  font-size:36px;
  margin:10px 0 20px;
}

.faq-left h2 span{
  color:#ff0000;
}

.faq-left p{
  font-size:15px;
  color:#555;
  max-width:480px;
}

.faq-call-box{
  margin-top:30px;
  background:#fff2f2;
  padding:25px;
  border-radius:14px;
}

.faq-call-box h4{
  margin-bottom:6px;
}

.faq-call-box p{
  font-size:14px;
  color:#555;
}

.faq-call-btn{
  display:inline-block;
  margin-top:12px;
  background:#ff0000;
  color:#fff;
  padding:10px 22px;
  border-radius:25px;
  text-decoration:none;
  font-size:14px;
}

/* RIGHT */
.faq-right{
  flex:1;
}

.faq-item{
  background:#ffffff;
  border-radius:12px;
  margin-bottom:14px;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
  overflow:hidden;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:16px 20px;
  font-size:14px;
  font-weight:500;
  text-align:left;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.faq-question span{
  font-size:20px;
  color:#ff0000;
}

.faq-answer{
  display:none;
  padding:0 20px 18px;
  font-size:14px;
  color:#555;
  line-height:1.6;
}

.faq-item.active .faq-answer{
  display:block;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}

/* RESPONSIVE */
@media(max-width:991px){
  .faq-container{
    flex-direction:column;
  }
}
.location-section{
  padding:80px 20px;
  background:#fafafa;
  font-family:Poppins, sans-serif;
}

.location-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.location-tag{
  color:#ff0000;
  font-size:13px;
  font-weight:600;
}

.location-container h2{
  font-size:34px;
  margin:10px 0;
}

.location-subtitle{
  font-size:15px;
  color:#666;
  max-width:650px;
  margin:0 auto 35px;
}

/* MAP */
.map-box{
  width:100%;
  height:360px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.map-box iframe{
  width:100%;
  height:100%;
  border:0;
}

/* LOCATION CHIPS */
.location-tags{
  margin-top:25px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}

.location-tags span{
  background:#ffffff;
  border-radius:10px;
  padding:8px 14px;
  font-size:13px;
  color:#333;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

/* RESPONSIVE */
@media(max-width:768px){
  .map-box{
    height:260px;
  }

  .location-container h2{
    font-size:28px;
  }
}
.contact-section{
  padding:80px 20px;
  background:#fafafa;
  font-family:Poppins, sans-serif;
}

.contact-container{
  max-width:1200px;
  margin:auto;
}

.contact-header{
  text-align:center;
  margin-bottom:50px;
}

.contact-tag{
  color:#ff0000;
  font-size:13px;
  font-weight:600;
}

.contact-header h2{
  font-size:36px;
  margin:10px 0;
}

.contact-header h2 span{
  color:#ff0000;
}

.contact-header p{
  font-size:15px;
  color:#666;
  max-width:650px;
  margin:auto;
}

/* GRID */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* LEFT INFO */
.contact-info h3,
.contact-form h3{
  margin-bottom:20px;
}

.info-box{
  display:flex;
  gap:12px;
  background:#ffffff;
  padding:15px;
  border-radius:12px;
  margin-bottom:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.info-box.highlight{
  background:#fff2f2;
}

.info-box .icon{
  width:36px;
  height:36px;
  background:#ffe6e6;
  color:#ff0000;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.info-box strong{
  font-size:14px;
}

.info-box p{
  font-size:13px;
  color:#555;
}

/* EMERGENCY BOX */
.emergency-box{
  margin-top:20px;
  background:#ff0000;
  color:#fff;
  padding:20px;
  border-radius:14px;
}

.emergency-box a{
  display:inline-block;
  margin-top:10px;
  background:#ffffff;
  color:#ff0000;
  padding:8px 16px;
  border-radius:20px;
  text-decoration:none;
  font-size:13px;
  font-weight:500;
}

/* FORM */
.contact-form{
  background:#ffffff;
  padding:25px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.contact-form label{
  font-size:13px;
  margin-top:12px;
  display:block;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:10px 12px;
  margin-top:6px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:13px;
}

.contact-form button{
  width:100%;
  margin-top:18px;
  background:#ff0000;
  color:#fff;
  border:none;
  padding:12px;
  border-radius:25px;
  font-size:14px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:991px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}
/* NAV HEIGHT FIX */
.nav{
  padding: 6px 0 !important;   /* ← yahin problem thi */
}

/* UL RESET */
.nav ul{
  margin: 0;
  padding: 0;
  align-items: center;
}

/* LINK HEIGHT FIX */
.nav ul li a{
  padding: 4px 6px !important;
  line-height: 1.2 !important;
}
/* National & International Services Section */

.service-info {
  width: 100%;
  background: #f4f9ff;
  padding: 60px 20px;
}

.service-info-inner {
  max-width: 1100px;
  margin: auto;
}

.service-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0a2bbf;
  margin-bottom: 20px;
}

.service-info p {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 15px;
}

.service-info a {
  color: #0066ff;
  font-weight: 600;
  text-decoration: none;
}

.service-info a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .service-info {
    padding: 40px 15px;
  }

  .service-info h2 {
    font-size: 22px;
  }

  .service-info p {
    font-size: 15px;
  }
}
/* CTA Buttons Only */

.ambulance-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.ambulance-cta .cta-btn {
  text-decoration: none;
  color: #fff;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.ambulance-cta .red {
  background: #e60000;
}

.ambulance-cta .green {
  background: #25d366;
}

.ambulance-cta .black {
  background: #111;
}

/* Mobile */
@media (max-width: 768px) {
  .ambulance-cta {
    flex-wrap: wrap;
  }

  .ambulance-cta .cta-btn {
    width: 100%;
    text-align: center;
  }
}

