/* ============================================================
   Cycle Chauffeur — Theme & Styles
   ============================================================
   All brand colours live here as CSS custom properties.
   Change --clr-primary and its variants to re-theme the site.
   ============================================================ */

:root {
  /* --- Brand palette --- */
  --clr-primary:       #2A0D3D;
  --clr-primary-dark:  #1A0827;
  --clr-primary-light: #6B3F7F;
  --clr-primary-subtle:#F3EDF6;

  /* Accent — gold for CTAs / highlights */
  --clr-accent:        #FAD301;
  --clr-accent-dark:   #D4B200;

  /* --- Neutrals --- */
  --clr-text:          #F9FAFB;
  --clr-text-muted:    rgba(255, 255, 255, 0.7);
  --clr-bg:            #2A0D3D;
  --clr-bg-alt:        #1A0827;
  --clr-bg-dark:       #0F0518;
  --clr-border:        rgba(255, 255, 255, 0.12);

  /* --- Typography --- */
  --ff-heading: 'Quicksand', sans-serif;
  --ff-body:    'Quicksand', sans-serif;
  --fs-base:    1rem;
  --lh-body:    1.6;

  /* --- Layout --- */
  --max-width:  1100px;
  --nav-height: 4rem;
  --radius:     0.5rem;
  --shadow-sm:  0 1px 3px rgb(0 0 0 / .08);
  --shadow-md:  0 4px 12px rgb(0 0 0 / .1);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: var(--clr-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }
a:visited { color: var(--clr-accent-dark); }

.container {
  width: min(var(--max-width), 100% - 2rem);
  margin-inline: auto;
}

/* ============================================================
   Navigation
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--clr-text);
  transition: color 0.2s;
}

.nav-brand:hover {
  color: var(--clr-accent);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--clr-text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--clr-accent);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  position: relative;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }

/* Open state */
.nav-toggle[aria-expanded="true"] span           { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before    { top: 0; transform: rotate(45deg); background: var(--clr-text); }
.nav-toggle[aria-expanded="true"] span::after     { top: 0; transform: rotate(-45deg); background: var(--clr-text); }

@media (max-width: 768px) {
  .nav-toggle { display: grid; place-items: center; }

  .nav-links {
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 0;
    padding-top: 1rem;
    background: var(--clr-bg);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links li { width: 100%; text-align: center; }

  .nav-links a {
    display: block;
    padding: 0.9rem 1rem;
    font-size: 1.1rem;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--clr-accent);
  color: var(--clr-text);
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.hero-logo {
  width: clamp(280px, 50vw, 480px);
  height: auto;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.hero .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.hero .subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--clr-primary-dark);
  max-width: 45ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: translateY(-1px); }

.btn-accent {
  background: var(--clr-accent);
  color: var(--clr-text);
}

.btn-accent:hover {
  background: var(--clr-accent-dark);
  color: var(--clr-text);
}

.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-bg-dark);
}

.btn-primary:hover {
  background: var(--clr-accent-dark);
  color: var(--clr-bg-dark);
}

.btn-hero {
  background: var(--clr-primary);
  color: #fff;
}

.btn-hero:hover {
  background: var(--clr-primary-dark);
  color: #fff;
}

/* ============================================================
   Section defaults
   ============================================================ */
section {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--clr-accent);
}

.section-subtitle {
  text-align: center;
  color: var(--clr-text-muted);
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* ============================================================
   How It Works
   ============================================================ */
.how-it-works {
  background: var(--clr-bg-alt);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--clr-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.step-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--clr-accent);
}

.step-icon svg {
  width: 2rem;
  height: 2rem;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--clr-accent);
}

.step p {
  color: var(--clr-text);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* ============================================================
   Services
   ============================================================ */
.services-list {
  list-style: none;
  columns: 2;
  column-gap: 3rem;
  max-width: 600px;
  margin-inline: auto;
}

.services-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 1.05rem;
  break-inside: avoid;
}

.services-list li:last-child {
  border-bottom: none;
  font-style: italic;
  color: var(--clr-text-muted);
}

.services-included {
  color: var(--clr-accent);
  font-weight: 600;
}

.services-note {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

/* ============================================================
   Credentials Strip
   ============================================================ */
.credentials-strip {
  background: var(--clr-accent);
  color: var(--clr-primary-dark);
  text-align: center;
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

.credentials-strip strong {
  font-weight: 700;
}

/* ============================================================
   Area
   ============================================================ */
.area {
  background: var(--clr-bg-alt);
}

.area-content {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.area-content p {
  margin-bottom: 1rem;
  color: var(--clr-text-muted);
}

.area-map {
  height: 350px;
  border-radius: var(--radius);
  margin-top: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  max-width: 480px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .contact-grid { max-width: 100%; }
}

.contact-intro {
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

.contact-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--clr-accent);
}

.contact-info ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.contact-info li {
  padding: 0.5rem 0;
  color: var(--clr-text-muted);
}

.contact-info li strong {
  color: var(--clr-text);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--clr-bg-dark);
  color: rgba(255 255 255 / .6);
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}

.footer-credential {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255 255 255 / .7);
}

.footer-credential a {
  color: var(--clr-accent);
  font-weight: 600;
}

.site-footer strong {
  color: rgba(255 255 255 / .85);
}

/* ============================================================
   Utilities
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
