:root {
  /* Brand Colors */
  --primary-color: #2F7D28;
  /* Purple */
  --secondary-color: #2F7D28;
  /* Green */
  --accent-color: #ff9f1c;
  /* Orange for CTAs */
  --dark-bg: #0f172a;
  /* Slate 900 */
  --light-bg: #f8fafc;
  /* Slate 50 */
  --text-dark: #1e293b;
  --text-light: #f1f5f9;
  --box-bg: #fffbf2;
  /* Ice Cream / Cream Color */

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

  /* Spacing */
  --container-width: 1200px;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  position: relative;
  /* Location Icon Pattern */
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23003366' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M30 0c5.523 0 10 4.477 10 10 0 5.523-4.477 10-10 10S20 15.523 20 10c0-5.523 4.477-10 10-10zm0 4c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6zM10 20c5.523 0 10 4.477 10 10 0 5.523-4.477 10-10 10S0 35.523 0 30c0-5.523 4.477-10 10-10zm0 4c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6zM50 20c5.523 0 10 4.477 10 10 0 5.523-4.477 10-10 10S40 35.523 40 30c0-5.523 4.477-10 10-10zm0 4c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6zM30 40c5.523 0 10 4.477 10 10 0 5.523-4.477 10-10 10S20 55.523 20 50c0-5.523 4.477-10 10-10zm0 4c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6z'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 24 24' fill='%2300a8cc' fill-opacity='0.02'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.btn,
.nav-links a {
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
}

/* Header */
header {
  height: auto;
  min-height: 80px;
  background: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
}

.logo {
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  font-weight: 700;
  color: black;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 1;
  border-radius: 4px;
  top: 100%;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #333;
  padding: 10px 20px;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f5f9;
}

/* Header Buttons */
.header-buttons {
  display: flex;
  gap: 15px;
  margin-left: 20px;
}

.btn-call-now {
  background: #76287D;
  /* Solid Purple (was Red) */
  color: white !important;
  padding: 10px 25px;
  border-radius: 50px;
  /* Pill shape */
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(224, 1, 4, 0.3);
}

.btn-call-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 1, 4, 0.4);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Darken overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Floating Social Icons */
.floating-socials {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  /* Stack upwards */
  gap: 15px;
}

.float-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  color: #FFF;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-icon:hover {
  transform: scale(1.1) translateX(5px);
}

.float-whatsapp {
  background-color: #25d366;
  width: 50px;
  height: 50px;
  font-size: 30px;
  animation: pulse-green 2s infinite;
}

.float-call {
  background-color: #007bff;
  /* Blue for call */
  color: white;
  animation: pulse-blue 2s infinite;
  animation-delay: 1s;
  /* Offset animation */
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    transform: scale(1.1);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    transform: scale(1);
  }
}

@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    transform: scale(1.1);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    transform: scale(1);
  }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Components */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color) !important;
}

.vehicle-item:hover div {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Vehicle Icons Redesign */
.vehicle-item {
  cursor: pointer;
}

.vehicle-icon-box {
  width: 80px;
  height: 80px;
  background: transparent;
  border: 3px solid #76287D;
  /* Deep Blue Brand Color */
  border-radius: 12px;
  /* Slightly rounded for modern look */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
  color: #76287D;
}

.vehicle-icon-box i {
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.vehicle-icon-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: all 0.3s ease;
  /* Filter to match #76287D (approximate) */
  filter: brightness(0) saturate(100%) invert(18%) sepia(35%) saturate(3993%) hue-rotate(279deg) brightness(91%) contrast(92%);
}

.vehicle-label {
  font-weight: 700;
  color: hsl(295, 52%, 32%);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Hover Effects - Red Accent */
.vehicle-item:hover .vehicle-icon-box {
  background: #76287D;
  /* 70% Color (Filled Blue) */
  color: white;
  /* 30% Blank (Text/Icon White) */
  border-color: #2f7d28;
  /* Red Border accent */
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 51, 102, 0.2);
}

.vehicle-item:hover .vehicle-label {
  color: #2f7d28;
  /* Red Text on Hover */
}

/* Make images white on hover to match font icons */
.vehicle-item:hover .vehicle-icon-box img {
  filter: brightness(0) invert(1);
}

/* Google Style Testimonials */
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  /* Classic card rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid transparent;
  /* Placeholder for color */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  margin-bottom: 20px;
}

.review-text {
  font-style: italic;
  color: #475569;
  margin-bottom: 25px;
  line-height: 1.6;
  flex-grow: 1;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 1.2rem;
}

.reviewer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.reviewer-location {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Google Colors Modifiers */
.google-card-blue {
  border-top-color: #4285F4;
  /* Google Blue */
}

.google-card-blue .quote-icon {
  color: #4285F4;
}

.google-card-blue .reviewer-avatar {
  background: #4285F4;
}

.google-card-red {
  border-top-color: #76287D;
  /* Google Red changed to Brand Purple */
}

.google-card-red .quote-icon {
  color: #76287D;
}

.google-card-red .reviewer-avatar {
  background: #76287D;
}

.google-card-green {
  border-top-color: #34A853;
  /* Google Green */
}

.google-card-green .quote-icon {
  color: #34A853;
}

.google-card-green .reviewer-avatar {
  background: #34A853;
}

/* Google Summary Widget */
.google-summary-card {
  transition: transform 0.3s ease;
}

.google-summary-card:hover {
  transform: translateY(-5px);
}

/* Reviews Scroll Container */
.reviews-scroll-container {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.reviews-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.reviews-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.reviews-scroll-container::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 4px;
}

.google-review-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.google-review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    /* Hide for now, JS will toggle */
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-buttons {
    flex-direction: column;
    margin-left: 0;
    width: 100%;
  }

  /* Responsive Stacking for Google Widget */
  .row {
    flex-direction: column;
    align-items: center;
  }

  .reviews-scroll-container {
    width: 100%;
    padding-bottom: 20px;
  }

  .header-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* Features Grid 6-Box Redesign */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  /* Subtle shadow per image */
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.feature-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

/* Specific Feature Colors (Matches Image) */
.feature-blue {
  background-color: #f3e8ff;
  /* Light Purple BG to match new brand */
  color: #76287D;
  /* Purple Icon */
}

.feature-orange {
  background-color: #ffedd5;
  /* Light Orange BG */
  color: #ea580c;
  /* Orange Icon */
}

.feature-green {
  background-color: #dcfce7;
  /* Light Green BG */
  color: #16a34a;
  /* Green Icon */
}

.feature-red {
  background-color: #fee2e2;
  color: #76287D;
}

.feature-purple {
  background-color: #f3e8ff;
  color: #9333ea;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}



/* Geographical Coverage Section */
.coverage-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.coverage-header {
  margin-bottom: 50px;
}

.coverage-header .sub-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.coverage-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin: 0;
}

.coverage-map-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.coverage-map {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.coverage-map:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .coverage-header h2 {
    font-size: 1.8rem;
  }
}

/* Footer Section */
.site-footer {
  background-color: #2f7d28;
  /* Brand Purple */
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  color: #fff;
  /* White */
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-heading {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links,
.footer-contact {
  line-height: 2;
}

.footer-links a,
.footer-contact li {
  color: rgba(255, 255, 255, 0.9) !important;
  /* Force White */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color) !important;
  /* Orange on hover */
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}