/* --- Global Styles & Fonts --- */
@font-face {
  font-family: 'BebasNeue-Regular';
  src: url("../fonts/BebasNeue-Regular.28d0507e195f.woff2") format('woff2'),
       url("../fonts/BebasNeue-Regular.fec15d4060a9.woff") format('woff'),
       url("../fonts/BebasNeue-Regular.29cdcb589a3e.ttf") format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f8f9fa; /* A light base color for the whole page */
  font-family: 'BebasNeue-Regular', sans-serif;
  overflow-x: hidden;
}
/* NEW: A global rule to prevent images/videos from overflowing */
img, video {
  max-width: 100%;
  height: auto;
}

/* --- Header & Navigation --- */
.header {
  position: absolute; /* Kept absolute to float over the hero */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  z-index: 10;
}
/* Apply larger padding only on desktop screens */
@media (min-width: 1024px) {
  .header {
    padding: 1.6rem 8rem;
  }
}
.spanish-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: heartbeat 3s infinite; /* Runs forever */
  transition: 0.5s;
  z-index: 2;
}
.spanish-btn img {
  border: 1px solid white;
  border-radius: 0.3rem;
  width: 55px;
  height: 35px;
  justify-content: center;
  display: flex;
  align-items: center;

}
.spanish-btn a {
  text-decoration: none;
}

.spanish-btn:hover {
  scale: 1.1;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .spanish-btn {
    bottom: 45px;
    left: 10px;
    border-radius: 1rem ;
    padding: 0.2rem 0.4rem;
  }
  .spanish-btn img {
    width: 40px;
    height: 25px;

  }
  
}
/* Add this to styles.css */
@keyframes heartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.1); }
  28% { transform: scale(1); }
  42% { transform: scale(1.1); }
  70% { transform: scale(1); }
}

.logo a {
  font-size: clamp(2rem, 5vw, 3rem);
  text-decoration: none;
  color: white;
  transition: 0.8s;
}

.logo a:hover {
  color: deeppink;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  height: 100%;


}

.nav a {
  font-size: clamp(1.2rem, 3vw, 2rem);
  display: inline-block;
  padding: 1rem 1rem;
  text-decoration: none;
  color: antiquewhite;
  transition: 0.5s;
  border-radius: 1em;
  transition: 0.5s;

}

.nav a:hover, .nav .active:hover {
  padding: 1rem;
  border-radius: 1rem;
  background-color: sandybrown;
  scale: 1.1;
}

.burger {
  display: none;

}

/* --- Hero Section --- */
.hero-banner {
  position: relative; /* Anchor for the absolute video/overlay */
  height: 100vh; /* Responsive height based on viewport */
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: antiquewhite;
  overflow: hidden; /* Contains the video */
}
/* --- Hero Badge Style --- */
.hero-badge {
  color: yellow;
  padding: 0.6rem 2rem;
  border-radius: 1rem;
  font-size: clamp(1rem, 2vw, 2rem);
  display: inline-block; /* Allows it to have padding and a background */
  margin-bottom: 1rem;
  /* Optional: a subtle pulse to draw attention */
  animation: pulse 2s infinite; 
  border: 0.3rem yellow dotted;
  transition: 0.5s;
}

@keyframes pulse {
  0% { transform: scale(1.3); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1.3); }
}

.hero-banner .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: darkorange;
  mix-blend-mode: multiply;
  opacity: 25%;
  z-index: 2;
}

