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

:root {
  --primary-color: #a84300; /* Changed to deep burnt orange */
  --primary-light: #d35400; /* Changed to medium orange */
  --primary-bright: #e67e22; /* Changed to bright orange */
  --primary-rgb: 168, 67, 0; /* Updated RGB for orange */
  --secondary-color: #db842c; /* Changed to blue accent */
  --secondary-light: #e39b5b; /* Lighter blue */
  --accent-color: #d35400; /* Changed to medium orange */
  --accent-color-rgb: 211, 84, 0; /* Updated RGB for accent */
  --mid-orange: #c26316;
  --mid-light-orange: #e56c18;
  --dark-bg: #121212;
  --dark-surface: #1e1e1e;
  --dark-surface-2: #2d2d2d;
  --light-surface: #333333;
  --text-color: #e0e0e0;
  --light-text: #a0a0a0;
  --border-color: #444444;
  --border-radius: 6px;
  --border-radius-lg: 16px;
  --transition: all 0.3s ease;
  --section-padding: 6rem 0;
}

body {
  font-family: "Mulish", "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--dark-bg);
  overflow-x: hidden;
  padding-top: 0; /* Remove padding-top to remove space */
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color);
}

h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 3.5rem; /* Increased space below the h2 */
}

h2::after {
  content: "";
  position: absolute;
  bottom: -0.75rem; /* Moves the underline farther below the text */
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 120px;
  height: 3px; /* Slightly thinner */
  border-radius: 2px; /* Less round */
  background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
  opacity: 0.9;
}


h3 {
  font-size: 1.8rem;
  position: relative;
  margin-bottom: 2rem;
}

/* Extra Services heading */
#extra-services h3 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

/* Prevent the underline from appearing on h3 headings */
h3::after {
  display: none;
}

@media (max-width: 600px) {
  .hero-content.container {
    margin-top: 125px; /* increase top margin on small screens */
    padding-left: 15px;
    padding-right: 15px;
  }
}

button {
  cursor: pointer;
  padding: 0.85rem 1.75rem;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.5px;
  background-color: var(--dark-surface);
  color: var(--text-color);
}

button:hover {
  transform: translateY(-2px);
  border-color: var(--border-color);
}

/* Utility Classes */
.text-center {
  text-align: center;

}

/* Hero Section */
#hero {
  /* Keep all your current styles exactly as they are */
  min-height: 100vh;
  margin-top: 0;
  padding-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0b0b0b;
  
  /* Modified fade - makes it sharper */
  mask-image: linear-gradient(
    to bottom,
    black calc(100% - 40px), /* More abrupt cutoff */
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    black calc(100% - 40px),
    transparent 100%
  );
}


/* HERO CONTENT - Stays exactly as is */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-video {
  mask-image: inherit; /* Gets same fade as hero */
  -webkit-mask-image: inherit;
}

#hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

#hero h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#hero h2::after {
  display: none; /* Remove underline from subtitle */
  
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.8) 15%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  flex-direction: column;
  min-width: 220px;
}

/* Remove the dot before the badge text */
.hero-badge::before {
  display: none;
}

.hero-badge > span {
  padding-left: 0; /* Remove left padding since there's no dot anymore */
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem; /* Consistent gap in all directions and all screen sizes */
}

.hero-buttons button {
  margin: 0; /* Remove margins since we're using gap */
  padding: 1rem 2rem;
}

@media (max-width: 768px) {
    .hero-buttons button {
        width: 100%;
        max-width: 250px;
    }
}

/* Scroll prompt in hero section */
.scroll-prompt {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-prompt:hover {
  opacity: 1;
}

/* ===== PHYSICS-BOUNCED ARROW ===== */
.bounce-arrow {
  color: var(--secondary-color);
  font-size: 2.2rem;
  animation: 
    gravityBounce 1.8s infinite cubic-bezier(0.28, 0.84, 0.42, 0.96),
    subtleBreath 3s infinite ease-in-out;
  transform-origin: center;
  will-change: transform, opacity;
  opacity: 0.9;
  filter: drop-shadow(0 2px 3px rgba(219, 132, 44, 0.2));
}

@keyframes gravityBounce {
  0% {
    transform: translateY(0) scaleY(1);
    animation-timing-function: ease-out;
  }
  25% {
    transform: translateY(-15px) scaleY(0.9);
    animation-timing-function: ease-in;
  }
  50% {
    transform: translateY(0) scaleY(1.05);
    animation-timing-function: ease-out;
  }
  65% {
    transform: translateY(-5px) scaleY(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: translateY(0) scaleY(1.01);
  }
  100% {
    transform: translateY(0) scaleY(1);
  }
}

@keyframes subtleBreath {
  0%, 100% { opacity: 0.88; }
  50% { opacity: 1; }
}

.scroll-prompt:hover .bounce-arrow {
  animation-duration: 1.6s;
  filter: drop-shadow(0 2px 6px rgba(219, 132, 44, 0.3));
}

.scroll-prompt span {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-color);
}

.btn-primary {
  /* Structure */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  z-index: 1;
  
  /* Dimensions & Text */
  padding: 0.9rem 2.1rem;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  
  /* Colors & Borders */
  background: linear-gradient(135deg, var(--mid-orange), var(--secondary-color));
  color: var(--dark-bg);
  border: none;
  
  /* Effects */
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  
  /* Transition */
    transition: 
    transform 0.3s ease-out,
    box-shadow 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    background 0.5s ease;
}

/* Hover State */
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 12px rgba(0, 0, 0, 0.2),
    0 2px 4px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--mid-light-orange), transparent 20%),
    color-mix(in srgb, var(--secondary-light), white 8%)
  );
}


/* Active State */
.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 
    0 2px 3px rgba(0, 0, 0, 0.2),
    inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Subtle Shine Effect */
.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.15) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: all 0.3s ease;
  opacity: 0;
}

.btn-primary:hover::after {
  opacity: 1;
  left: 100%;
  top: 100%;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--mid-light-orange),
    var(--secondary-light)
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
}

