:root {
  --bg: #000000;
  --text: #f5e1a4;
  --accent: #d4af37;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* HEADER */
.site-header {
  background: rgba(0,0,0,0.9);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

.hamburger {
  width: 25px;
  height: 2px;
  background: var(--accent);
  position: relative;
  display: block;
}

.hamburger::before,
.hamburger::after {
  content: "";
  width: 25px;
  height: 2px;
  background: var(--accent);
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* DESKTOP NAV: always visible */
.nav.collapse-nav {
  display: flex;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  margin: 0 1rem;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info a {
  margin-left: 1rem;
  color: var(--accent);
  text-decoration: none;
}

/* HERO */
.hero {
  text-align: center;
  padding: 4rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  opacity: 0.9;
}

/* SECTIONS */
.section {
  padding: 3rem 0;
  border-bottom: 1px solid #222;
}

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--accent);
  font-size: 2rem;
}

/* GRID 3 */
.grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 2rem;
  text-align: center;
}

.card, .vehicle {
  background: #111;
  padding: 1.5rem;
  border-radius: 8px;
}

.card h3, .vehicle h3 {
  margin-bottom: 0.5rem;
}

/* FLEET & PREVIEW IMAGES */
.service-icon {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  border-radius: 6px;
}

/* BOOKING WIDGET */
.booking .widget {
  max-width: 600px;
  margin: auto;
  background: #111;
  padding: 2rem;
  border-radius: 12px;
}

.field {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.field label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #333;
  border-radius: 6px;
  background: #000;
  color: var(--text);
  font-size: 1rem;
}

/* BOOKING BUTTON & CONFIRMATION */
.booking button {
  width: 100%;
  padding: 0.75rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.booking button:hover {
  opacity: 0.9;
}

.success {
  margin-top: 1rem;
  color: #4caf50;
  font-weight: 600;
}

/* CONTACT & FOOTER */
.contact p, .contact a {
  text-align: center;
  color: var(--text);
}

.contact a {
  color: var(--accent);
  text-decoration: none;
}

.site-footer {
  background: #111;
  text-align: center;
  padding: 1.5rem 0;
}

.site-footer p {
  font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .site-header .container,
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  /* MOBILE NAV: hidden until toggled */
  .nav.collapse-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

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

  .nav {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav a,
  .contact-info a {
    margin: 0.5rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .booking .widget {
    padding: 1rem;
  }

  .btn,
  .booking button {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .vehicle-preview img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-top: 1rem;
  }
}

/* 1) Desktop: always show nav */
.nav.collapse-nav {
  display: flex !important;
}

/* 2) Mobile: hide nav until toggled */
@media (max-width: 768px) {
  .nav-toggle {
    display: block !important;
  }

  .nav.collapse-nav {
    display: none !important;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .nav.collapse-nav.open {
    display: flex !important;
  }
}
