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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #ffffff;
}

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

.navbar {
  height: 80px;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  display: flex;
  gap: 12px;
  align-items: center;
}

.logo-mark {
  font-size: 38px;
  font-weight: 900;
  font-style: italic;
  color: silver;
}

.logo strong {
  display: block;
  font-size: 26px;
  letter-spacing: 4px;
}

.logo small {
  display: block;
  letter-spacing: 7px;
  font-size: 11px;
}

nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
  text-transform: uppercase;
}

nav a:hover {
  color: #cfcfcf;
}

.call-btn {
  border: 1px solid white;
  padding: 12px 22px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
}

.hero {
  min-height: 680px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.45), rgba(0,0,0,0.15)),
    url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 40px;
  width: 48%;
  height: 58%;
  background:
    linear-gradient(145deg, #bfc3c7, #5f6265 45%, #1c1c1c);
  clip-path: polygon(10% 35%, 30% 15%, 73% 10%, 92% 32%, 100% 65%, 85% 82%, 25% 82%, 5% 62%);
  box-shadow: 0 0 60px rgba(255,255,255,0.18);
  opacity: 0.85;
}

.hero-content {
  max-width: 570px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 9px;
  color: #d0d0d0;
  font-size: 14px;
  margin-bottom: 18px;
}

.center {
  text-align: center;
}

.hero h1 {
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.88;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 21px;
  max-width: 430px;
  line-height: 1.5;
  color: #e2e2e2;
}

.service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
}

.service-line span {
  border-right: 1px solid #777;
  padding-right: 14px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
}

.primary-btn,
.secondary-btn {
  padding: 17px 30px;
  border-radius: 3px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

.primary-btn {
  background: #ffffff;
  color: #000000;
}

.secondary-btn {
  border: 1px solid white;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.trust-bar div {
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.trust-bar strong {
  display: block;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.trust-bar p {
  color: #b8b8b8;
  font-size: 13px;
}

.section {
  padding: 70px 5%;
  background: radial-gradient(circle at top, #161616, #050505 65%);
}

.section h2,
.about h2 {
  text-align: center;
  font-size: 34px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: #d3d3d3;
  margin-bottom: 36px;
}

.fleet-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.vehicle-card,
.service-card,
.contact-card {
  background: linear-gradient(180deg, #1a1a1a, #080808);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.vehicle-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.cybertruck .vehicle-image {
  background-image: url("images/cybertruck.jpg");
  background-size: cover;
  background-position: center;
  }

.modely .vehicle-image {
  background-image: url("images/model-y.jpg");
  background-size: cover;
  background-position: center;
  }

.slingshot .vehicle-image {
  background-image: url("images/slingshot.jpg");
  background-size: cover;
  background-position: center;
  }
  
 .vehicle-card .vehicle-image {
  display: block;
  height: 240px;
  opacity: 1;
  filter: none;
}

.vehicle-card {
  background: #080808;
} 

.vehicle-card h3,
.service-card h3 {
  padding: 22px 22px 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vehicle-card p,
.service-card p {
  padding: 0 22px 20px;
  color: #cfcfcf;
  line-height: 1.5;
}

.vehicle-card a {
  display: block;
  margin: 0 22px 22px;
  padding: 14px;
  border: 1px solid white;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}

.dark {
  background: #070707;
}

.service-card {
  padding: 20px 0;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding: 70px 5%;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.75)),
    url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
}

.about h2 {
  text-align: left;
}

.about ul {
  list-style: none;
  margin-top: 25px;
}

.about li {
  margin-bottom: 14px;
  color: #e0e0e0;
}

.about li::before {
  content: "✓ ";
  color: #ffffff;
  font-weight: bold;
}

.contact-card {
  padding: 35px;
}

.contact-card h2 {
  text-align: left;
  font-size: 28px;
}

.contact-card p {
  color: #cfcfcf;
  margin-bottom: 20px;
}

.contact-card a {
  display: block;
  border: 1px solid white;
  padding: 14px;
  text-align: center;
  margin-bottom: 12px;
}

footer {
  padding: 35px 5%;
  background: #030303;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #cfcfcf;
}

footer p {
  margin-top: 12px;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .trust-bar,
  .fleet-grid,
  .service-grid,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

.courier-section {
  padding: 70px 20px;
  background: #f7f7f7;
  color: #111;
}

.courier-section .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.courier-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.section-intro {
  max-width: 750px;
  margin: 0 auto 35px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-bottom: 30px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  text-align: left;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #111;
}

.service-card p {
  line-height: 1.5;
}

.courier-note {
  max-width: 800px;
  margin: 20px auto 30px;
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}
