:root {
  --yellow: #f7c600;
  --yellow-deep: #dfa900;
  --yellow-soft: #ffe36b;
  --ink: #111111;
  --ink-soft: #2b2b2b;
  --cream: #fff9dc;
  --panel: #fff2b8;
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 26px 70px rgba(17, 17, 17, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.38), transparent 20%),
    linear-gradient(180deg, #f4bf00 0%, #f7ca1d 18%, #f8f1d1 55%, #fffdf3 100%);
}

body.loading {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.18;
  pointer-events: none;
}

.container {
  width: min(1180px, calc(100% - 1.5rem));
  margin: 0 auto;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.85rem;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.26), transparent 22%),
    linear-gradient(180deg, #f9cc16, #f4bc00);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-core {
  position: relative;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
}

.loader-logo {
  position: relative;
  z-index: 2;
  width: 92px;
  filter: drop-shadow(0 12px 24px rgba(17, 17, 17, 0.18));
}

.loader-line {
  position: absolute;
  border-radius: 999px;
  border: 4px solid rgba(17, 17, 17, 0.08);
}

.loader-line-a {
  inset: 10px;
  border-top-color: var(--ink);
  animation: spin 1.5s linear infinite;
}

.loader-line-b {
  inset: 0;
  border-bottom-color: rgba(17, 17, 17, 0.75);
  animation: spinReverse 2.2s linear infinite;
}

.loader-title,
.loader-subtitle,
h1,
h2,
h3,
p {
  margin: 0;
}

.loader-title {
  font-family: "Archivo", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.loader-subtitle {
  max-width: 320px;
  text-align: center;
  color: rgba(17, 17, 17, 0.76);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 243, 187, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo,
.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.1);
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.brand-copy span,
.footer-brand span,
.footer-copy,
p {
  color: rgba(17, 17, 17, 0.76);
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 1.2rem;
}

.nav-links a,
.footer-links a {
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  opacity: 0.72;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta,
.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, #fff7d2 0%, #ffe36b 48%, #f7c600 100%);
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.12);
}

.btn-secondary,
.btn-dark {
  color: #fff8d3;
  background: var(--ink);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.18);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.wide-btn {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--ink);
}

.hero,
.section {
  position: relative;
  padding: 5.5rem 0;
}

.hero {
  padding-top: 4.5rem;
}

.hero-layout,
.contact-layout,
.bulk-layout {
  display: grid;
  gap: 1.5rem;
}

.hero-layout {
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Archivo", sans-serif;
  color: var(--ink);
}

h1 {
  margin-top: 1rem;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.93;
  max-width: 720px;
}

h2 {
  margin-top: 0.85rem;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.1;
}

p {
  line-height: 1.75;
}

.hero-text,
.section-heading p {
  max-width: 700px;
  margin-top: 1.25rem;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-highlights,
.app-grid,
.vehicle-grid,
.service-grid,
.contact-cards,
.bulk-points,
.benefit-strip,
.city-points {
  display: grid;
  gap: 1rem;
}

.hero-highlights {
  margin-top: 2rem;
}

.hero-highlights article,
.hero-brand-card,
.app-card,
.vehicle-card,
.service-card,
.info-form,
.contact-copy,
.contact-tile,
.about-copy,
.trust-grid div,
.benefit-strip,
.bulk-points div,
.city-panel,
.city-points div {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-highlights article,
.app-card,
.vehicle-card,
.service-card,
.contact-copy,
.info-form,
.contact-tile,
.about-copy,
.trust-grid div,
.bulk-points div,
.city-panel,
.city-points div {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.hero-highlights strong,
.bulk-points strong,
.benefit-strip strong,
.city-points strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: var(--ink);
}

.hero-panel {
  display: flex;
  align-items: center;
}

.hero-brand-card {
  width: min(100%, 460px);
  margin-left: auto;
  padding: 1.5rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 224, 85, 0.92)),
    rgba(255, 247, 208, 0.96);
}

.hero-brand-image {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.hero-route {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
  font-weight: 700;
}

.route-dots {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, var(--ink) 0 12px, transparent 12px 22px),
    rgba(17, 17, 17, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.hero-stats div {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.06);
}

.hero-stats small {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(17, 17, 17, 0.68);
}

.hero-stats strong {
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.compact-heading {
  margin-bottom: 0;
}

.trust-strip {
  position: relative;
  padding: 0 0 2rem;
}

.trust-grid {
  display: grid;
  gap: 1rem;
}

.trust-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Archivo", sans-serif;
}

.about-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 1rem;
}

.app-grid,
.vehicle-grid,
.service-grid {
  grid-template-columns: 1fr;
}

.app-card,
.vehicle-card,
.service-card {
  position: relative;
  overflow: hidden;
}

.app-card::before,
.vehicle-card::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247, 198, 0, 0.18), transparent 60%);
  pointer-events: none;
}

.app-badge,
.service-index,
.tile-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: rgba(17, 17, 17, 0.74);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-strip {
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(17, 17, 17, 0.92);
  color: #fff9dc;
}

.benefit-strip span,
.benefit-strip strong {
  color: inherit;
}

.bulk-layout,
.contact-layout {
  align-items: start;
}

.bulk-points,
.contact-cards {
  margin-top: 1.5rem;
}

.city-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 228, 94, 0.76)),
    rgba(255, 249, 226, 0.9);
}

.city-panel p {
  max-width: 860px;
}

.city-points {
  margin-top: 1.5rem;
}

.info-form {
  display: grid;
  gap: 1rem;
}

.info-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 700;
}

.info-form input,
.info-form textarea,
.info-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  color: var(--ink);
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.info-form input:focus,
.info-form textarea:focus,
.info-form select:focus {
  border-color: rgba(17, 17, 17, 0.36);
  box-shadow: 0 0 0 4px rgba(255, 208, 0, 0.26);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.92rem;
}

.site-footer {
  padding: 2.2rem 0 3rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 249, 228, 0.96);
}

.footer-inner {
  display: grid;
  gap: 1.1rem;
}

.footer-links {
  flex-wrap: wrap;
  gap: 1rem;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (min-width: 700px) {
  .container {
    width: min(1180px, calc(100% - 2rem));
  }

  .app-grid,
  .trust-grid,
  .contact-cards,
  .benefit-strip,
  .city-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vehicle-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .hero-layout,
  .bulk-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 2rem;
  }

  .about-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 2rem;
  }

  .hero-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vehicle-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .benefit-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .city-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 959px) {
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0.75rem;
    right: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 247, 208, 0.98);
    border: 1px solid rgba(17, 17, 17, 0.12);
    box-shadow: var(--shadow);
  }

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

@media (max-width: 699px) {
  .hero,
  .section {
    padding: 4rem 0;
  }

  .hero-brand-card {
    margin-right: auto;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}



/* ===== PRIVACY PAGE CENTER ===== */
.privacy-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 16px;
}

/* spacing */
.privacy-container h1 {
  text-align: center;
  margin-bottom: 20px;
}

.privacy-container h2 {
  margin-top: 30px;
}

.privacy-container p,
.privacy-container ul {
  margin-top: 10px;
}

.privacy-container ul {
  padding-left: 20px;
}

.privacy-container {
  background: rgba(255,255,255,0.7);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  padding: 30px;
}

.privacy-container h1 {
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}