﻿/* =============================================================
   LocalFillup â€” style.css
   Mobile-first, premium auto service website
   Design: Navy #0A2540 | Orange #FF6200 | Green #00A86B
============================================================= */

/* ----- CSS Custom Properties ----- */
:root {
  --navy: #FF6200;
  --navy-light: #FF7A1A;
  --navy-dark: #E55800;
  --orange: #FF6200;
  --orange-dark: #E55800;
  --orange-light: #FF7A1A;
  --green: #00A86B;
  --white: #FFFFFF;
  --light-bg: #FFFFFF;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #6B7280;
  --gray-800: #1F2937;
  --text-body: #1A1A1A;

  --font-body: 'Inter', system-ui, sans-serif;
  --font-heading: 'Poppins', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
  --max-width: 1180px;
  --nav-height: 72px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--orange); color: white; }

/* ----- Scrollbar ----- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 99px; }

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- Section Base ----- */
.section { padding: 80px 0; }

/* ----- Section Headers ----- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
  padding: 4px 14px;
  background: rgba(255,98,0,0.1);
  border-radius: 99px;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  padding: 12px 24px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 15px rgba(255,98,0,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,98,0,0.45);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; }
.btn-service {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius);
}
.btn-service:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,98,0,0.3);
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo svg { height: 44px; width: auto; }
.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: white;
  background: rgba(255,255,255,0.1);
}
.nav-link.nav-cta {
  background: var(--orange);
  color: white;
  padding: 9px 20px;
  box-shadow: 0 2px 10px rgba(255,98,0,0.4);
}
.nav-link.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255,98,0,0.5);
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav menu */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(10,37,64,0.98);
  backdrop-filter: blur(20px);
  padding: 20px;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-links.mobile-open .nav-link {
  font-size: 1rem;
  padding: 14px 18px;
  border-radius: var(--radius);
}
.nav-links.mobile-open .nav-cta {
  text-align: center;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .nav-links { display: flex !important; }
  .hamburger { display: none; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF6200 0%, #FF7A1A 40%, #E55800 100%);
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 20px 80px;
}

/* Tire tread pattern overlay (CSS only) */
.hero-tread {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(255,255,255,0.6) 20px,
      rgba(255,255,255,0.6) 22px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(255,255,255,0.4) 20px,
      rgba(255,255,255,0.4) 22px
    );
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255,98,0,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0,168,107,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  border-radius: 99px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.accent { color: var(--orange); }

.hero-subheadline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}
.stat-pill:hover { background: rgba(255,255,255,0.13); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2.5s infinite;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDot 2.5s infinite;
}
@keyframes scrollBounce {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

@media (min-width: 540px) {
  .hero-actions { flex-direction: row; justify-content: center; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 12px; }
}

/* ============================================================
   SERVICES
============================================================ */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  color: white;
  border: 2px solid transparent;
  transition: all var(--transition-slow);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,98,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255,98,0,0.2);
}

.service-icon-wrap {
  width: 68px;
  height: 68px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255,98,0,0.4);
}

.service-tag {
  display: inline-block;
  background: rgba(255,98,0,0.2);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.service-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 18px;
}

.service-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
}
.service-list li .fa-check {
  color: var(--green);
  font-size: 0.75rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: rgba(0,168,107,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-price {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.service-price strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--orange);
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-it-works {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,98,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

.step-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition-slow);
  border: 1px solid var(--gray-200);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,98,0,0.2);
}

.step-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: white;
  background: var(--orange);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 2px 10px rgba(255,98,0,0.4);
}

.step-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1;
}

.step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .step-card {
    border-radius: 0;
    border-right: 1px solid var(--gray-200);
  }
  .step-card:first-child { border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
  .step-card:last-child {
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    border-right: none;
  }
  .step-card:hover {
    transform: translateY(-4px);
    border-radius: var(--radius-xl);
    z-index: 1;
  }
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-us {
  background: #FF6200;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(255,98,0,0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 10% 90%, rgba(0,168,107,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.why-us .section-title { color: white; }
.why-label { background: rgba(255,98,0,0.2); }
.why-desc { color: rgba(255,255,255,0.65); }

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition-slow);
  backdrop-filter: blur(10px);
}
.trust-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,98,0,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}