.btn-primary:hover::before {
  opacity: 1;
}


/* Mobile */
@media (max-width: 768px) {
  .btn-primary {
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
  }
}

/* Add this new animation */
@keyframes ambientGlow {
  0% { box-shadow: 0 0 10px rgba(219, 132, 44, 0.3); }
  50% { box-shadow: 0 0 16px rgba(219, 132, 44, 0.5); }
  100% { box-shadow: 0 0 10px rgba(219, 132, 44, 0.3); }
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--text-color);
  color: var(--text-color);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* General section styling */
section {
  position: relative;
  padding: var(--section-padding);
}

/* ===== MODERN SECTION TRANSITION ARROW ===== */
.section-transition {
  position: relative;
  height: 50px; /* Slightly taller for better motion */
  margin-top: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible; /* Allows for overshooting bounce */
}

.section-transition::before {
  content: "↓";
  color: var(--secondary-color);
  font-size: 2.2rem;
  position: absolute;
  animation: 
    physicsBounce 1.8s infinite cubic-bezier(0.37, 0.21, 0.21, 0.99),
    arrowGlow 3s infinite ease-in-out;
  filter: drop-shadow(0 2px 3px rgba(219, 132, 44, 0.2));
  will-change: transform, filter;
  opacity: 0.9;
}

@keyframes physicsBounce {
  0% {
    transform: translateY(0) scaleY(1);
    animation-timing-function: ease-out;
  }
  30% {
    transform: translateY(-18px) scaleY(0.92); /* Squash at peak */
    animation-timing-function: ease-in;
  }
  55% {
    transform: translateY(0) scaleY(1.06); /* Stretch on rebound */
  }
  70% {
    transform: translateY(-8px) scaleY(0.98); /* Secondary bounce */
  }
  85% {
    transform: translateY(0) scaleY(1.02);
  }
  100% {
    transform: translateY(0) scaleY(1);
  }
}

@keyframes arrowGlow {
  0%, 100% { 
    opacity: 0.85;
    filter: drop-shadow(0 2px 3px rgba(219, 132, 44, 0.2));
  }
  50% { 
    opacity: 1;
    filter: drop-shadow(0 2px 8px rgba(219, 132, 44, 0.3));
  }
}

/* Hover enhancement */
.section-transition:hover::before {
  animation-duration: 1.6s;
  filter: drop-shadow(0 2px 6px rgba(219, 132, 44, 0.35));
}

/* Services Section */
/* SERVICES SECTION */
#services {
  position: relative;
  background: var(--dark-bg);
  margin-top: -40px; /* Keep this matching the fade height */
  z-index: 10;
  padding-top: 25px;
  
  /* NEW: This clips the rectangle */
  clip-path: inset(40px 0 0 0); /* Cuts off the top 40px */
}

#services h2 {
  margin-bottom: 3.5rem;
  padding-top: 4rem; /* This now works with the clip */
}


/* ===== ULTRA-SMOOTH VEHICLE TOGGLE ===== */
.vehicle-toggle {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.2rem 1.6rem;
  max-width: 850px;
  margin: 0 auto 3.5rem;
  border-radius: 1.2rem;
  background: rgba(30, 30, 30, 0.4); /* Your original dark background */
  backdrop-filter: blur(20px) saturate(180%); /* Apple-level blur */
  border: 1px solid rgba(255, 255, 255, 0.1); /* More subtle border */
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05); /* Layered Apple-style shadows */
}

.vehicle-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  appearance: none;
  outline: none;
  tabindex: -1;
}

.vehicle-toggle label {
  cursor: pointer;
  padding: 0.75rem 1.8rem;
  border-radius: 12px; /* Apple's tighter radius */
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--light-text); /* Your original variable */
  background: rgba(255, 255, 255, 0.05); /* Slightly more transparent */
  border: 1px solid rgba(255, 255, 255, 0.1); /* More subtle border */
  backdrop-filter: blur(10px); /* Enhanced blur */
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1); /* Apple's smooth transition */
  user-select: none;
  letter-spacing: 0.3px; /* Your original spacing */
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.15); /* Subtler layered shadow */
}

/* Hover effect - Apple's smoothness with your colors */
.vehicle-toggle label:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary-color); /* Your color */
  transform: translateY(-1px); /* More subtle lift */
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.25),
    0 0 0 1px var(--secondary-color); /* Your glow effect */
  color: var(--text-color);
}

/* Breathing animation kept (now more subtle) */
@keyframes gentlePulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(210, 109, 0, 0.25);
  }
  50% {
    box-shadow: 0 4px 20px rgba(210, 109, 0, 0.35);
  }
}

/* ✅ Checked state - Your colors with Apple's polish */
.vehicle-toggle label.active {
  background: var(--primary-color);
  color: var(--text-color);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/* Sweep animation */
.vehicle-toggle label.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
  animation: sweep 0.8s ease-out forwards;
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
  opacity: 0; /* Will stay invisible after */
}

@keyframes sweep {
  0% {
    transform: translateX(-100%);
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}


/* Mobile adjustments */
@media (max-width: 768px) {
  .vehicle-toggle {
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 14px; /* Consistent curvature */
  }
  
  .vehicle-toggle label {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 10px; /* Tighter on mobile */
  }
}

.vehicle-toggle input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}



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

.service-card {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-lg);
  box-shadow:
    0 1px 2px rgba(255, 255, 255, 0.04),
    0 8px 30px rgba(0, 0, 0, 0.25);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  width: 100%;
  /* Modern gradient bar */
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    var(--secondary-color),
    transparent
  );
  opacity: 0.8;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 8px 35px rgba(0, 0, 0, 0.3);
}
/* .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  background: #181818; /* Between dark-bg (#121212) and dark-surface (#1e1e1e) */
  /*border-color: rgba(210, 109, 0, 0.3); /* Changed from rgba(255, 126, 48, 0.3) to blue */


