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

:root {
  --green: #1a7a3a;
  --green-dark: #0f5c28;
  --green-light: #e8f5ec;
  --green-glow: rgba(26, 122, 58, 0.15);
  --text: #1a1f2b;
  --muted: #556270;
  --soft: #f6f9f7;
  --border: #e2e6ea;
  --black: #111518;
  --white: #ffffff;
  --amber: #f59e0b;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ============== TOP BAR ============== */
.top-bar {
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar-tagline {
  opacity: 0.7;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.top-bar-phones {
  display: flex;
  gap: 20px;
}

.top-bar-phones a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s;
}

.top-bar-phones a:hover {
  opacity: 0.8;
}

/* ============== HEADER ============== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.logo-wrap img {
  width: 220px;
  height: auto;
}

.logo-motto {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover {
  background: var(--green-light);
  color: var(--green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

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

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

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

/* ============== SERVICES PAGE ============== */
.services-page-hero {
  background:
    radial-gradient(ellipse at 85% 20%, rgba(26,122,58,0.08) 0%, transparent 50%),
    linear-gradient(175deg, var(--white) 0%, #f5f9f6 100%);
  padding: 64px 0 56px;
  text-align: center;
}

.services-page-hero h1 {
  font-size: clamp(32px, 4.5vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 900;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-page-subtitle {
  color: var(--muted);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-cta {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.services-cta-box {
  background:
    radial-gradient(ellipse at 90% 50%, rgba(26,122,58,0.06) 0%, transparent 60%),
    linear-gradient(170deg, #f8fbf9 0%, var(--white) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-cta-box h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 12px;
}

.services-cta-box p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 24px;
}

.services-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .services-cta-box {
    padding: 36px 24px;
  }

  .services-cta-actions {
    flex-direction: column;
  }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px var(--green-glow);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--green-glow);
}

.btn-outline {
  border: 2px solid var(--green);
  color: var(--green);
  background: var(--white);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-sm {
  min-height: 40px;
  padding: 8px 20px;
  font-size: 13px;
}

/* ============== HERO ============== */
.hero {
  background:
    radial-gradient(ellipse at 85% 20%, rgba(26,122,58,0.08) 0%, transparent 50%),
    linear-gradient(175deg, var(--white) 0%, #f5f9f6 100%);
  padding: 72px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 900;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 900;
  margin-bottom: 18px;
}

.accent {
  color: var(--green);
}

.hero-text {
  color: var(--muted);
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge-icon {
  width: 42px;
  height: 42px;
  background: var(--green-light);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--green);
  flex-shrink: 0;
}

.hero-badge strong {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0,0,0,0.06);
}

/* ============== GOOGLE BAR ============== */
.google-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.google-bar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.google-score {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-score strong {
  font-size: 28px;
  font-weight: 900;
}

.google-stars {
  display: flex;
  gap: 1px;
}

a.google-count {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  text-decoration: none;
}

a.google-count:hover {
  color: var(--accent);
  text-decoration: underline;
}

.google-snippets {
  display: flex;
  gap: 28px;
  flex: 1;
  min-width: 0;
}

.google-snippet {
  flex: 1;
  min-width: 0;
}

.google-snippet p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.google-snippet strong {
  font-size: 12px;
  color: var(--text);
}

/* ============== SECTIONS ============== */
.section {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-heading h2,
.fleet-copy h2,
.booking-info h2,
.financing-copy h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 900;
}

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

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid.six {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: block;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  transition: gap 0.2s;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--green);
  margin-bottom: 16px;
}

.service-card h3 {
  color: var(--green-dark);
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.center-link {
  text-align: center;
  margin-top: 36px;
}

/* ============== SERVICE DETAILS ============== */
.service-detail {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.service-detail.alt {
  background: var(--soft);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  align-items: start;
}

.service-detail-grid.reverse {
  grid-template-columns: 0.6fr 1.4fr;
}

.service-detail-grid.reverse .service-detail-content {
  order: 2;
}

.service-detail-grid.reverse .service-detail-sidebar {
  order: 1;
}

.service-detail-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 900;
  margin-bottom: 16px;
}

.service-intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.service-detail-block {
  margin-bottom: 32px;
}

.service-detail-block h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-detail-list li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  padding-left: 24px;
  position: relative;
}

.service-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.service-detail-list.check li::before {
  content: '✓';
  background: none;
  color: var(--green);
  font-weight: 900;
  font-size: 14px;
  top: 2px;
  width: auto;
  height: auto;
}

.service-detail-list li strong {
  color: var(--text);
}

.service-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.service-detail-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.service-detail.alt .service-detail-sidebar-card {
  background: var(--white);
}

.service-detail-sidebar-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.service-detail-sidebar-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 920px) {
  .service-detail-grid,
  .service-detail-grid.reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-grid.reverse .service-detail-content {
    order: 1;
  }

  .service-detail-grid.reverse .service-detail-sidebar {
    order: 2;
  }

  .service-detail-sidebar {
    position: static;
  }
}

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

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.booking-info h2 {
  margin-bottom: 14px;
}

.booking-desc {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.booking-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
}

.booking-features li svg {
  flex-shrink: 0;
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.booking-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--muted);
}

.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--muted);
}

.booking-calendar {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cal-header button {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 16px;
  display: grid;
  place-items: center;
}

.cal-header span {
  font-weight: 800;
  font-size: 15px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.cal-day-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  padding: 6px 0;
}

.cal-empty {
  padding: 6px;
}

.cal-num {
  font-size: 13px;
  padding: 6px;
  border-radius: 6px;
  cursor: default;
  font-weight: 500;
}

.cal-num.active {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  border-radius: 8px;
}

.booking-powered {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* Value Props */
.value-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.value-prop {
  text-align: center;
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--green);
  margin: 0 auto 14px;
}

.value-prop strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}

.value-prop p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============== FLEET ============== */
.fleet {
  background: var(--soft);
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.fleet-copy h2 {
  margin-bottom: 16px;
}

.fleet-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

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

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  transition: box-shadow 0.25s;
}

.trust-badge:hover {
  box-shadow: var(--shadow-md);
}

.trust-badge svg {
  color: var(--green);
  flex-shrink: 0;
}

.trust-badge span {
  font-size: 13px;
  font-weight: 700;
}

.fleet-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ============== BRANDS ============== */
.brands {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 40px;
}

.brand-logo {
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.25s, transform 0.25s;
}

.brand-logo:hover {
  opacity: 1;
  transform: scale(1.06);
}

.brand-logo img {
  height: 60px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

/* ============== REVIEWS ============== */
.reviews-section {
  background: var(--soft);
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.review-top {
  margin-bottom: 14px;
}

.stars {
  display: flex;
  gap: 2px;
}

.review-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.review-card strong {
  font-size: 14px;
  color: var(--text);
}

.review-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.review-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.review-cta-inner svg {
  margin-bottom: 4px;
}

.review-cta-rating {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.review-cta-rating strong {
  font-size: 32px;
  color: var(--heading);
}

.review-cta-rating span {
  font-size: 14px;
  color: var(--muted);
}

.review-cta-inner > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

/* ============== FINANCING ============== */
.financing {
  background: var(--white);
}

.financing-box {
  background:
    radial-gradient(ellipse at 90% 50%, rgba(26,122,58,0.06) 0%, transparent 60%),
    linear-gradient(170deg, #f8fbf9 0%, var(--white) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.financing-copy h2 {
  margin-bottom: 16px;
}

.financing-copy p {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ============== FOOTER ============== */
.site-footer {
  background: var(--black);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
  padding: 56px 0 40px;
}

.footer-brand p {
  color: #94a3b0;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer-logo {
  width: 200px;
  background: var(--white);
  border-radius: 10px;
  padding: 8px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--white);
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col li a,
.footer-col li {
  color: #94a3b0;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.footer-col li a:hover {
  color: var(--white);
}

.footer-col svg {
  color: var(--green);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748b;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .google-snippets {
    display: none;
  }

  .google-bar-inner {
    justify-content: space-between;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 0;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-grid,
  .fleet-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.six {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .value-props {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 0 56px;
  }

  .section {
    padding: 56px 0;
  }

  .fleet-grid {
    gap: 32px;
  }

  .financing-box {
    padding: 36px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .top-bar-tagline {
    display: none;
  }

  .top-bar-phones {
    width: 100%;
    justify-content: center;
  }

  .logo-wrap img {
    width: 180px;
  }

  .logo-motto {
    font-size: 9px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-badges {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .card-grid.six {
    grid-template-columns: 1fr;
  }

  .value-props {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading h2,
  .fleet-copy h2,
  .booking-info h2,
  .financing-copy h2 {
    font-size: 28px;
  }
}