.hero-banner .content {
  position: relative;
  z-index: 3;
  padding: 1rem;
}
/* Glassmorphism Trust Badges */
.trust-badges {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  margin-top: 2.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.4); /* Dark semi-transparent background */
  backdrop-filter: blur(8px);      /* The blur effect */
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  border-radius: 50px;             /* Pill shape */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsiveness: Stack them if screen is too small */
@media (max-width: 600px) {
  .trust-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    border-radius: 1rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .trust-divider {
    display: none; /* Hide vertical lines on mobile */
  }
}
.social_icons {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.social_icons img {
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social_icons img:hover {
  transform: scale(1.1);
}


.content .title {
  font-size: clamp(1.2rem, 3vw, 2rem);
  text-shadow:2px 2px 7px black;
  color: whitesmoke;
  font-weight: 400;
}

.content .subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  text-shadow:2px 2px 7px black;

  margin: 1rem 0 2rem;
}

.button {
  display: inline-block;
  padding: 20px 40px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  background-color: transparent;
  border: 2px solid white;
  color: white;
  border-radius: 1.5em;
  transition: 0.5s;
  text-decoration: none;
  text-shadow:2px 2px 5px black;

}

.button:hover {
  background-color: darkorange;
  border-color: darkorange;
}

/* --- General Section Styling --- */
/* A single class to control spacing between all sections */
.section {
    padding: 3rem 2rem;
}
.heading-text{
  flex: 1;
  display: flex;
  justify-content: center;
  padding-bottom: 5rem;
  height: 4rem;
  font-size: clamp(1.5rem, 2vw, 4rem);
  color:#1C3948;  

}

/* --- "How It Works" Steps Section --- */
.steps-hero {
  background-color: blanchedalmond;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  padding: 0rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card1, .card2, .card3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Aligns content to top */
  text-align: center;
  padding: 2rem;
  background-color: beige;
  border-radius: 1rem;
  border: 1px solid #ddd;
  min-height: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card1:hover, .card2:hover, .card3:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card1 svg, .card2 img, .card3 img {
  height: 80px;
  width: 80px;
  margin-bottom: 1.5rem;
}

.card1 h3, .card2 h3, .card3 h3 {
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
}
.card1 p, .card2 p, .card3 p {
    font-size: clamp(1.5rem, 2vw, 1.2rem);
    color: #1C3948;
}
/* Gallery Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* The Job Card */
.job-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #fbbf24; /* Yellow highlight on hover */
}

/* Image Area */
.job-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.job-card:hover .job-image img {
  transform: scale(1.05); /* Zoom effect */
}

/* Location Badge (Floating) */
.location-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.9); /* Dark Slate */
  color: #fbbf24; /* Yellow Text */
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* Content Area */
.job-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vehicle-info {
  font-size: 0.75rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.job-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.job-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Pushes footer down */
}

/* Footer & Tags */
.job-footer {
  border-top: 1px dashed #e2e8f0;
  padding-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.service-tag {
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}
/* --- "About" Section --- */
.about {
  background-color: #ffffff;
}

.about-con {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 3rem;
  max-width: 2500px;
  margin: 0 auto;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-header h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 1rem;
  color: #1C3948;
  text-transform: uppercase;
}

.about-des p {
  font-family: sans-serif;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: #555;
}
.pricing-comparison {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 5rem; /* More space at the bottom */
  background-color: #f7f7f7; 
}

/* More prominent intro text */
.pricing-intro {
  font-size: 1.3rem; /* Slightly larger */
  color: #4a4a4a; /* A bit softer than pure black */
  max-width: 650px; /* A bit wider */
  margin: 1rem auto 3.5rem auto; /* More bottom margin */
  padding: 0 1rem;
  line-height: 1.6;
}

.chart-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.chart-key {
  font-size: 0.9rem;
  font-style: italic;
  color: #777;
  margin-bottom: 2.5rem; /* More space */
  text-align: center;
}

.chart-bar-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1.75rem; /* Increased spacing */
}

.bar-label {
  flex-basis: 120px;
  flex-shrink: 0; 
  text-align: right;
  margin-right: 15px;
  font-weight: 600; /* Use 600 for a more refined bold */
  font-size: 1.2rem;
  color: #333;
}

.bar-track {
  flex-grow: 1; 
  height: 28px; /* Slightly thinner */
  background-color: #e9ecef; /* Lighter, more modern gray */
  border-radius: 14px; /* Fully rounded ends */
  position: relative;
  overflow: hidden; 
}

