/* ------------------------------------------
   GLOBAL DARK THEME STYLES
------------------------------------------ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #0d0d0d;        /* Dark black */
  color: #ffffff;             /* White text */
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

a {
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ------------------------------------------
   HEADER
------------------------------------------ */
/* FIXED HEADER HEIGHT */
.site-header {
  background: #111111;
  height: 60px;                 /* KEEP HEADER SMALL */
  line-height: 60px;            /* Vertical alignment */
  padding: 0;                   /* Remove extra spacing */
  border-bottom: 1px solid #1e1e1e;
}

/* ALIGN CONTENT IN HEADER */
.header-inner {
  height: 60px;
  display: flex;
  align-items: center;          /* Center vertically */
  justify-content: space-between;
}

/* LOGO FIX */
.logo img {
  height: 55px;                 /* Bigger logo inside header */
  margin-top: 2px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: 5px;              /* Slight offset to center visually */
  filter: brightness(1.4);      /* Make it pop */
}


.main-nav a {
  margin-left: 25px;
  font-size: 1.1rem;
}

.main-nav .cta {
  padding: 10px 18px;
  background: #00a8ff;
  color: white !important;
  border-radius: 6px;
  font-weight: bold;
}

/* ------------------------------------------
   HERO SECTION
------------------------------------------ */
.hero {
  background: linear-gradient(135deg, #000000, #0f0f0f);
  padding: 70px 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-copy h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #00a8ff;
}

.hero-copy p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  background: #00a8ff;
  color: white;
  border-radius: 6px;
  transition: 0.3s;
  border: none;
}

.btn:hover {
  background: #0085c7;
}

.btn-primary {
  background: #00a8ff;
}

/* ------------------------------------------
   BENEFITS
------------------------------------------ */
.benefits {
  padding: 50px 0;
  background: #0f0f0f;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 boxes per row */
  gap: 20px;                               /* space between boxes */
  max-width: 900px;                        /* center grid */
  margin: auto;
  padding: 0;
}

.benefit-grid li {
  background: #111;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  color: #00a8ff;
  border: 1px solid #1f1f1f;
  box-shadow: 0 0 10px rgba(0,168,255,0.12);
  font-size: 1rem;
  font-weight: 600;
}

/* ------------------------------------------
   FLEET
------------------------------------------ */
.fleet-preview, .fleet-section {
  padding: 60px 0;
}

.fleet-preview h2,
.fleet-section h2 {
  font-size: 2.2rem;
  color: #00a8ff;
  margin-bottom: 25px;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

.car-card {
  background: #111111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 15px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.car-card:hover {
  transform: translateY(-5px);
  border-color: #00a8ff;
  box-shadow: 0 0 20px rgba(0,168,255,0.4);
}

.car-card h3 {
  color: #00a8ff;
  margin-top: 12px;
}

.car-card .price {
  margin-top: 5px;
  font-weight: bold;
}

/* ------------------------------------------
   HOW IT WORKS
------------------------------------------ */
.how-it-works {
  padding: 60px 0;
  background: #0d0d0d;
}

.how-it-works h2 {
  color: #00a8ff;
  margin-bottom: 20px;
}

.steps {
  font-size: 1.2rem;
  line-height: 1.9;
}

/* ------------------------------------------
   TESTIMONIALS
------------------------------------------ */
.testimonials {
  padding: 60px 0;
  background: #111111;
}

.testimonials h2 {
  color: #00a8ff;
  margin-bottom: 20px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

blockquote {
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  padding: 20px;
  border-radius: 10px;
}

blockquote cite {
  display: block;
  margin-top: 10px;
  color: #00a8ff;
}

/* ------------------------------------------
   CTA BAND
------------------------------------------ */
.cta-band {
  background: #252525;
  color: #ffffff;
  text-align: center;
  padding: 50px 0;
}

.cta-band h3 {
  margin-bottom: 15px;
}

/* ------------------------------------------
   FOOTER
------------------------------------------ */
.site-footer {
  background: #000000;
  padding: 50px 0 20px;
  border-top: 1px solid #1f1f1f;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col h4 {
  color: #00a8ff;
  margin-bottom: 10px;
}

.footer-col nav a {
  display: block;
  margin-bottom: 8px;
  color: #cccccc;
}

.footer-col nav a:hover {
  color: #00a8ff;
}

copyright {
  text-align: center;
  margin-top: 20px;
  display: block;
}

/* ------------------------------------------
   FORMS (Apply & Contact)
------------------------------------------ */
form .input, 
textarea.input {
  width: 100%;
  padding: 12px;
  border: 1px solid #2a2a2a;
  background: #111111;
  color: white;
  border-radius: 8px;
  margin-bottom: 15px;
}

form label {
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
  color: #00a8ff;
}

.form-box {
  background: #111111;
  border: 1px solid #1f1f1f;
}

textarea {
  resize: none;
}

/* ------------------------------------------
   RESPONSIVE
------------------------------------------ */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .header-inner {
    flex-direction: column;
    gap: 15px;
  }
}
.logo img {
  height: 100px;     /* try 80, 90, 100 */
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

@media (max-width: 500px) {
  .benefit-grid {
    grid-template-columns: 1fr; /* 1 per row on small phones */
  }
}





/* ===============================
   MOBILE HEADER FIXES
   =============================== */
@media (max-width: 768px) {

  /* Smaller logo for mobile */
  .site-header .logo img {
    width: 120px;
    height: auto;
  }

  /* Header container */
  .header-inner {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
  }

  /* Make navigation vertical & centered */
  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
    text-align: center;
  }

  .main-nav a {
    font-size: 1rem;
  }

  /* Apply Now button fix */
  .main-nav .cta {
    padding: 8px 14px;
    font-size: 1rem;
    border-radius: 8px;
    margin-left: 0 !important;
  }

  /* Remove any extra spacing */
  .site-header {
    padding: 10px 0;
  }
}



/* ======================================
   MOBILE HERO FIX
====================================== */
@media (max-width: 768px) {

  /* Reduce hero spacing */
  .hero {
    padding: 50px 0 !important;
    text-align: center;
  }

  /* Reduce overlay box width */
  .hero .container > div {
    width: 90%;
    margin: 0 auto;
    padding: 18px 15px !important;
    border-radius: 12px !important;
  }

  /* Title smaller & cleaner */
  .hero h1 {
    font-size: 1.8rem !important;
    line-height: 2.2rem !important;
  }

  /* Subtitle smaller */
  .hero p {
    font-size: 1rem !important;
    line-height: 1.4rem !important;
  }

  /* Button smaller & centered */
  .hero .btn-primary {
    font-size: 1rem !important;
    padding: 10px 20px !important;
    width: auto !important;
    margin-top: 15px !important;
  }
}
