/* Enhanced CSS for Alex Ambulance Service */

:root {
  --primary-blue: #0066cc;
  --secondary-blue: #2176ae;
  --accent-teal: #37bccb;
  --emergency-red: #dc3545;
  --success-green: #28a745;
  --dark-text: #1a1a1a;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0066cc 0%, #2176ae 100%);
  --gradient-emergency: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  font-family: "Poppins", "Inter", system-ui, -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Top Info Bar */
.top-info-bar {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
}

.top-info-bar i {
  color: var(--accent-teal);
}

/* Navbar */
.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-scrolled {
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: rotate(360deg);
}

.brand-title {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 18px;
  margin: 0;
}

.nav-link {
  color: var(--dark-text);
  font-weight: 500;
  margin: 0 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.btn-emergency {
  background: var(--gradient-emergency);
  color: var(--white);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-emergency:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 53, 69, 0.4);
  color: var(--white);
}

/* Hero Booking Section */
.hero-booking-section {
  position: relative;
  background: linear-gradient(
      135deg,
      rgba(0, 102, 204, 0.95) 0%,
      rgba(33, 118, 174, 0.92) 100%
    ),
    url("assests/WhatsApp\ Image\ 2025-10-08\ at\ 12.48.20\ PM.jpeg")
      center/cover no-repeat;
  padding: 100px 0 80px;
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.85),
    rgba(33, 118, 174, 0.8)
  );
  z-index: 1;
}

.hero-booking-section .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease;
}

.hero-main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 20px 0;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.text-emergency {
  color: #ffd700;
  display: inline-block;
  animation: pulse 2s infinite;
}

.hero-phone-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin: 30px 0;
  display: flex;
  align-items: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.phone-icon {
  animation: shake 2s infinite;
  color: #ffd700;
}

@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-10deg);
  }
  20%,
  40%,
  60%,
  80% {
    transform: rotate(10deg);
  }
}

.hero-features {
  margin-top: 30px;
}

.hero-feature-item {
  font-size: 18px;
  margin: 12px 0;
  display: flex;
  align-items: center;
}

.hero-feature-item i {
  color: #ffd700;
  margin-right: 12px;
  font-size: 20px;
}

/* Booking Form */
.booking-form-wrapper {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  animation: fadeInRight 0.8s ease;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-icon {
  font-size: 50px;
  color: var(--emergency-red);
  animation: bounce 2s infinite;
}

.form-title {
  color: var(--primary-blue);
  font-size: 26px;
  font-weight: 700;
  margin: 15px 0 5px;
}

.form-subtitle {
  color: var(--emergency-red);
  font-size: 14px;
  font-weight: 600;
}

.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-blue);
  z-index: 2;
}

.form-control-custom {
  width: 100%;
  padding: 14px 15px 14px 50px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.btn-submit-custom {
  width: 100%;
  background: var(--gradient-emergency);
  color: var(--white);
  border: none;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-submit-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--success-green);
  margin-top: 15px;
}

/* Feature Highlight Section */
.feature-highlight-section {
  padding: 80px 0;
  background: var(--white);
}

.highlight-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 102, 204, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.highlight-card:hover::before {
  left: 100%;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.highlight-card-featured {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--emergency-red);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.highlight-icon-wrapper {
  margin-bottom: 20px;
}

.highlight-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.15) rotate(5deg);
}

.highlight-title-new {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.highlight-card-featured .highlight-title-new {
  color: var(--white);
}

.highlight-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.highlight-card-featured .highlight-desc {
  color: rgba(255, 255, 255, 0.95);
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
  margin-bottom: 60px;
}

.section-title-main {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--gradient-emergency);
  margin: 20px auto 0;
  border-radius: 2px;
}

.service-card-new {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  height: 100%;
}

.service-card-new:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.service-card-featured-new {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary-blue);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--emergency-red);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.1) 0%,
    rgba(33, 118, 174, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.service-card-new:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(360deg);
}

.service-card-featured-new .service-icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
}

.service-icon {
  font-size: 40px;
  color: var(--primary-blue);
}

.service-card-featured-new .service-icon {
  color: var(--white);
}

.service-title-new {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
  text-align: center;
}

.service-card-featured-new .service-title-new {
  color: var(--white);
}

.service-desc {
  font-size: 15px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

.service-card-featured-new .service-desc {
  color: rgba(255, 255, 255, 0.95);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.service-card-featured-new .service-features li {
  color: var(--white);
}

.service-features li i {
  color: var(--success-green);
  margin-right: 10px;
  font-size: 16px;
}

.service-card-featured-new .service-features li i {
  color: #ffd700;
}

/* Types Section */
.types-section {
  padding: 80px 0;
  background: var(--white);
}

.type-card-new {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
}

.type-card-new:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.type-card-premium {
  border-color: #ffd700;
}

.type-card-premium:hover {
  border-color: var(--emergency-red);
  box-shadow: 0 12px 40px rgba(220, 53, 69, 0.2);
}

.type-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.type-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.type-card-new:hover .type-img {
  transform: scale(1.1);
}

.type-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-blue);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.type-badge-popular {
  background: var(--success-green);
}

.type-badge-premium {
  background: var(--gradient-emergency);
}

.type-content {
  padding: 25px 20px;
}

.type-title-new {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.type-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.type-link {
  color: var(--emergency-red);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.type-link:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}

/* Info Sections */
.info-section-alt {
  padding: 80px 0;
  background: var(--light-gray);
}

.info-section-primary {
  padding: 80px 0;
  background: var(--gradient-primary);
  color: var(--white);
}

.info-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.info-img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.info-image-wrapper:hover .info-img {
  transform: scale(1.05);
}

.info-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.info-title-white {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.info-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.info-text-white {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 15px;
}

.info-stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--emergency-red);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

.btn-cta-primary {
  display: inline-block;
  background: var(--gradient-emergency);
  color: var(--white);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
  color: var(--white);
}

/* Feature List White */
.feature-list-white {
  margin: 30px 0;
}

.feature-item-white {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 20px;
}

.feature-item-white i {
  font-size: 32px;
  color: #ffd700;
  flex-shrink: 0;
}

.feature-item-white strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--white);
}