.bar-fill {
  height: 100%;
  background-color: #1c3948;
  /* Add a subtle gradient for depth */
  background-image: linear-gradient(to right, #1c3948, #2a5a75);
  border-radius: 14px; /* Match the track */

  /* Animation */
  width: 0; 
  transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* This is triggered by your existing 'is-visible' animation script */
.is-visible .bar-fill {
  width: var(--bar-width);
}

.bar-value {
  flex-basis: 60px; 
  flex-shrink: 0;
  text-align: left;
  margin-left: 15px;
  font-size: 2.5rem;
  font-weight: 700; /* Bolder */
  color: #1c3948;
  /* Ensures numbers are monospaced and don't "jitter" */
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

/* --- Highlight Your Price --- */
.chart-bar-wrapper.our-price .bar-label,
.chart-bar-wrapper.our-price .bar-value {
  color: #f97316;
  font-weight: 700;
}

.chart-bar-wrapper.our-price .bar-fill {
  background-color: #f97316;
  /* Brighter gradient for the orange */
  background-image: linear-gradient(to right, #f97316, #fa8a41);
}

.pricing-disclaimer {
  font-size: 0.85rem; /* Slightly more readable */
  color: #888;
  margin-top: 3rem;
  text-align: center;
}

/* --- Responsive for Mobile --- */
@media (max-width: 600px) {
  .bar-label {
    flex-basis: 90px; /* Tighter label */
    font-size: 0.90rem;
    margin-right: 10px;
    font-weight: 600;
  }

  .bar-track {
    height: 24px; /* Even thinner on mobile */
    border-radius: 12px;
  }

  .bar-fill {
    border-radius: 12px;
  }

  .bar-value {
    flex-basis: 50px;
    font-size: 1.8rem;
    margin-left: 10px;
    font-weight: 700;
  }
}
.pricing-toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.pricing-toggle {
  position: relative;
  display: flex;
  background-color: #e9ecef; /* Track background */
  border-radius: 50px;
  padding: 5px;
  width: 100%;
  max-width: 450px; /* Max width of the whole slider */
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.toggle-btn {
  flex: 1; /* Each button takes equal width */
  position: relative;
  z-index: 2; /* Sits on top of the sliding pill */
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
  outline: none;
  transition: 0.5s;
}

.toggle-btn.active {
  color: #ffffff; /* White text when active */
  scale: 1.2;
}

/* The sliding background pill */
.sliding-pill {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(33.33% - 3.33px); /* 1/3 width minus padding adjustment */
  height: calc(100% - 10px);
  background-color: #1c3948; /* Dark Blue */
  border-radius: 12px;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Logic to move the pill based on data-active-index */
/* Position 0 (First button) */
#pricingToggle[data-active-index="0"] .sliding-pill {
  transform: translateX(0%);
}
/* Position 1 (Second button) */
#pricingToggle[data-active-index="1"] .sliding-pill {
  transform: translateX(100%); /* Move over 100% of its own width */
  /* Note: In CSS grid/flex calculations, small adjustments might be needed 
     depending on exact padding, but usually 100% works well here */
  transform: translateX(calc(100% + 0px)); 
}
/* Position 2 (Third button) */
#pricingToggle[data-active-index="2"] .sliding-pill {
  transform: translateX(calc(200% + 3px));
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .pricing-toggle {
    max-width: 340px;
  }
  .toggle-btn {
    font-size: 0.8rem;
  }
}
.impact-section {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff; /* White background to contrast the gray pricing section */
  text-align: center;
}

.impact-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 1rem auto 3rem auto;
  padding: 0 1rem;
  line-height: 1.6;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.impact-card {
  background-color: #fff;
  border: 1px solid #e9ecef; /* Subtle border */
  border-radius: 20px; /* Modern rounded corners */
  padding: 2.5rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft shadow hover effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.impact-card:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 70px;
  height: 70px;
  background-color: #eff6f9; /* Very light blue background */
  border-radius: 50%; /* Circle */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #f97316; /* Orange Icon Color */
}

.icon-box svg {
  width: 32px;
  height: 32px;
}

.impact-card h3 {
  font-size: 1.25rem;
  color: #1c3948; /* Dark Blue */
  margin-bottom: 1rem;
  font-weight: 700;
}

.impact-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr; /* Stack vertically on mobile */
    max-width: 400px; /* Limit width on mobile so cards aren't huge */
  }
  
  .impact-card {
    padding: 2rem 1rem;
  }
}
/* =================================================== */
/* ========= REVEAL SERVICE GRID STYLES ============== */
/* =================================================== */
.service_section{
  background-color: blanchedalmond;
  padding: 5.5rem 2rem;


}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0rem 2rem;
}
.heading-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3rem;

}

.section-subtitle {
  color: #666;
  margin-top: -10px;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.service-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  cursor: pointer; /* Indicates interactivity */
  overflow: hidden;
  /* Animation Start State */
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Fixed height ensures all cards look uniform */
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-content {
  padding: 2rem;
  text-align: center;
  transition: transform 0.4s ease;
  width: 100%;
}

.card-icon {
  width: 70px;
  height: 70px;
  background-color: #eff6f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  transition: all 0.4s ease;
}

.card-icon svg {
  width: 35px;
  height: 35px;
  color: #1C3948;
  transition: color 0.3s ease;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #1C3948;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
}

/* --- HIDDEN DESCRIPTION --- */
.card-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-desc p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-top: 1rem;
}

/* --- INTERACTION STATES (HOVER & ACTIVE) --- */