.service-card h3 {
  color: var(--text-color);
  margin-bottom: 1.8rem;
  font-size: 1.7rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  padding-left: 15px;
  padding-right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-card ul {
  list-style: none;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.service-card ul li {
  margin-bottom: 0.9rem;
  position: relative;
  padding-left: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: bold;
  width: auto;
  height: auto;
  border-radius: 0;
  background-color: transparent;
}

.service-card .price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-color);
  text-align: right;
  position: static;
  z-index: 1;
  padding: 0;
  border-top: none;
  margin-top: 0;
}

.motorcycle-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.motorcycle-cards .service-card {
  flex: 1 1 320px;
  max-width: 500px;
}

/* Media queries for mobile */
@media (max-width: 768px) {
  /* Improved service cards for mobile */
  .service-cards {
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
    position: relative;
  }

  .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-right: 90px; /* Make room for the price */
    display: block;
    line-height: 1.3;
  }

  .service-card .price {
    font-size: 1.5rem;
    position: absolute;
    top: 1.2rem; /* Moved up from 1.5rem */
    right: 1.5rem;
  }

  .service-card ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }

  .service-card ul li::before {
    top: 5px;
    width: 5px;
    height: 5px;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 3rem 0;
  }

  h2 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 1.2rem;
    position: relative;
  }

  .service-card h3 {
    font-size: 1.3rem;
    padding-right: 80px; /* Make room for the price */
    line-height: 1.3;
  }

  .service-card .price {
    font-size: 1.4rem;
    top: 0.9rem; /* Moved up from 1.2rem */
    right: 1.2rem;
  }

  .service-card ul {
    margin-bottom: 1.2rem;
  }

  .service-card ul li {
    padding-left: 1.5rem;
    font-size: 0.9rem;
  }

  /* Compact view for xs screens - make cards more compact */
  .service-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .before-after-slider {
    height: 250px;
  }

  .booking-form-container {
    padding: 1.5rem;
  }
}

/* Extra Services (Addons) Section */
#extra-services {
  background-color: var(--dark-bg);
  position: relative;
  padding-top: 3rem; /* Match the bottom padding */
  padding-bottom: 3rem;
}

#extra-services h2 {
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
  padding-top: 3rem; /* 75% of the 4rem used in services */
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.addon-item {
  display: flex;
  align-items: center;
  background: var(--dark-surface);
  padding: 1.2rem 1.8rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.addon-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), transparent);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.addon-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 85, 164, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.addon-item:hover::after {
  opacity: 0.05;
}

.addon-item span {
  margin-left: 1.2rem;
  flex-grow: 1;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.addon-item small {
  display: block;
  font-size: 0.85em;
  color: var(--light-text);
  margin-top: 0.3rem;
  position: relative;
  z-index: 1;
}

/* Modern Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
  z-index: 1;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dark-surface-2);
  transition: 0.4s;
  border: 1px solid var(--border-color);
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: var(--text-color);
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--primary-color);
  border-color: var(--primary-light);
}

input:focus + .slider {
  border-color: var(--primary-light);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Service Area */
#service-area {
  background-color: var(--dark-bg);
  text-align: center;
  position: relative;
}

#service-area h2,
#service-area .section-title {
  margin-top: 0;
  padding-top: 0;
}

.service-area-content {
  max-width: 1200px;
  margin: 0 auto;
}

.service-area-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.service-area-map {
  position: relative;
  height: 600px; /* Increased from 500px to 600px */
  width: 100%;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#panzoom-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
  border-radius: var(--border-radius);
}

#panzoom-container:active {
  cursor: grabbing;
}

#map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  border-radius: var(--border-radius);
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.map-zoom-controls {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.map-zoom-controls button {
  background-color: rgba(18, 18, 18, 0.85);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  aspect-ratio: 1/1;
}

.map-zoom-controls button:hover {
  background-color: rgba(30, 30, 30, 0.95);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.map-zoom-controls button:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .map-zoom-controls {
    bottom: 10px;
    right: 10px;
  }

  .map-zoom-controls button {
    width: 36px;
    height: 36px;
  }
}

/* Call to action styling - updated */
.cta-container {
  margin-top: 10px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(45, 45, 45, 0.7), rgba(25, 25, 25, 0.85));
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 15;
}

@media (max-width: 1200px) {
  .service-area-map {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .service-area-map {
    height: 300px;
    width: calc(100vw - 2rem); /* keeps a 1rem margin on each side */
    margin-left: calc(-50vw + 50% + 1rem);
  
  }

  .cta-container {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  #service-area {
    padding: 40px 4%;
  }

  .service-area-map {
    height: 250px;
  }

  .cta-container {
    padding: 20px 15px;
  }

  .call-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* County styling */
.county {
  position: absolute;
  border-radius: 40%;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px dashed var(--accent-color);
  pointer-events: none;
}

.county::before {
  content: attr(data-name);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent-color);
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 3px 8px;
  border-radius: 10px;
  opacity: 0.85;
}

/* Call to action */
.cta-container {
  margin-top: 30px;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cta-container h3 {
  margin-bottom: 15px;
  color: var(--dark-text);
}

.call-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(var(--accent-color-rgb), 0.3);
  animation: pulse 2s infinite;
}

/* Animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(var(--accent-color-rgb), 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(var(--accent-color-rgb), 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(var(--accent-color-rgb), 0.3);
  }
}

/* Responsive styles */
/* Responsive adjustments */
/* Responsive styles */
@media (max-width: 1200px) {
  .service-area-map {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .service-area-map {
    height: 300px;
  }

  .cta-container {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  #service-area {
    padding: 40px 4%;
  }

  .service-area-map {
    height: 250px;
  }

  .cta-container {
    padding: 20px 15px;
  }

  .call-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}




/* Before After Slider */
#before-after {
  background-color: var(--dark-bg);
  margin-top: 3rem;
}

#before-after h2 {
  margin-bottom: 3.5rem;
}

.before-after-slider {
  position: relative;
  max-width: 900px;
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before-img {
  z-index: 1;
}

.after-img {
  z-index: 2;
  width: 50%; /* Initial width */
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.img-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: var(--secondary-color);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.slider-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--dark-surface-2);
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-handle::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--secondary-color);
  font-weight: bold;
}