.trust-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin-bottom: 8px;
}

.trust-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

@media (min-width: 540px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   BOOKING FORM
============================================================ */
.booking { background: var(--white); }

.booking-inner {
  max-width: 860px;
  margin: 0 auto;
}

.booking-header { text-align: center; margin-bottom: 48px; }

.form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.booking-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group-full { grid-column: 1 / -1; }

label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}
.required { color: var(--orange); }

input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,98,0,0.12);
}
input::placeholder, textarea::placeholder { color: var(--gray-400); }
select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}
textarea { resize: vertical; min-height: 110px; }

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}

.form-submit { margin-top: 8px; }
.form-trust {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 12px;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 48px 24px;
  animation: fadeInUp 0.5s ease;
}
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.success-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.success-msg {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 10px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.success-sub {
  font-size: 0.92rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}

@media (min-width: 600px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 599px) {
  .form-wrap { padding: 28px 20px; }
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { background: var(--light-bg); overflow: hidden; }

.carousel-wrap { position: relative; }

.carousel {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.stars {
  font-size: 1.3rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--navy);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
  font-weight: 500;
}
.testimonial-text::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(255,98,0,0.15);
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--orange);
}
.author-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.author-loc {
  font-size: 0.82rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 4px;
}
.author-loc .fa-location-dot { color: var(--orange); font-size: 0.75rem; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  box-shadow: 0 4px 12px rgba(255,98,0,0.3);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: all var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 599px) {
  .testimonial-card { padding: 28px 20px; }
}

/* ============================================================
   SERVICE AREA
============================================================ */
.service-area { background: var(--white); }

.area-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.area-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gray-200);
}
.area-map iframe { display: block; }

.area-cities {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cities-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin-bottom: 28px;
}
.city-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-body);
  font-weight: 500;
}
.city-item .fa-location-dot { color: var(--orange); font-size: 0.8rem; }

.area-cta p {
  color: var(--gray-600);
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.area-cta strong { color: var(--navy); }

@media (min-width: 900px) {
  .area-layout { grid-template-columns: 1.2fr 1fr; }
}

/* ============================================================
   FOOTER
============================================================ */
.footer-top {
  background: var(--navy);
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-brand {}
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
}
.trust-badge .fa-shield-halved { color: var(--orange); }
.trust-badge .fa-leaf { color: var(--green); }

.footer-col {}
.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--orange); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact li i {
  color: var(--orange);
  font-size: 0.9rem;
  width: 16px;
  flex-shrink: 0;
}
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--orange); }

.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  background: #FFFFFF;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  align-items: center;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-legal .fa-shield-halved { color: var(--green); }

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
}

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255,98,0,0.4);
  transition: all var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,98,0,0.5);
}