/* When Hovered OR when class 'mobile-active' is added by JS */
.service-card:hover,
.service-card.mobile-active {
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Slide the whole content up slightly */
.service-card:hover .card-content,
.service-card.mobile-active .card-content {
  transform: translateY(-10px);
}

/* Reveal the Description */
.service-card:hover .card-desc,
.service-card.mobile-active .card-desc {
  max-height: 150px; /* Enough space for text */
  opacity: 1;
}

/* Style the Icon */
.service-card:hover .card-icon,
.service-card.mobile-active .card-icon {
  background-color: #F97316;
  transform: scale(0.9);
}

.service-card:hover .card-icon svg,
.service-card.mobile-active .card-icon svg {
  color: #fff;
}

/* Color the Title */
.service-card:hover h3,
.service-card.mobile-active h3 {
  color: #F97316;
}

/* --- Animation Entrance --- */
.service-card.is-visible {
  animation: fadeSlideUp 0.6s forwards;
}

@keyframes fadeSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Waterfall Delay */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.15s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.25s; }
.service-card:nth-child(5) { animation-delay: 0.3s; }
.service-card:nth-child(6) { animation-delay: 0.35s; }

/* --- NEW: Overlay for Mobile Menu --- */
.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 15; /* Should be below nav, but above content */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.overlay-menu.open {
  opacity: 1;
  visibility: visible;
}
.nav-close{
  display: none;

}


/* --- Mobile Responsive Styles --- */
/* --- Mobile Responsive Styles --- */
/* --- Mobile Responsive Styles --- */
@media (max-width: 768px) {
  .burger {
    display: block;
    color: black;
    background-color: white;
    align-items: center;
    padding: 0.1rem 0.5rem;
    border-radius: 0.5rem;
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .nav {
    position: fixed; /* Changed to fixed to prevent body scroll */
    top: 0;
    right: 0;
    width: min(70%, 300px);
    max-width: 400px;
    height: 100vh;
    padding-top: 6rem;
    background: rgba(20, 30, 40, 0.75); /* Dark Blue, 75% opacity */
    backdrop-filter: blur(15px);        /* Blurs content behind it */
    -webkit-backdrop-filter: blur(15px); /* Safari support */
    border-left: 1px solid rgba(255, 255, 255, 0.1); /* Subtle glass edge */
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    transform: translateX(100%);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);    
    z-index: 20; /* Ensure nav is on top */
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  }
  .social_icons {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
}
  .social_icons img {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}
  
  .nav a {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    text-align: center;
  }

  .nav.open {
    transform: translateX(0);
  }
  

  /* --- NEW: Close Button Style --- */
  .nav-close {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    padding: 0.2rem 0.5rem;
    color: white;
    cursor: pointer;
  }
  .nav-close:hover {
    color: white;
    transform: rotate(90deg);
}
}
/* --- Animation Styles --- */

/* This defines the "fade and slide up" animation */
/* --- Animation Styles --- */

/* This class sets the initial "hidden" state for elements
  that will animate on scroll.
*/
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When JavaScript adds the .is-visible class, the element 
  transitions smoothly to its final state.
*/
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service-scope {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #1C3948;
  margin-bottom: 0.5rem;
}
.service-scope-text {
  font-family: sans-serif;
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 3rem; /* Adds space before the cards */
}
/* =================================================== */
/* ============ MOBILE STICKY BAR STYLES ============= */
/* =================================================== */

.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15); /* Stronger shadow for "pop" effect */
  z-index: 9999;
  padding: 12px 15px; /* Slightly taller touch area */
  gap: 10px;
  
  /* --- NEW: Hidden State (Pushed Down) --- */
  transform: translateY(110%); 
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* "Springy" pop up */
  
  display: none; /* Hidden on desktop */
}

/* --- NEW: Visible State (Triggered by JS) --- */
.mobile-sticky-bar.is-sticky-visible {
  transform: translateY(0);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 50px; /* Pill shape looks more modern/app-like */
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s ease, background-color 0.2s;
}

.sticky-btn:active {
  transform: scale(0.95);
}

.sticky-btn svg {
  width: 20px;
  height: 20px;
}

/* Call Button Style */
.call-btn {
  background-color: #fff;
  color: #1C3948;
  border: 2px solid #1C3948;
}

/* Book Button Style */
.book-btn {
  background-color: #F97316;
  color: #fff;
  border: 2px solid #F97316;
}