/* Progress indicator for slider dragging */
.drag-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.before-after-slider.dragging .drag-indicator {
  opacity: 1;
}

/* Reviews Section */
#reviews {
  background-color: var(--dark-bg);
  margin-top: 3rem;
  overflow: hidden;
}

#reviews h2 {
  margin-bottom: 3.5rem;
}

.testimonials-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.testimonials-container {
  position: relative;
  overflow: hidden;
  min-height: 450px; /* Increased from 300px to match taller testimonials */
  margin-bottom: 1.5rem; /* Added margin at the bottom */
}

.testimonial {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  visibility: hidden;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  z-index: 2;
}

.testimonial.prev {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 1;
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.2),
    inset 0 0 0.5px rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.testimonial-content::after {
  content: "";
  position: absolute;
  bottom: 0; /* ⬅️ changed from top to bottom */
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    var(--secondary-color),
    transparent
  );
  opacity: 0.8;
  z-index: 2;
}

.testimonial-content p::-webkit-scrollbar {
  width: 6px;
}
.testimonial-content p::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.quote-icon {
  display: none; /* Hide quote icon */
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  flex-grow: 1; /* Allow text to take available space */
  overflow-y: auto; /* Add scrolling for extremely long testimonials */
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto; /* Push to bottom of container */
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: var(--secondary-color);
  margin-right: 0.5rem; /* Add space between name and stars */
}

.testimonial-rating {
  color: var(--secondary-color);
  font-size: 0.8rem; /* Slightly smaller stars */
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem; /* Increased from 2rem to provide more space */
  gap: 1.5rem;
}


.testimonial-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);

  backdrop-filter: blur(8px) saturate(130%);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.2),
    inset 0 0 0.5px rgba(255, 255, 255, 0.08);
  
  transition: all 0.25s ease;
}

.testimonial-arrow:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.25),
  color: var(--secondary-color);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot.active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonials-container {
    min-height: 500px; /* Increased container height for mobile */
  }

  .testimonial-controls {
    margin-top: 4rem; /* Slightly reduced from desktop but still enough space */
  }

  .testimonial-content {
    padding: 2rem;
    height: 450px; /* Increase height on mobile for better readability */
  }

  .testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    max-height: 380px; /* Limit max height */
  }

  .testimonial.active {
    transform: translateX(0);
  }

  .testimonial {
    transform: translateX(100%);
  }

  .testimonial.prev {
    transform: translateX(-100%);
  }
}

@media (max-width: 480px) {
  .testimonials-container {
    min-height: 550px; /* Further increased for the smallest screens */
  }

  .testimonial-controls {
    margin-top: 3rem; /* Slightly reduced space but still sufficient */
  }

  .testimonial-content {
    padding: 1.5rem;
    height: 500px; /* Even more height on very small screens */
  }

  .testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    max-height: 420px; /* Increase max height for smallest screens */
  }

  .testimonial-author {
    flex-direction: row; /* Keep flex row on mobile */
    align-items: center;
    gap: 0.5rem;
  }

  .testimonial-author h4 {
    font-size: 1rem; /* Slightly smaller font on mobile */
  }

  .testimonial-rating {
    margin-top: 0;
    font-size: 0.7rem; /* Even smaller stars on mobile */
  }
}

/* Remove old testimonial-carousel and testimonial-card styles */
.testimonial-carousel,
.testimonial-card {
  display: none;
}

/* About Section - Modern Redesign */
#about {
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}



#about::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  bottom: -200px;
  left: -100px;
  z-index: 0;
  /* Modernize this orb */
  background: radial-gradient(
    circle at center,
    rgba(219, 132, 44, 0.05) 0%,
    transparent 70%
  );
}

#about .container {
  position: relative;
  z-index: 1;
}

#about h2 {
  margin-bottom: 4rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.brand-story {
  max-width: 850px;
  background: rgba(30, 30, 30, 0.5);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.brand-story::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  top: 0;
  left: 0;
}

.brand-logo {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--text-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  display: inline-block;
  position: relative;
}

.brand-tagline {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  letter-spacing: 0.5px;
}

.brand-story p {
  font-size: 1.1rem;
  line-height: 1.8;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: var(--text-color);
}

#about .cta-container {
  width: 100%;
  margin-top: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  display: flex;
  justify-content: center;
}

#about .cta-button {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  transform: translateY(0);
}

#about .cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.6);
}

#about .cta-button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  top: 0;
  left: -100%;
  transform: skewX(-15deg);
  transition: all 0.5s ease;
}

#about .cta-button:hover::after {
  left: 100%;
}

@media (max-width: 768px) {
  .brand-story {
    padding: 2rem;
  }

  .brand-logo {
    font-size: 2.5rem;
  }

  .brand-tagline {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .brand-story {
    padding: 1.5rem;
  }

  .brand-logo {
    font-size: 2rem;
  }

  .brand-tagline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
}

/* Booking Overlay */
.booking-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.booking-form-container {
  background-color: var(--dark-surface);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid var(--border-color);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.booking-overlay.visible .booking-form-container {
  transform: translateY(0);
}

.booking-form-container::-webkit-scrollbar {
  width: 8px;
}

.booking-form-container::-webkit-scrollbar-track {
  background: var(--dark-surface-2);
  border-radius: 4px;
}

.booking-form-container::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

.booking-form-container::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text-color);
  transition: var(--transition);
  z-index: 10;
}

.close-btn:hover {
  color: var(--secondary-color);
  transform: rotate(90deg);
}

.form-step-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 10px;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--dark-surface-2);
  border: 1px solid var(--border-color);
  position: relative;
}

.step-dot.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.step-dot.completed {
  background-color: var(--primary-color);
  border-color: var(--primary-light);
}

.step-dot::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 2px;
  background-color: var(--border-color);
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}

.step-dot:last-child::after {
  display: none;
}

.step-dot.completed::after {
  background-color: var(--primary-color);
}

