/* ============================================
   Valley Rental — Single Page Site
   Techno / high-contrast dark palette
   Neon green on black, Orbitron + Montserrat
   ============================================ */

:root {
  /* Brand kit */
  --green: #7CFF00;   /* primary accent — all CTAs and buttons */
  --black: #000000;   /* primary background */
  --white: #FFFFFF;   /* wordmark + contrast text */
  --gray:  #A9A9A9;   /* secondary accents, borders, muted text */

  /* Derived (not in brand kit — needed for an all-black layout) */
  --surface: #111111; /* card / form backgrounds */
  --line:    #2E2E2E; /* hairline borders on dark */

  --radius: 6px;
  --shadow: 0 10px 30px rgba(0,0,0,0.55);
  --max-w: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
}

h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 0.5rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }

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

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

::selection { background: var(--green); color: var(--black); }

section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}

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

.section-sub {
  max-width: 620px;
  color: var(--gray);
  margin-top: 12px;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--black); }
.btn-primary:hover { background: var(--green); box-shadow: 0 0 22px rgba(124,255,0,0.55); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--gray); }
.btn-secondary:hover { border-color: var(--green); color: var(--green); }
.btn-outline {
  display: block;
  text-align: center;
  margin-top: auto;
  padding: 12px;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--black); }
.btn-call {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--green);
  color: var(--black);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 0 22px rgba(124,255,0,0.55); }
.btn-call-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.btn-call-number { font-family: 'Orbitron', 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 800; letter-spacing: 0.03em; }

/* Announcement banner */
.announce-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--green);
}
.banner-cta { color: var(--green); font-weight: 700; }

/* Header */
.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 14px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px;
  position: relative;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 225px; width: auto; flex-shrink: 0; }
.main-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
  flex: 1 0 100%;
  order: 3;
  justify-content: center;
}
.main-nav a:hover { color: var(--green); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  background: var(--green);
  color: var(--black);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav-phone:hover { box-shadow: 0 0 18px rgba(124,255,0,0.5); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

/* Hero */
.hero-inner {
  display: grid;
  gap: 32px;
}
.hero-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-top { grid-template-columns: 1fr; }
}
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background-color: #1A1A1A;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  filter: saturate(1.15) contrast(1.08);
  transition: opacity 1.4s ease;
}
.hero-carousel-img.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-carousel-img { transition: none; }
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.05; margin-bottom: 12px; }
.hero-tagline {
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green);
  margin-bottom: 20px;
}
.hero-sub { font-size: 1.1rem; color: var(--gray); max-width: 560px; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.stat-label { font-size: 0.85rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }

/* Fleet */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.fleet-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.fleet-img {
  aspect-ratio: 4 / 3;
  background-color: #1A1A1A;
  position: relative;
  overflow: hidden;
}
.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.price-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--green);
  color: var(--black);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
}
.fleet-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.fleet-desc { color: var(--gray); font-size: 0.9rem; margin-bottom: 14px; }
.fleet-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  font-size: 0.8rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  margin-bottom: 14px;
}
.fleet-specs strong { display: block; color: var(--gray); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; }
.fleet-price { display: flex; justify-content: space-between; font-weight: 700; font-size: 0.9rem; margin-bottom: 16px; color: var(--white); }
.fleet-note { color: var(--gray); font-size: 0.95rem; max-width: 720px; margin-top: 32px; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.process-step { position: relative; padding-left: 8px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: var(--green);
  color: var(--black);
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 16px;
}
.process-step p { color: var(--gray); font-size: 0.95rem; }

/* Why Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.why-icon { display: block; margin-bottom: 14px; line-height: 0; }
.why-icon svg { width: 30px; height: 30px; color: var(--green); }
.why-card p { color: var(--gray); font-size: 0.92rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.gallery-item {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: none;
  padding: 0;
  cursor: zoom-in;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: var(--green);
  transform: translateY(-2px);
}
.gallery-item img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: min(90vw, 1000px);
  max-height: 85vh;
  width: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--green); }
.lightbox-close { top: 16px; right: 24px; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* Service Area */
.area-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 24px;
}
.area-list li {
  border: 1px solid var(--green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}
.area-note {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 640px;
}
.area-note a { color: var(--green); font-weight: 600; }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  max-width: 780px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--green); transition: transform 0.2s ease; }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-item p { color: var(--gray); font-size: 0.95rem; padding-bottom: 20px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-top: 40px;
}
.contact-info h3 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 18px; font-size: 0.95rem; color: var(--gray); }
.contact-info a:hover { color: var(--green); }
.contact-info strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green); margin-bottom: 2px; }
.contact-cta {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.contact-cta h3 { margin-bottom: 4px; }
.contact-cta p { color: var(--gray); font-size: 0.95rem; margin-bottom: 10px; }
.contact-cta .btn { text-align: center; }

/* Footer */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  color: var(--gray);
  padding: 48px 24px 24px;
}
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  padding-bottom: 24px;
}
.footer-logo { height: 90px; width: auto; margin: 0 auto 14px; }
.footer-top p { color: var(--gray); font-size: 0.9rem; }
.footer-areas-label {
  margin-top: 20px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  font-weight: 600;
}
.footer-areas {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 0;
  margin: 8px 0 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--gray);
}
.footer-areas li:not(:last-child)::after {
  content: "\2022";
  margin: 0 10px;
  color: var(--line);
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray);
}
.footer-bottom a { color: var(--green); font-weight: 600; }

/* Responsive */
@media (max-width: 860px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 8px;
    z-index: 20;
  }
  .main-nav.nav-open { display: flex; }
  .main-nav a { padding: 12px 14px; border-radius: var(--radius); }
  .main-nav a:hover { background: #1A1A1A; color: var(--green); }
  .nav-toggle { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .site-header { padding: 16px; gap: 10px; flex-wrap: wrap; }
  .logo-img { height: 180px; }
  .main-nav { left: 16px; right: 16px; }
  .nav-phone { padding: 8px 12px; font-size: 0.8rem; }
}

@media (max-width: 340px) {
  .logo-img { height: 150px; }
}