/* Only show functionality on mobile */
@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex; /* Enable flexbox layout */
  }
  
  /* Add padding to footer so the bar doesn't cover copyright info */
  .site-footer {
    padding-bottom: 90px; 
  }
}
/* Container Spacing */
.testimonials {
    padding: 40px 0;
    text-align: center;
    background-color: #f8f9fa; /* Light gray background feels more like an app */
}

.heading-text h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 5px;
    font-weight: 700;
}

.heading-text .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    margin-bottom: 25px;
}

.google-text {
    font-weight: bold;
    color: #4285F4;
}

/* THE APP SCROLLER */
.app-scroller {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* This creates the "snap" effect */
    gap: 16px;
    padding: 10px 20px 40px 20px; /* Extra bottom padding for shadow */
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iPhone */
}

/* Hide Scrollbar but keep functionality */
.app-scroller::-webkit-scrollbar {
    display: none;
}
.google-logo {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    margin-left: auto; /* Pushes logo to the far right */
}
/* The Card Design */
.app-card {
    flex: 0 0 85%; /* Shows 85% of the card so user knows to scroll */
    max-width: 320px;
    background: white;
    padding: 20px;
    border-radius: 20px; /* Round corners like iOS */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    scroll-snap-align: center; /* Snaps card to center of screen */
    text-align: left;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

/* Card Header (Avatar + Name) */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: #FBBC05; /* Google Yellow default */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
}

.user-info {
    flex-grow: 1;
}

.user-info .name {
    display: block;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #333;
}

.user-info .stars {
    color: #FBBC05; /* Google Star Color */
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.google-logo {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.review-text {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.5;
    color: #555;
}

/* "See More" Card specific style */
.see-more-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f3f4; /* Light gray to indicate action */
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
}

.see-more-card a {
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.see-more-content .plus-icon {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #4285F4;
    display: block;
    margin-bottom: 10px;
}

.see-more-content p {
    font-weight: 600;
    color: #4285F4;
}

/* Desktop Tweak */
@media (min-width: 768px) {
    .app-card {
        flex: 0 0 300px; /* Fixed width on desktop */
    }
    .app-scroller {
        justify-content: center; /* Center them on big screens */
    }
}
/* --- FAQ Section Styles --- */
.faq {
  background-color: #ffffff;
  color: #1C3948;
}
.heading-text{
  padding-bottom: 6rem;
  font-size: clamp(1.5rem, 3vw, 2.6rem);

}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq details {
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  transition: background-color 0.5s ease;
}

.faq details[open] {
  background-color: #f8f9fa;
}

.faq summary {
  font-family: 'BebasNeue-Regular', sans-serif;
  font-size: 1.5rem;
  color: #1C3948;
  cursor: pointer;
  list-style: none; /* Removes default triangle */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary:hover {
  color: darkorange;
}

/* Adds a custom animated + and x icon */
.faq summary::after {
  content: '+';
  font-size: 2rem;
  font-weight: normal;
  transition: transform 0.3s ease-in-out;
}

.faq details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq details p {
  font-family: sans-serif;
  margin-top: 1rem;
  color: #555;
  line-height: 1.6;
}
/* --- Live Map Style --- */
    /* --- Service Area Section Styles --- */
    .service-area-section {
      background-color: #ffffff;
      padding: 5rem 1rem; /* Equivalent to .section and padding */
    }
    .service-area-container {
      max-width: 80rem; /* max-w-7xl */
      margin-left: auto;
      margin-right: auto;
      padding-left: 1rem; /* px-4 */
      padding-right: 1rem;
    }
    .service-area-header {
      text-align: center;
    }
    .service-area-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
 /* text-3xl sm:text-4xl */
      color:#1C3948; /* text-gray-900 */
    }
    .service-area-subtitle {
    margin-top: 1rem; /* mt-4 */
    font-size: clamp(1.4rem, 3vw, 1.8rem);
 /* text-lg */
      color: #4B5563; /* text-gray-600 */
    }
    .map-wrapper {
      margin-top: 3rem; /* mt-12 */
    }
    #map {
      width: 100%;
      height: 24rem; /* h-96 */
      border-radius: 0.75rem; /* rounded-xl */
      box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); /* shadow-lg */
    }
    .map-caption {
      text-align: center;
      font-size: clamp(1.5rem, 3vw, 1rem);
 /* text-sm */
      color: #6B7280; /* text-gray-500 */
      margin-top: 1rem; /* mt-2 */
    }
    /* Responsive adjustments */
    @media (min-width: 640px) {
      .service-area-container {
        padding-left: 1.5rem; /* sm:px-6 */
        padding-right: 1.5rem;
      }

    }
    @media (min-width: 1024px) {
      .service-area-container {
        padding-left: 2rem; /* lg:px-8 */
        padding-right: 2rem;
      }
    }
    /* =========================================
   FOOTER STYLES (Paste at bottom of styles.css)
   ========================================= */