#booking-form button {
  margin-top: 1.5rem;
  margin-right: 0.5rem;
  position: relative;
  overflow: hidden;
}

#booking-form button:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--border-color) 0%, transparent 70%);
  top: 0;
  left: 0;
  opacity: 0.2;
}

/* Floating scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--dark-surface);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--text-color);
  border-top: 2px solid var(--text-color);
  transform: translateY(2px) rotate(45deg);
}

.scroll-to-top:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-light);
}

.scroll-to-top:hover::before {
  border-color: var(--dark-bg);
}

/* Improve transitions between sections */
section {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

section.fade-in {
  transform: translateY(30px);
  opacity: 0;
}

/* Navigation pills for quick section access */
.section-navigation {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}

.nav-pill {
  width: 10px;
  height: 10px;
  background-color: var(--dark-surface);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.nav-pill::before {
  content: attr(data-section);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--dark-surface);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-pill:hover::before,
.nav-pill.active::before {
  opacity: 1;
  visibility: visible;
}

.nav-pill:hover,
.nav-pill.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-light);
}

/* Update media queries */
@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
  }

  .section-navigation {
    right: 10px; /* Position closer to edge on mobile */
    gap: 8px; /* Smaller gap between pills */
  }

  .nav-pill {
    width: 8px; /* Slightly smaller dots on mobile */
    height: 8px;
  }

  .nav-pill::before {
    display: none; /* Hide the text labels on mobile */
  }

  /* Other mobile styles remain unchanged */
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }



  .navbar {
    padding: 0.5rem 1.2rem; /* Even smaller vertical padding */
  }

  .navbar-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    width: 20px; /* Even smaller toggle button */
    height: 16px;
  }

  .mobile-menu-toggle span {
    height: 2px; /* Already thin enough */
  }

  .mobile-menu {
    display: flex;
    padding: 0.8rem;
  }

  .mobile-menu button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }


  /* Make vehicle toggle labels full width on mobile */
  .vehicle-toggle {
    flex-direction: column;
    width: 100%;
  }

  .vehicle-toggle label {
    margin: 0.1rem 0;
    width: 100%;
    text-align: center;
  }

  /* Improved service cards for mobile */
  .service-cards {
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .service-card ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }

  .service-card .price {
    font-size: 1.5rem;
    position: absolute;
    top: 1.2rem; /* Moved up from 1.5rem */
    right: 1.5rem;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 3rem 0;
  }

  h2 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 1.2rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card ul {
    margin-bottom: 1.2rem;
  }

  .service-card ul li {
    padding-left: 1.5rem;
    font-size: 0.9rem;
  }

  .service-card .price {
    font-size: 1.4rem;
    top: 0.9rem; /* Moved up from 1.2rem */
    right: 1.2rem;
  }

  /* Compact view for xs screens - make cards more compact */
  .service-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .before-after-slider {
    height: 250px;
  }

  .booking-form-container {
    padding: 1.5rem;
  }
}

/* Add Google Font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&amp;display=swap");

/* Navigation Bar */
/* ===== Modern Slim Navbar ===== */
/* ===== Enhanced Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 0.8rem 0; /* Increased from 0.5rem */
  border-bottom: 1px solid rgba(219, 132, 44, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  margin-right: auto; /* Pushes other items to the right */
}

.navbar-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--secondary-color);
  background: rgba(219, 132, 44, 0.1);
}

.btn-nav-login, 
.btn-nav-book {
  padding: 0.6rem 1.2rem !important; /* Force equal size */
  font-size: 0.95rem;
  min-width: 90px; /* Ensures same width */
  text-align: center;
}