/* ============================================================
   ANIMATIONS
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children inside a grid */
.services-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.services-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.steps-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.steps-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.steps-grid .fade-in:nth-child(4) { transition-delay: 0.24s; }
.trust-grid .fade-in:nth-child(2) { transition-delay: 0.07s; }
.trust-grid .fade-in:nth-child(3) { transition-delay: 0.14s; }
.trust-grid .fade-in:nth-child(4) { transition-delay: 0.21s; }
.trust-grid .fade-in:nth-child(5) { transition-delay: 0.28s; }
.trust-grid .fade-in:nth-child(6) { transition-delay: 0.35s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   UTILITY
============================================================ */
[hidden] { display: none !important; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Print */
@media print {
  .navbar, .hero-scroll-indicator, .back-to-top, .carousel-controls { display: none; }
  .hero { min-height: auto; padding: 40px 20px; }
}



/* ── COLOR SCHEME OVERRIDE: White bg, Black text, Orange accents ── */
:root {
  --navy: #FF6200;
  --navy-light: #FF7A1A;
  --navy-dark: #E55800;
}

body { background: #ffffff; color: #1a1a1a; }

/* Navbar: white bg, dark links */
.navbar { background: rgba(255,255,255,0.97) !important; border-bottom: 2px solid #FF6200; }
.navbar.scrolled { background: rgba(255,255,255,0.99) !important; box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.nav-link { color: #1a1a1a !important; }
.nav-link:hover { color: #FF6200 !important; }

/* Hero: orange gradient instead of navy */
.hero { background: linear-gradient(135deg, #E55800 0%, #FF6200 50%, #FF7A1A 100%) !important; }
.hero-headline { color: #ffffff !important; }
.hero-subheadline { color: rgba(255,255,255,0.9) !important; }
.hero-badge { background: rgba(255,255,255,0.2) !important; color: #fff !important; border-color: rgba(255,255,255,0.4) !important; }
.stat-pill { background: rgba(255,255,255,0.15) !important; color: #fff !important; border-color: rgba(255,255,255,0.3) !important; }
.btn-outline-white { border-color: rgba(255,255,255,0.7) !important; color: #fff !important; }
.btn-primary { background: #1a1a1a !important; color: #fff !important; }
.btn-primary:hover { background: #333 !important; }

/* Services section: white bg, dark cards */
.services { background: #f8f8f8 !important; }
.service-card { background: #ffffff !important; border: 1px solid #e5e5e5 !important; color: #1a1a1a !important; }
.service-card:hover { border-color: #FF6200 !important; }
.service-name { color: #1a1a1a !important; }
.service-desc { color: #555 !important; }
.service-list li { color: #444 !important; }
.service-price { color: #FF6200 !important; }

/* Why Us: orange bg, white text */
.why-us { background: #FF6200 !important; }
.trust-card { background: rgba(255,255,255,0.12) !important; border-color: rgba(255,255,255,0.2) !important; }
.trust-name { color: #fff !important; }
.why-desc { color: rgba(255,255,255,0.85) !important; }

/* How it works: white bg */
.how-it-works { background: #f8f8f8 !important; }
.step-card { background: #ffffff !important; }
.step-title { color: #1a1a1a !important; }
.step-desc { color: #555 !important; }

/* Booking form: white bg */
.booking { background: #ffffff !important; }
.form-label { color: #1a1a1a !important; }
.form-input, .form-select, .form-textarea { border-color: #ddd !important; color: #1a1a1a !important; background: #fff !important; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #FF6200 !important; }
.btn-submit { background: #FF6200 !important; color: #fff !important; }

/* Footer: orange bg, white text */
.footer { background: #FF6200 !important; color: #fff !important; }
.footer-heading { color: #fff !important; }
.footer-link { color: rgba(255,255,255,0.85) !important; }
.footer-link:hover { color: #fff !important; }
.footer-copy { color: rgba(255,255,255,0.75) !important; }
.footer-legal { color: rgba(255,255,255,0.65) !important; }
.footer-tagline { color: rgba(255,255,255,0.85) !important; }
.trust-badge { background: rgba(255,255,255,0.2) !important; color: #fff !important; }
.footer-contact-item { color: rgba(255,255,255,0.85) !important; }
.footer-divider { border-color: rgba(255,255,255,0.2) !important; }

/* Section titles */
.section-title { color: #1a1a1a; }
.section-subtitle { color: #555; }
.section-label { color: #FF6200; }

/* Testimonials: white bg */
.testimonials { background: #f8f8f8 !important; }
.testimonial-card { background: #fff !important; border-color: #e5e5e5 !important; }
.testimonial-text { color: #333 !important; }
.reviewer-name { color: #1a1a1a !important; }
.reviewer-location { color: #777 !important; }