/* 1. The Main Container */
.site-footer {
    background-color: #1C3948; /* Dark Grey/Black */
    color: #cccccc;            /* Light Grey Text */
    padding-top: 60px;
    padding-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 4px solid burlywood; /* The Red "Mechanic" Stripe at the top */
}

/* 2. The Layout Wrapper (Keeps content centered) */
.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap; /* Allows stacking on mobile */
    justify-content: space-between;
    gap: 40px;
}

/* 3. Columns */
.footer-col {
    flex: 1;             /* Each column takes equal space */
    min-width: 280px;    /* But never gets smaller than 280px (forces stack on mobile) */
}

/* 4. Typography & Branding */
.footer-logo {
    color: #ffffff;
    font-family: 'BebasNeue-Regular', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: 0;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaaaaa;
    margin-bottom: 25px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
    position: relative;
    display: inline-block;
}

/* Red underline under headings */
.footer-col h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #d32f2f; /* Mechanic Red */
    margin-top: 8px;
}

/* 5. Contact Links (Phone/Email) */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: 0.3s ease;
}

.contact-link svg {
    stroke: #d32f2f; /* Red Icons */
}

.contact-link:hover {
    color: #d32f2f;
    padding-left: 5px; /* Slide effect */
}

/* 6. Navigation Links (Services/Areas) */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px); /* Slide right on hover */
    border-left: 2px solid #d32f2f; /* Little red bar appears on left */
    padding-left: 8px;
}

/* 7. Bottom Copyright Bar */
.footer-copyright {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider line */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #777777;
}

.social-links-mini a {
    color: #cccccc;
    text-decoration: none;
    margin-left: 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.social-links-mini a:hover {
    color: #d32f2f;
}
.hours-box {
    background: rgba(255, 255, 255, 0.05); /* Very subtle transparent box */
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid #d32f2f; /* Red accent line on the left */
    margin-bottom: 25px;
    max-width: 300px;
}

.hours-title {
    color: #ffffff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
    opacity: 0.8;
}

.hours-text {
    color: #e0e0e0;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.highlight-time {
    color: #ffffff;
    font-weight: 700;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .site-footer {
        padding-top: 40px;
        text-align: center; /* Center everything on phone */
    }

    .footer-wrapper {
        flex-direction: column; /* Stack columns vertically */
        gap: 40px;
    }
    .hours-box {
        margin: 0 auto 25px; /* Centers the box */
        text-align: left;    /* Keeps text inside the box left-aligned for readability */
    }

    /* Center the red underlines on mobile */
    .footer-col h4::after {
        margin: 8px auto 0;
    }

    .contact-link {
        justify-content: center; /* Center icons */
    }

    .footer-copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .social-links-mini a {
        margin: 0 10px;
    }
}
/* --- PAYMENT ICONS FOOTER --- */
.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space between icons */
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.pay-label {
    font-size: 0.75rem;
    color: antiquewhite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pay-divider {
    color: whitesmoke;
    font-size: 1.2rem;
    margin: 0 5px;
    font-weight: 300;
}

.pay-logo {
    height: 24px; /* Default height for cards */
    width: auto;
    transition: all 0.3s ease;
}

/* Hover Effect: Full Color */
.pay-logo:hover {
    transform: scale(1.1);
    cursor: pointer;
}

/* Specific tweaks for odd-shaped logos */
img[alt="Amex"] {
    border-radius: 2px; /* Slight curve for the Amex box */
}

img[alt="Apple Pay"], img[alt="Google Pay"] {
    margin-left: 5px; /* Give wallets a little extra breathing room */
}

/* Mobile Tweak: Wrap nicely */
@media (max-width: 500px) {
    .payment-icons {
        gap: 12px;
        margin-bottom: 100px;
        justify-content: center;

    }
    .payment-logo {
        height: 20px; /* Slightly smaller on tiny screens */
        width: auto;


    }
    .pay-logo:hover {
    transform: scale(1.1);
    cursor: pointer;
}

    .pay-label, .pay-divider {
        display: none; /* Hide text dividers on tiny screens */
    }
}