.feature-item-white p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.info-img-white {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Service Types List */
.service-types-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 25px 0;
}

.service-type-item {
  background: rgba(0, 102, 204, 0.1);
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.service-type-item:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateX(5px);
}

.service-type-item i {
  font-size: 20px;
}

/* Features Grid Section */
.features-grid-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.feature-box {
  background: var(--white);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-teal);
}

.feature-box-highlighted {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary-blue);
}

.special-badge {
  position: absolute;
  top: -10px;
  right: 15px;
  background: var(--emergency-red);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.feature-icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(55, 188, 203, 0.1) 0%,
    rgba(0, 102, 204, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.feature-box:hover .feature-icon-box {
  transform: scale(1.1) rotate(360deg);
}

.feature-box-highlighted .feature-icon-box {
  background: rgba(255, 255, 255, 0.2);
}

.feature-icon-box i {
  font-size: 32px;
  color: var(--primary-blue);
}

.feature-box-highlighted .feature-icon-box i {
  color: var(--white);
}

.feature-box-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.feature-box-highlighted .feature-box-title {
  color: var(--white);
}

.feature-box-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.feature-box-highlighted .feature-box-text {
  color: rgba(255, 255, 255, 0.95);
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.why-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.why-intro {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.why-items {
  margin-top: 30px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon i {
  font-size: 28px;
  color: var(--white);
}

.why-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.why-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.why-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-img {
  width: 100%;
  border-radius: 20px;
}

.why-stats-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.overlay-stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--emergency-red);
  line-height: 1;
}

.overlay-stat-label {
  font-size: 16px;
  color: var(--primary-blue);
  margin-top: 8px;
  font-weight: 600;
}

/* Locations Section */
.locations-section {
  padding: 80px 0;
  background: var(--white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.location-item {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.05) 0%,
    rgba(33, 118, 174, 0.05) 100%
  );
  padding: 18px 25px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.location-item:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.location-item i {
  font-size: 18px;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.about-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  margin: 30px 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-text);
}

.about-feature-item i {
  color: var(--success-green);
  font-size: 22px;
}

.about-image-grid {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* Footer */
.footer-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: var(--white);
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 100px;
  height: 100px;
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-widget-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--emergency-red);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-teal);
  transform: translateX(5px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
  color: var(--accent-teal);
  font-size: 18px;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

.footer-copyright,
.footer-dev {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Floating Buttons */
.floating-call-btn {
  position: fixed;
  right: 25px;
  bottom: 90px;
  width: 60px;
  height: 60px;
  background: var(--gradient-emergency);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(220, 53, 69, 0.4);
  z-index: 999;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.floating-call-btn:hover {
  transform: scale(1.1);
  color: var(--white);
}

.floating-whatsapp-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  animation: bounce 2s infinite;
  transition: all 0.3s ease;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  color: var(--white);
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(220, 53, 69, 0.4);
  }
  50% {
    box-shadow: 0 8px 40px rgba(220, 53, 69, 0.7);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-booking-section {
    padding: 60px 0 50px;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .hero-phone-number {
    font-size: 2rem;
  }

  .booking-form-wrapper {
    margin-top: 30px;
  }

  .info-stats {
    justify-content: center;
  }

  .service-types-list {
    grid-template-columns: 1fr;
  }

  .why-items {
    margin-bottom: 30px;
  }

  .locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 767px) {
  .top-info-bar .row > div {
    text-align: center !important;
    margin: 5px 0;
  }

  .hero-main-title {
    font-size: 2rem;
  }

  .hero-phone-number {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }

  .hero-feature-item {
    font-size: 16px;
  }

  .booking-form-wrapper {
    padding: 30px 20px;
  }

  .section-title-main {
    font-size: 1.8rem;
  }

  .info-title,
  .info-title-white,
  .why-title,
  .about-title {
    font-size: 1.8rem;
  }

  .feature-list-white {
    margin: 20px 0;
  }

  .why-item {
    padding: 15px;
  }

  .why-stats-overlay {
    padding: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  .overlay-stat-number {
    font-size: 32px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .floating-call-btn,
  .floating-whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .floating-call-btn {
    bottom: 80px;
  }

  .footer-widget {
    text-align: center;
  }

  .footer-logo-wrapper {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-widget-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom .row > div {
    text-align: center !important;
  }
}

@media (max-width: 575px) {
  .stat-item {
    min-width: 80px;
  }

  .stat-number {
    font-size: 28px;
  }

  .feature-icon-box {
    width: 60px;
    height: 60px;
  }

  .feature-icon-box i {
    font-size: 28px;
  }
}
