/* ================= BASE RESET ================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
}

h1, h2, h3 {
  margin: 0 0 15px 0;
}

p {
  line-height: 1.6;
  margin: 0 0 10px 0;
}

/* ================= HEADER ================= */
.site-header {
  background: #0F1E3A;
  padding: 20px;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.logo-area img {
  height: 60px;
}

.site-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ================= NAVIGATION ================= */
nav {
  background: #0F1E3A;
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 18px;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #B11226;
}

/* ================= HERO ================= */
.hero {
  background: url('../images/hero.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,30,58,0.85), rgba(15,30,58,0.75));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
}

.hero h2 {
  font-size: 42px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
  margin-top: 10px;
}

/* ================= BUTTONS ================= */
.button {
  background: #B11226;
  color: #fff;
  padding: 15px 36px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.button:hover {
  background: #8c0e1d;
  transform: translateY(-3px);
}

/* ================= SECTIONS ================= */
.section {
  padding: 100px 20px;
}

.section-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

/* ================= TRUST GRID ================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
  margin-top: 40px;
  font-weight: 600;
  font-size: 16px;
}

/* ================= VEHICLE GRID ================= */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 40px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
}

/* ================= INSTAGRAM STYLE FEATURED REEL ================= */
.featured-reel {
  max-width: 540px; /* Instagram natural width */
  margin: 60px auto 0 auto;
  background: #ffffff;
  border: 1px solid #dbdbdb; /* Instagram light grey border */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.featured-reel:hover {
  transform: translateY(-4px);
}

.featured-reel iframe {
  width: 100%;
  height: 640px;
  border: none;
  display: block;
}

/* ================= REVIEWS ================= */
.review-card {
  max-width: 700px;
  margin: 60px auto;
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* ================= FOOTER ================= */
footer {
  background: #0F1E3A;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-size: 14px;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: 0.3s;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
}

/* ================= SCROLL ANIMATION ================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .hero {
    height: 75vh;
  }

  .hero h2 {
    font-size: 28px;
  }

  .featured-reel {
    max-width: 95%;
  }

  .featured-reel iframe {
    height: 520px;
  }

  nav a {
    margin: 6px 10px;
    font-size: 14px;
  }

}