@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
  --black: #111;
  --gold: #d4af37;
  --silver: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--black);
  color: var(--silver);
  overflow-x: hidden;
}
a{
    color: #fff;
    text-decoration:none;
}
/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('images/hero-image.webp') no-repeat center center/cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: var(--silver);
  margin-bottom: 0.8rem;
}

.gold {
  color: var(--gold);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.buttons {
  display: flex;
  gap: 1rem;
}

.btn, .btn-outline {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn {
  background: var(--gold);
  color: var(--black);
}

.btn:hover {
  box-shadow: 0 0 15px var(--gold);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* Featured Section */
.featured{
  padding: 4rem 5%;
  text-align: center;
  background: #0f0f0f;
}

.featured h2 {
  color: var(--gold);
  margin-bottom: 2rem;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.car-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 1rem;
}

.car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.car-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.car-card h3 {
  margin: 1rem 0 0.3rem;
  color: var(--silver);
  font-weight: 600;
}

.car-card .status {
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.car-card .price {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold), #b8952f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px var(--gold);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}
/* Explore Section */
.explore {
  padding: 4rem 5%;
  text-align: center;
  background: #1a1a1a;
}
.explore h2 {
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.search-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.search-form select, .search-form button {
  padding: 0.8rem 1rem;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}
.search-form select {
  background: #222;
  color: var(--silver);
  border: 1px solid #333;
}
.search-form button {
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  transition: 0.3s;
}
.search-form button:hover {
  box-shadow: 0 0 10px var(--gold);
}

/* === WHY CHOOSE US SECTION === */
.why {
  background: radial-gradient(circle at top left, #1a1a1a, #0a0a0a);
  color: #fff;
  text-align: center;
  padding: 30px;
  position: relative;
}

.why h2 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.why-card {
  flex: 1 1 250px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  padding: 40px 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.05);
  transition: 0.4s ease;
}

.why-card:hover::before {
  top: 0;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.25);
}

.why-card h3 {
  font-size: 1.4rem;
  color: #f5d76e;
  margin-bottom: 15px;
}

.why-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why {
    padding: 80px 7%;
  }

  .why h2 {
    font-size: 2rem;
  }
}

/*Location Section*/
.locations{
    padding: 4rem 5%;
    text-align: center;
    background: #0f0f0f;
}
.location-card{
    
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 15px;
}

.location-grid ul {
  list-style: none;
  padding: 0;
}

.location-grid li {
  padding: 5px 0;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.testimonials h2 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 250px;
  background: linear-gradient(145deg, #0e0e0e, #1c1c1c);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial:hover {
  transform: scale(1.03);
  border-color: #d4af37;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.testimonial p {
  font-style: italic;
  color: #eaeaea;
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.testimonial h4 {
  color: #f5d76e;
  font-size: 1rem;
}

/* Subtle moving gold shine effect behind testimonials */
.testimonials::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 60%;
  height: 160%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 60%);
  transform: rotate(25deg);
  animation: glowMove 12s infinite linear;
}

@keyframes glowMove {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(50%, 50%) rotate(360deg);
  }
}

/* === Services Section === */
.services {
  background-color: #0e0e0e;
  color: #fff;
  padding: 50px;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  color: #d4af37; /* gold accent */
  margin-bottom: 60px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 30px 20px;
  border-radius: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.08);
  transition: 0.5s;
}

.service-card:hover::before {
  top: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.service-card i {
  font-size: 2.8rem;
  color: #d4af37;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.service-card:hover i {
  color: #f5d76e;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #f0f0f0;
  text-transform: uppercase;
}

.service-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services {
    padding: 70px 8%;
  }

  .services h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 30px 20px;
  }
}

/* === CTA BANNER SECTION === */
.cta-banner {
  background: 
  url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?auto=format&fit=crop&w=1950&q=80") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 10%;
  position: relative;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: 2.8rem;
  color: #d4af37;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Button styles (reuse your existing theme) */
.btn {
  background: #d4af37;
  color: #000;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #f5d76e;
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #d4af37;
  color: #d4af37;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 90px 7%;
  }

  .cta-banner h2 {
    font-size: 2rem;
  }

  .cta-banner p {
    font-size: 1rem;
  }
  .buttons{
      display: flex;
      flex-direction:column;
  }
}