.btn-nav-login {
  background: transparent;
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-nav-login:hover {
  border-color: var(--secondary-color);
}

.nav-phone {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
   margin-right: 0.5rem
}

.nav-phone:hover {
  color: #db842c; /* Your orange highlight color */
}


/* Gradual transparent effect */
.navbar.scrolled {
  background: rgba(20, 20, 20, 0.4); /* Never fully transparent */
  backdrop-filter: blur(4px); /* Reduced blur when scrolled */
  border-bottom: 1px solid rgba(219, 132, 44, 0.05);
}

/* Mobile Menu Improvements */
.mobile-menu-toggle {
  display: none; /* hidden by default on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1100; /* above the menu */
  transition: transform 0.3s ease;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger to X animation */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 60px;
  right: 1rem;
  width: 220px;
  max-width: 90vw;
  background: var(--dark-surface);
  border-radius: var(--border-radius);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  z-index: 1050;

  display: flex;
  flex-direction: column;
  gap: 1rem;

  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu.active {
  display: flex; /* shown on mobile when active */
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu .nav-link {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.mobile-menu .nav-link:hover {
  background-color: rgba(219, 132, 44, 0.15);
  color: var(--secondary-color);
}

.mobile-menu .btn-nav-login,
.mobile-menu .btn-nav-book {
  width: 100%;
  margin: 0.3rem 0;
  padding: 0.8rem 0;
  font-size: 1rem;
  border-radius: 6px;
}

/* Optional backdrop overlay */
.mobile-menu-backdrop {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1040;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu .nav-phone {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
  border-radius: 6px;
}

.mobile-menu .nav-phone:hover {
  color: #db842c;
  background-color: rgba(219, 132, 44, 0.15);
}

.vehicle-toggle label.active {
  background: var(--primary-color);
  color: var(--text-color);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/* Sweep animation */
.vehicle-toggle label.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
  animation: sweep 0.8s ease-out forwards;
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
  opacity: 0; /* Will stay invisible after */
}

@keyframes sweep {
  0% {
    transform: translateX(-100%);
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Media Queries */

/* Show toggle and menu only on mobile screens */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}

/* Hide toggle and menu on larger screens */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

.navbar-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Responsive: hide navbar links on mobile */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}

/* Phone number styling */
.nav-phone {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-left: 0.0rem;
}

/* Desktop only phone number */
.nav-phone.desktop-only {
  display: inline-block;
}

/* Mobile only phone number */
.nav-phone.mobile-only {
  display: none;
}

/* Show mobile phone number on mobile, hide desktop phone */
@media (max-width: 768px) {
  .nav-phone.desktop-only {
    display: none;
  }

  .nav-phone.mobile-only {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-decoration: none;
    margin-left: auto;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
  }

  .nav-phone.mobile-only:hover {
    color: #db842c;
  }
}





.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; /* Take full width of the navbar */
  padding: 0; /* Remove padding as the navbar itself now has padding */
}

.login-page, 
.login-page * {
  font-family: "Mulish", "Roboto", -apple-system, sans-serif !important;
}

.login-page .navbar-brand {
  font-weight: 700 !important;;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: var(--secondary-color);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-nav-login {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.2rem;
}

.btn-nav-login:hover {
  background-color: var(--light-surface);
  border-color: var(--text-color);
}

/* ===== MODERN LOGIN PAGE ===== */
.login-page {
  background: var(--dark-bg);
  font-weight: normal;
}

.login-hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.login-container {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

.login-card {
  background: var(--dark-surface);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.login-card h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.login-card .subtitle {
  color: var(--light-text);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.input-group input {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-color);
  font-size: 1rem;
}

.forgot-password {
  display: block;
  text-align: right;
  margin-top: 0.5rem;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.btn-login {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  margin: 1.5rem 0;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-login:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.divider {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  color: var(--light-text);
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}

.divider span {
  padding: 0 1rem;
}

.social-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-btn {
  padding: 0.8rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.social-btn.google:hover {
  background: #4285F4;
  border-color: #4285F4;
  color: white;
}

.social-btn.apple:hover {
  background: #000;
  border-color: #000;
  color: white;
}

.signup-link {
  text-align: center;
  color: var(--light-text);
}

.signup-link a {
  color: var(--secondary-color);
  font-weight: 500;
}

/* Modal Styles (Keep these at the end) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

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

.modal-content {
  background: var(--dark-surface);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  width: 100%;
  max-width: 450px;
  position: relative;
}

.btn-nav-link {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  transition: color 0.3s ease;
}

.btn-nav-link:hover {
  color: var(--primary-color);
}

.btn-nav-book {
  /* Inherits .btn-primary styles */
  padding: 0.6rem 1.2rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 150;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Menu (keep existing but add this if missing) */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  right: 1rem;
  background: var(--dark-surface);
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-toggle.active span:first-child {
  transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
  }

  .section-navigation {
    right: 10px; /* Position closer to edge on mobile */
    gap: 8px; /* Smaller gap between pills */
  }

  .nav-pill {
    width: 8px; /* Slightly smaller dots on mobile */
    height: 8px;
  }

  .nav-pill::before {
    display: none; /* Hide the text labels on mobile */
  }

  /* Other mobile styles remain unchanged */
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .navbar {
    padding: 0.5rem 1.2rem; /* Even smaller vertical padding */
  }

  .navbar-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }
}

/* Fix for blue flash on button clicks */
button:focus,
a:focus,
input:focus,
.vehicle-toggle label:focus-within {
  outline: none;
  box-shadow: 0 0 0 2px var(--secondary-color);
}

/* Preserving accessibility with keyboard focus styles */
button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
.vehicle-toggle label:focus-within:not(:has(:focus-visible)) {
  box-shadow: none;
}

.popular-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius-lg) 0 var(--border-radius-lg) 0;
  transform: translateY(1px);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(210, 109, 0, 0.3);
}

@media (max-width: 768px) {
  .popular-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius) 0 var(--border-radius) 0;
  }
}

/* Extra Services List Styling */
.extra-services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Remove the special styling for the last item that was causing inconsistent widths */
.extra-services-list .extra-service-item:last-child:nth-child(odd) {
  grid-column: auto;
  max-width: none;
  justify-self: auto;
  margin-left: 0;
  margin-right: 0;
}

.extra-service-item {
  background: #181818;
  padding: 1.2rem 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  width: 100%; /* Ensure all items take full width of their grid cell */
}

.extra-service-item:hover {
  transform: translateY(-3px);
  border-color: rgba(210, 109, 0, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.extra-service-item .service-name {
  font-weight: 500;
  letter-spacing: 0.3px;
  padding-right: 1rem;
  flex: 1;
}

.extra-service-item .service-price {
  font-weight: 600;
  color: var(--secondary-color);
  white-space: nowrap;
}

.extra-service-item small {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--light-text);
}

@media (max-width: 768px) {
  .extra-services-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .extra-service-item {
    padding: 1rem 1.2rem;
  }
}

/* Animation for region change */
.service-area-map.region-changed {
  animation: mapPulse 0.5s ease-out;
}

@keyframes mapPulse {
  0% {
    transform: scale(0.98);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* New effect for pulsing markers */
.map-marker.pulse {
  animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.7);
  }
  100% {
    transform: scale(1);
  }
}

/* Effect for clicking on a marker */
.map-marker.clicked {
  animation: markerClick 0.6s ease-out;
}

@keyframes markerClick {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 165, 0, 0);
  }
  50% {
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 5px rgba(255, 165, 0, 0.5);
  }
}

/* Enlarged effect for hovering on markers */
.map-marker.enlarged {
  transform: scale(1.3);
  z-index: 3;
}

/* Highlighted effect for markers corresponding to hovered city */
.map-marker.highlighted {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
  z-index: 3;
}

.marker-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.3s, transform 0.3s;
  margin-bottom: 8px;
}

.marker-tooltip:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.map-marker:hover .marker-tooltip,
.marker-tooltip[style*="opacity: 1"] {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.city-area.highlighted {
  background-color: rgba(255, 165, 0, 0.7) !important;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.9) !important;
  transform: scale(1.3) !important;
  z-index: 20 !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
  border-width: 3px !important;
  animation: cityHighlight 2s ease-in-out;
}

@keyframes cityHighlight {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 165, 0, 1);
  }
}

