* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body, html {
  height: 100%;
  background: #f4f4f4;
  overflow-x: hidden;
}

.nav {
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.nav .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #000;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.nav button:hover {
  transform: scale(1.1);
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  clip-path: circle(0% at 100% 0);
  transition: clip-path 0.6s ease-in-out;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu.open {
  clip-path: circle(150% at 100% 0);
}

.menu a {
  color: white;
  font-size: 2rem;
  text-decoration: none;
  margin: 1rem;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #999;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(0px);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.4rem;
  margin-top: 1rem;
}

.btn-primary {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #333;
}

.wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: url('../wave.svg') repeat-x;
  animation: waveMove 10s linear infinite;
}

@keyframes waveMove {
  from { background-position-x: 0; }
  to { background-position-x: 1000px; }
}

section.features {
  background: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(50px);
  opacity: 0;
}

.trustpilot-button {
  display: inline-block;
  font-size: 1rem;
  color: #00754a;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #00754a;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  opacity: 0;
}

.trustpilot-button:hover {
  background: #00754a;
  color: white;
}

@keyframes floatStar {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(5deg); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

footer {
  background: #111;
  color: #ccc;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

.reviews {
  background: #f4f4f4;
  padding: 4rem 2rem;
  text-align: center;
}

.reviews h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.reviews .star-badge {
  position: absolute;
  top: -30px;
  right: -40px;
  background: gold;
  color: #000;
  font-size: 1rem;
  padding: 0.3rem 0.6rem;
  border-radius: 1rem;
  animation: floatStar 2s ease-in-out infinite alternate;
}

.review-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.review-grid div {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero.short-hero {
  height: 30vh;
}

.logo-text {
  text-decoration: none; /* Removes underline */
  color: inherit;        /* Keeps the text color the same as before */
}
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 1400px; /* Increased to allow wider rows */
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .vehicle-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 480px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
}
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 2rem auto 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1100px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr); /* force 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .vehicle-grid {
    grid-template-columns: 1fr; /* full width on mobile */
  }
}

.toggle-review {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem auto;
  max-width: 600px;
}

.toggle-button {
  background-color: #f44336;
  color: white;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
}

.toggle-button:hover {
  background-color: #d32f2f;
}

.funny-review {
  background-color: #fff3f3;
  border: 1px dashed #f44336;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 8px;
  font-style: italic;
  color: #a33;
  width: 100%;
}

.funny-review em {
  font-style: normal;
  font-size: 0.85rem;
  color: #777;
}

@keyframes gasp {
  0% { transform: scale(1); }
  50% { transform: scale(1.4) rotate(15deg); }
  100% { transform: scale(1); }
}

@keyframes bounceCrown {
  0% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-4px) rotate(-10deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(-4px) rotate(10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.dramatic-name {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.dramatic-gasp {
  display: inline-block;
  animation: gasp 2s ease-in-out infinite;
}

.dramatic-crown {
  display: inline-block;
  font-size: 1.2em;
  animation: bounceCrown 3s ease-in-out infinite;
}


