/* ============================================================
   WRWCParking — Global Stylesheet
   Font: Quicksand (Google Fonts)
   Theme: Black / White / Yellow (#F5C518)
   ============================================================ */

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

:root {
  --black:        #0a0a0a;
  --black-soft:   #111111;
  --black-card:   #161616;
  --black-border: #2a2a2a;
  --yellow:       #F5C518;
  --yellow-dark:  #d4a800;
  --yellow-glow:  rgba(245, 197, 24, 0.15);
  --white:        #ffffff;
  --white-muted:  #b0b0b0;
  --white-soft:   #e0e0e0;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   0.25s ease;
  --shadow-card:  0 4px 24px rgba(0,0,0,0.5);
  --shadow-glow:  0 0 20px rgba(245,197,24,0.2);
  --font:         'Quicksand', sans-serif;
  --header-h:     72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--yellow);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover, a:focus {
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--yellow);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--white-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn-primary:hover, .btn-primary:focus {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}

.btn-outline:hover, .btn-outline:focus {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--black-border);
}

.btn-ghost:hover, .btn-ghost:focus {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

/* ---------- Cards ---------- */
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow-glow);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.card-text {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--black-border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

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

.brand-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.brand-accent {
  color: var(--yellow);
}

.footer-brand-name {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-link.nav-highlight {
  color: var(--yellow);
  border: 1px solid rgba(245,197,24,0.35);
}

.nav-link.nav-highlight:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-brand-col .brand-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.6;
  margin-top: 8px;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--white-muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--white-muted);
}

.footer-accreditation {
  color: var(--yellow) !important;
  opacity: 0.7;
}

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(245,197,24,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,197,24,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,197,24,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-glow);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .accent {
  color: var(--yellow);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--white-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-graphic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(245,197,24,0.12) 0%, transparent 65%);
}

.hero-parking-icon {
  font-size: 10rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(245,197,24,0.4));
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--black-border);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 48px;
}

.hero-stat {
  background: var(--black-card);
  padding: 24px;
  text-align: center;
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--white-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Services Section ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--white-soft);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--white-muted);
  margin-top: 2px;
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--yellow);
  padding: 80px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.cta-band-sub {
  font-size: 1rem;
  color: rgba(0,0,0,0.65);
  margin-top: 8px;
}

.btn-dark {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}

.btn-dark:hover, .btn-dark:focus {
  background: var(--black-soft);
  color: var(--yellow);
  border-color: var(--black-soft);
  transform: translateY(-2px);
}

/* ---------- Process / Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--yellow);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.65;
}

/* ---------- Divider ---------- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 32px;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Alternating bg sections ---------- */
.bg-soft {
  background: var(--black-soft);
}

.bg-card {
  background: var(--black-card);
}

/* ---------- About / Split Sections ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-visual {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  position: relative;
  overflow: hidden;
}

.split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245,197,24,0.1) 0%, transparent 65%);
}

.split-visual span {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 24px rgba(245,197,24,0.3));
}

/* ---------- Pill Tags ---------- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--yellow-glow);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--yellow);
  margin: 4px 4px 4px 0;
}

/* ---------- Accordion (Ticket page) ---------- */
.accordion-item {
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color var(--transition);
}

.accordion-item.open {
  border-color: var(--yellow);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--black-card);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: left;
  transition: background var(--transition);
  gap: 12px;
}

.accordion-trigger:hover {
  background: rgba(245,197,24,0.05);
}

.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--black-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1rem;
  transition: transform var(--transition);
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  background: var(--black-soft);
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 24px;
}

.accordion-body.open {
  max-height: 400px;
  padding: 20px 24px;
}

.accordion-body p {
  font-size: 0.93rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white-soft);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-label .required {
  color: var(--yellow);
  margin-left: 3px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F5C518' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option {
  background: var(--black-card);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

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

.form-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--white-muted);
  margin-top: 6px;
}

/* ---------- Alert / Info boxes ---------- */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  line-height: 1.6;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.alert-warning {
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--white-soft);
}

.alert-warning .alert-icon {
  color: var(--yellow);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-info {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--black-border);
  color: var(--white-muted);
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--black-soft);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(245,197,24,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-title span {
  color: var(--yellow);
}

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--white-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--white-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--white-muted);
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.breadcrumb-sep {
  color: var(--black-border);
}

/* ---------- Two-col layout (ticket page) ---------- */
.ticket-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.sticky-aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.aside-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 20px;
}

.aside-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.aside-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aside-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--white-muted);
}

.aside-list li::before {
  content: '→';
  color: var(--yellow);
  flex-shrink: 0;
  font-weight: 700;
}

/* ---------- Contact Layout ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow-glow);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.93rem;
  color: var(--white-soft);
}

/* ---------- Team / Values Grid ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-graphic {
    max-width: 320px;
    aspect-ratio: 1;
  }

  .hero-parking-icon {
    font-size: 7rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-section .split-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .ticket-layout {
    grid-template-columns: 1fr;
  }

  .sticky-aside {
    position: static;
  }

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

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--black-border);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition);
  }

  .main-nav.open {
    max-height: 400px;
    padding: 16px 0 24px;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px;
    gap: 4px;
  }

  .nav-link {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .section {
    padding: 64px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .values-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ---------- Scroll reveal (JS hook) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}