:root {
  --gold: #d4af37;
  --silver: #ccc;
  --dark: #0c0c0c;
}

/* General Styling */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: white;
}
a{
    color: #fff;
    text-decoration:none;
}
/* Hero Showroom Section */
.hero-showroom {
  position: relative;
  height: 90vh;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3)),
              url("images/showroom.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  overflow: hidden;
}

.hero-showroom::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, #000, transparent);
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--silver);
  margin-bottom: 2rem;
}

/* Filter Form (inside hero) */
.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-form select {
  padding: 0.9rem 1rem;
  border-radius: 5px;
  border: none;
  background: rgba(20, 20, 20, 0.9);
  color: var(--silver);
  min-width: 180px;
}

.filter-form .btn {
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 5px;
  padding: 0.9rem 1.5rem;
  cursor: pointer;
  transition: 0.3s;
}

.filter-form .btn:hover {
  background: #f1d25c;
}

/* Cars for Sale Section */
.cars-sale {
  padding: 5rem 7%;
  text-align: center;
}

.cars-sale h2 {
  color: var(--gold);
  margin-bottom: 2.5rem;
  font-size: 2rem;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.car-card {
  position: relative;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.car-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.car-card:hover img {
  transform: scale(1.08);
}

.car-info {
  padding: 1rem;
}

.car-info h3 {
  color: var(--silver);
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.price {
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(to right, #1a1a1a, #000);
  text-align: center;
  padding: 4rem 1rem;
  color: var(--silver);
}

.cta-banner h2 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-banner .btn {
  background: var(--gold);
  color: #000;
  padding: 0.9rem 1.8rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-banner .btn:hover {
  background: #f1d25c;
}
/* 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;
}

/*Location Section*/
.locations{
    padding: 4rem 5%;
    text-align: center;
    background: #0f0f0f;
}
.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;
}
.location-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;
}

.location-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.08);
  transition: 0.5s;
}

.location-card:hover::before {
  top: 0;
}

.location-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.location-card i {
  font-size: 2.8rem;
  color: #d4af37;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.location-card:hover i {
  color: #f5d76e;
}

.location-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #f0f0f0;
  text-transform: uppercase;
}

.location-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .location-card {
        padding: 30px 20px;
    }
}