.city-area.highlighted::before {
  opacity: 1;
  transform: translate(-50%, -120%) scale(1.1);
  background-color: rgba(255, 165, 0, 0.9);
  color: #000;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.county {
  position: absolute;
  border-radius: 40%;
  background-color: rgba(var(--primary-rgb), 0.05);
  border: 1px dashed rgba(var(--primary-rgb), 0.4);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.county::before {
  content: attr(data-name);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  opacity: 0.8;
}

/* Style the call button */
/* ===== [NEW VERSION - COPY FROM HERE] ===== */
#service-area .btn-call {
  background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  box-shadow: 0 4px 15px rgba(168, 67, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
}

#service-area .btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 84, 0, 0.5);
}

#service-area .btn-call::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s ease;
  z-index: -1;
}

#service-area .btn-call:hover::before {
  left: 100%;
}

.btn-call i {
  position: relative;
  top: 0px; /* moves icon 2 pixels down */
  margin-right: 8px;
  font-size: 1.1rem;
  animation: callPulse 2s infinite; /* Continuous subtle pulse */
}

@keyframes callPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); } /* Slightly enlarges the icon */
  100% { transform: scale(1); }
}

#service-area .btn-call:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(219, 132, 44, 0.5);
}
/* ===== [END COPY] ===== */

.btn-call i {
  margin-right: 8px;
  font-size: 1.1rem;
  animation: callPulse 2s infinite;
}

@keyframes callPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Specific styles for service area CTA */
#service-area .cta-container {
  margin-top: 2rem;
  margin-bottom: 0; /* Ensure no bottom margin */
  text-align: center;
  background: linear-gradient(145deg, rgba(35, 35, 35, 0.8), rgba(25, 25, 25, 0.85));
  padding: 2rem 2.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

#service-area .cta-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

#service-area .cta-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0;
}

.cta-headline {
  margin-bottom: 0.5rem !important;
  font-size: 1.4rem !important;
  letter-spacing: -0.3px;
  line-height: 1.4;
}

.cta-headline strong {
  display: block;
  margin-bottom: 0.2rem;
}

.cta-subtext {
  color: var(--secondary-color);
  font-weight: 600;
}

.cta-prompt {
  margin-top: 1rem !important;
  font-size: 0.95rem !important;
  opacity: 0.75;
  max-width: 80%;
  margin-left: auto !important;
  margin-right: auto !important;
}

#service-area .btn-call {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  padding: 0.9rem 1.8rem;
  margin-top: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.3s ease;
  background-size: 200% auto;
  background-position: 0% center;
  width: auto;
  display: inline-flex;
}

#service-area .btn-call:hover {
  background-position: 100% center;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.4);
}

#service-area .btn-call i {
  animation: subtle-pulse 2s infinite;
}

@keyframes subtle-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .cta-headline {
    font-size: 1.1rem !important;
  }

  #service-area .cta-container {
    padding: 1.8rem;
  }
}

@media (max-width: 768px) {
	.cta-prompt {
	  font-size: 0.8rem !important;
	  max-width: 100%;
  }
}

/* Footer styling */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-color);
  padding: 0;
  margin-top: 0; /* Remove margin as we now have the divider */
  position: relative;
  z-index: 1;
}

/* Curved divider styling */
.curved-divider {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  margin-top: -1px; /* Prevent any gap */
  margin-bottom: -1px; /* Connect seamlessly with footer */
}

.curved-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: top center;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding: 4rem 2rem;
}

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-color);
  text-decoration: none;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  color: var(--light-text);
  margin-top: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 2rem;
  height: 2px;
  background: var(--primary-color);
}

address {
  font-style: normal;
  line-height: 1.8;
}

address p {
  margin-bottom: 0.5rem;
  color: var(--light-text);
}

address a {
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

address a:hover {
  color: var(--secondary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: var(--light-text);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.newsletter-form {
  display: flex;
  margin-bottom: 1.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0 1.2rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--secondary-color);
  transform: none;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-icons.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.5rem;
  width: fit-content;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--light-text);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 2rem;
  }

  .footer-brand,
  .footer-section {
    grid-column: span 1;
  }

  .curved-divider {
    height: 80px; /* Smaller height on mobile */
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 2rem;
  }

  .footer-brand,
  .footer-section {
    grid-column: span 1;
  }

  .curved-divider {
    height: 60px; /* Even smaller on very small screens */
  }
}

/* Remove the border effect on sections */
section::after {
  display: none;
}

/* Add styles for the new action CTA section */
.action-cta {
  margin-top: 4rem;
  margin-bottom: 0;
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.9), rgba(18, 18, 18, 0.95));
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.action-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, 
    rgba(255, 145, 0, 0.8),
    rgba(255, 185, 0, 0.6),
    rgba(255, 145, 0, 0.8));
  background-size: 200% 100%;
  animation: rainbow-border 12s linear infinite;
  box-shadow: 0 0 12px rgba(255, 123, 0, 0.2);
}

.action-cta::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  /* Original noise texture */
  background: 
    radial-gradient(circle at center, rgba(219, 132, 44, 0.03) 0%, transparent 70%),
    url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="2" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.1"/></svg>');
  top: -150px;
  right: -150px;
  border-radius: 50%;
  z-index: 0;
  animation: subtle-float 12s ease-in-out infinite alternate;
}

.action-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.action-cta h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--text-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.3);
}

.action-cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.cta-feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(var(--secondary-rgb), 0.2);
}

.cta-feature i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-right: 1rem;
  filter: drop-shadow(0 0 5px rgba(var(--secondary-rgb), 0.5));
  transition: transform 0.3s ease;
}

.cta-feature:hover i {
  transform: rotate(15deg) scale(1.1);
}

.cta-feature span {
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-feature:hover span {
  letter-spacing: 0.5px;
}

.cta-special {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  padding: 1rem;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--border-radius);
  display: inline-block;
  position: relative;
  animation: text-glow 2s ease-in-out infinite alternate;
}

.cta-special::before,
.cta-special::after {
  content: "✦";
  position: absolute;
  color: var(--primary-color);
  opacity: 0.7;
  animation: spin 4s linear infinite;
}

.cta-special::before {
  left: 0.5rem;
}

.cta-special::after {
  right: 0.5rem;
  animation-delay: 0.5s;
}

.action-cta .cta-button {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.5);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  transform: scale(1) translateY(0);
  animation: pulse-grow 2s infinite;
  z-index: 1;
}

.action-cta .cta-button:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.6);
  animation: none;
}

.action-cta .cta-button:hover::before {
  opacity: 0.5;
}

.action-cta .cta-button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  top: 0;
  left: -100%;
  transform: skewX(-15deg);
  transition: all 0.6s ease;
  z-index: 1;
}

.action-cta .cta-button:hover::after {
  left: 100%;
}

/* New animations */
@keyframes rainbow-border {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes subtle-float {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(10px, 10px) rotate(1deg); }
}

@keyframes text-glow {
  0% { text-shadow: 0 0 5px rgba(var(--secondary-rgb), 0.3); }
  100% { text-shadow: 0 0 15px rgba(var(--secondary-rgb), 0.6); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes border-shine {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

@media (max-width: 768px) {
  .action-cta {
    padding: 2.5rem 1.5rem;
  }

  .action-cta h3 {
    font-size: 1.8rem;
  }

  .action-cta-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-feature {
    padding: 1rem;
  }

  .cta-special {
    font-size: 1.1rem;
    padding: 0.8rem;
  }

  .action-cta .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }
}

/* Expandable content for About section on mobile */
.expandable-content {
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
}

.read-more-btn {
  background-color: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  margin-top: 1rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: none; /* Hidden by default for desktop */
}

.read-more-btn:hover {
  background-color: var(--secondary-color);
  color: var(--dark-bg);
}

@media (max-width: 768px) {
  .expandable-content {
    position: relative;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .expandable-content.expanded {
    max-height: 1000px;
    opacity: 1;
    pointer-events: auto;
  }

  .expandable-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--dark-bg) 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  .expandable-content.expanded::before {
    opacity: 0;
  }

  .read-more-btn {
    display: inline-block;
  }
}


/* Styles for stacked cards in the complete/maintenance column */
.stacked-cards-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem; /* Match the gap from service-cards grid */
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  height: 100%;
  justify-content: space-between;
}

.stacked-cards-container .service-card {
  margin: 0;
  height: auto;
  flex: none; /* Don't force equal heights */
}

/* Add extra spacing to the maintenance card's top to create visual gap */
.stacked-cards-container .service-card:last-child {
  flex-grow: 1; /* Allow the maintenance card to take up remaining space */
}

@media (max-width: 768px) {
  .stacked-cards-container {
    gap: 1.5rem;
  }

  /* Ensure stacked cards look consistent with other cards in mobile view */
  .stacked-cards-container .service-card {
    padding: 1.5rem;
  }

  .stacked-cards-container .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-right: 90px; /* Make room for the price */
  }

  .stacked-cards-container .service-card .price {
    font-size: 1.5rem;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
  }
}

@media (max-width: 576px) {
  .stacked-cards-container {
    gap: 1rem;
  }

  .stacked-cards-container .service-card {
    padding: 1.2rem;
  }

  .stacked-cards-container .service-card h3 {
    font-size: 1.3rem;
    padding-right: 80px;
  }

  .stacked-cards-container .service-card .price {
    font-size: 1.4rem;
    top: 0.9rem;
    right: 1.2rem;
  }
}

.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
}

/* Map key styles */
.map-key {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: var(--border-radius);
  padding: 10px;
  z-index: 10;
  border: 1px solid var(--border-color);
}

.key-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.key-item:last-child {
  margin-bottom: 0;
}

.key-color {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  margin-right: 8px;
}

.key-label {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Position the map-key relative to map-zoom-controls */
@media (max-width: 768px) {
  .map-key {
    top: 10px;
    right: 10px;
    padding: 8px;
    transform: scale(0.9);
    transform-origin: top right;
  }

  .key-item {
    margin-bottom: 4px;
  }

  .key-color {
    width: 14px;
    height: 14px;
    margin-right: 6px;
  }

  .key-label {
    font-size: 0.8rem;
  }
}

/* Before & After Section */
#before-after {
  padding: 1rem 0;
}

#before-after h2 {
  margin-bottom: 3rem;
}

.before-after-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.before-after-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}


.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-image {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-line {
  display: none;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: grab;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-handle:active {
  cursor: grabbing;
}

.slider-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: bold;
}

.arrow-left,
.arrow-right {
  padding: 0 2px;
}

.slider-labels {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1;
  pointer-events: none;
}

.before-label,
.after-label {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.drag-instruction {
  margin-top: 5px;
  font-size: 15px;
  color: var(--light-text);
  text-align: center;
  font-weight: 600; /* slightly bolder for clarity */
  user-select: none; /* prevents accidental text selection */
}

.image-disclaimer {
  margin-top: 6px;
  font-size: 11px;
  color: var(--light-text-muted, #888); /* softer, muted color fallback */
  text-align: center;
  font-style: italic; /* subtle emphasis */
  line-height: 1.3;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  user-select: text;
}


@media (max-width: 768px) {
  .before-after-wrapper {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .before-after-wrapper {
    height: 300px;
  }

  .slider-labels {
    top: 10px;
    padding: 0 10px;
  }

  .before-label,
  .after-label {
    padding: 3px 6px;
    font-size: 12px;
  }
}

.map-disclaimer {
  display: none;
  text-align: center;
  padding: 10px 15px;
  margin-bottom: 15px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: var(--border-radius);
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.4;
}

.map-disclaimer i {
  color: var(--secondary-color);
  margin-right: 5px;
}

@media (max-width: 768px) {
  .map-disclaimer {
    display: block;
  }
}

@media (max-width: 480px) {
  #service-area {
    padding: 40px 4%;
  }

  .service-area-map {
    height: 250px;
  }

  .map-disclaimer {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .cta-container {
    padding: 20px 15px;
  }

  .call-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}
