/* BNA Header */
.bna-header {
  background-color: #000;
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
  padding-bottom: 10px;
}

.logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 0 10px;
  height: auto;
}

.car-icon {
  height: 60px;
}

.logo img {
  height: 100px;
  width: 1250px;
}

.logo-text h1 {
  font-weight: bold;
}

.logo-text p {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 1px;
  font-weight: 400;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.main-nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color: #d3192b;
}

.whatsapp-icon {
  height: 16px;
  margin-left: 5px;
  vertical-align: middle;
}

/* =========================
   CAROUSEL SECTION
========================= */
.carousel {
  position: relative;
  width: 100%;
  max-height: 800px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Container holding the track */
.carousel-container {
  width: 100%;
  overflow: hidden;
}

/* Track holding all slides */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Each slide */
.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Carousel buttons */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
  font-size: 24px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.carousel-button-left {
  left: 15px;
}

.carousel-button-right {
  right: 15px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .carousel-button {
    font-size: 18px;
    padding: 8px 12px;
  }
}

/* =========================
   HERO MESSAGE SECTION
========================= */
.hero-message {
  background-color: #1a1a1a; /* Dark theme to match site */
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.hero-text .underline {
  width: 60px;
  height: 6px;
  background-color: #2a75bb; /* Blue underline */
  margin: 10px auto 20px;
}

.hero-text p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
}

/* Icons row */
.hero-icons {
  font-size: 28px;
  margin-bottom: 30px;
  color: #fff;
}

.hero-icons .grid-icon {
  margin: 0 20px;
  cursor: pointer;
}

/* Button section */
.compare-btn {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 30px;
}

.compare-btn:hover {
  background-color: #ddd;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: #000;
}

.vehicle-card {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: transform 0.2s;
}
.vehicle-card:hover {
  transform: translateY(-5px);
}

.vehicle-card img {
  width: 100%;
  display: block;
}

.vehicle-card .info {
  padding: 16px;
  color: #f5f5f5;
  position: relative;
}

.vehicle-card h3 {
  font-size: 1.3rem;
  margin: 0 0 6px;
}

.vehicle-card p {
  margin: 4px 0;
  font-size: 0.95rem;
}

.enquire-btn {
  margin-top: 12px;
  width: 100%;
  padding: 10px 0;
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.enquire-btn:hover {
  background: #218838;
}

@media (max-width: 768px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
}

.vehicle-listings {
  background: #111;
  padding: 40px 20px;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vehicle-card {
  background: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: scale(1.05);
}

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

.vehicle-info {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  flex-grow: 1;
}

.vehicle-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.vehicle-info p {
  margin-bottom: 8px;
  font-size: 1rem;
}

.vehicle-info .price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffb6c1;
}

.enquire-btn {
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1rem;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.enquire-btn:hover {
  background-color: #218838;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
}


body {
  background: #000; /* optional for full dark feel */
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.sell-my-car-form {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 40px;
  max-width: 100%;
}

.sell-my-car-form h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.sell-my-car-form input,
.sell-my-car-form textarea {
  padding: 12px;
  background: #2a2a2a;
  border: 2px solid #ffcccc;
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  width: 100%;
}

.sell-my-car-form textarea {
  grid-column: span 2;
  min-height: 120px;
  resize: vertical;
}

.sell-my-car-form .consent {
  display: block;
  margin: 20px 0;
  text-align: center;
  font-size: 0.95rem;
}

.sell-my-car-form button {
  display: block;
  background: #28a745;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  margin: 0 auto;
  transition: background 0.2s ease;
}

.sell-my-car-form button:hover {
  background: #218838;
}

/* VEHICLE LISTING SECTION (unchanged) */
.vehicle-listings {
  background: #000;
  padding: 40px 20px;
}

/* FORM SECTION */
.sell-my-car-form {
  
  background: #1a1a1a;
  color: #fff;
  padding: 60px 40px;
  width: 100%;
}

.sell-my-car-form h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff;
}

.sell-my-car-form form {
  max-width: 1200px;
  margin: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.sell-my-car-form input,
.sell-my-car-form textarea {
  padding: 12px;
  background: #2a2a2a;
  border: 2px solid #ffcccc;
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  width: 100%;
}

.sell-my-car-form textarea {
  grid-column: span 2;
  min-height: 120px;
  resize: vertical;
}

.sell-my-car-form .consent {
  display: block;
  margin: 20px 0;
  text-align: center;
  font-size: 0.95rem;
}

.sell-my-car-form button {
  display: block;
  background: #28a745;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  margin: 0 auto;
  transition: background 0.2s ease;
}

.sell-my-car-form button:hover {
  background: #218838;
}

/* Section full width with dark background */
.sell-my-car-section {
  width: 100%;
  background-color: #111;
  color: #fff;
  padding: 60px 30px;
  box-sizing: border-box;
}

.sell-my-car-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #fff;
}

/* Form container centered */
.sell-my-car-form {
  max-width: 1200px;
  margin: 0 auto;
}

/* Two-column layout */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input,
.form-row textarea {
  flex: 1 1 48%;
  padding: 12px;
  background: #2a2a2a;
  border: 2px solid #ffb6c1; /* light pink */
  color: #fff;
  font-size: 1rem;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-row textarea {
  flex: 1 1 100%;
  min-height: 120px;
  resize: vertical;
}

.checkbox-row {
  justify-content: center;
  font-size: 0.95rem;
  color: #ccc;
}

.checkbox-row input[type="checkbox"] {
  margin-right: 10px;
}

/* Submit button */
.sell-my-car-form button {
  background-color: #28a745;
  border: none;
  color: white;
  padding: 14px 40px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.2s;
  margin: 0 auto;
  display: block;
}

.sell-my-car-form button:hover {
  background-color: #218838;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .form-row input,
  .form-row textarea {
    flex: 1 1 100%;
  }
}

/* FINANCE FORM SECTION */
.finance-form-section {
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  padding: 60px 30px;
  box-sizing: border-box;
}

.finance-form-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #fff;
}

.finance-form h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  border-bottom: 1px solid #444;
  padding-bottom: 6px;
  color: #ffb6c1;
}

/* FORM LAYOUT */
.finance-form {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row input,
.form-row select,
.form-row textarea {
  flex: 1 1 300px;
  padding: 12px;
  background: #2a2a2a;
  border: 2px solid #ffb6c1; /* BNA-like pink */
  color: #fff;
  font-size: 1rem;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-row textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;
}

/* AGREEMENT CHECKBOX */
.form-row.agreement label {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
}

/* SUBMIT BUTTON */
.finance-form button {
  background-color: #28a745;
  border: none;
  color: white;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.2s;
  margin: 20px auto 0;
  display: block;
  width: 200px;
}

.finance-form button:hover {
  background-color: #218838;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .finance-form button {
    width: 100%;
  }
}

/* CONTACT FORM SECTION */
.contact-form-section {
  width: 100%;
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 30px;
  box-sizing: border-box;
}

.contact-form-section h2,
.contact-form-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-info ul {
  list-style-type: none;
  padding: 0;
}

.contact-info li {
  font-size: 1rem;
  margin-bottom: 10px;
}

.contact-info a {
  color: #ffb6c1;
  text-decoration: none;
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
}

.contact-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-row input,
.contact-form .form-row textarea,
.contact-form .form-row select {
  flex: 1 1 48%;
  padding: 12px;
  background: #2a2a2a;
  border: 2px solid #ffb6c1;
  color: #fff;
  font-size: 1rem;
  border-radius: 4px;
  box-sizing: border-box;
}

.contact-form .form-row textarea {
  flex: 1 1 100%;
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background-color: #28a745;
  border: none;
  color: white;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  margin: 0 auto;
  display: block;
  width: 200px;
  transition: background 0.2s;
}

.contact-form button:hover {
  background-color: #218838;
}

/* Branch Details and Sales Contacts */
.branch-details ul {
  list-style-type: none;
  padding: 0;
}

.branch-details li {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-form .form-row {
    flex-direction: column;
  }

  .contact-form button {
    width: 100%;
  }
}

/* FOOTER */
.footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 150px;
}

.footer-info {
  flex: 1 1 300px;
  margin: 0 20px;
}

.footer-info ul {
  list-style-type: none;
  padding: 0;
}

.footer-info li {
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-info a {
  color: #ffb6c1;
  text-decoration: none;
}

.footer-social {
  flex: 1 1 300px;
  margin: 0 20px;
  font-size: 1rem;
}

.footer-social a {
  color: #ffb6c1;
  text-decoration: none;
  margin-right: 10px;
}

.footer-bottom {
  background-color: #222;
  padding: 10px 0;
  font-size: 0.9rem;
  color: #bbb;
}

.footer-bottom p {
  margin: 0;
}

.footer-social a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-info, .footer-social {
    text-align: center;
    margin: 20px 0;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.pagination button {
  padding: 8px 14px;
  border: none;
  background: #007BFF;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.pagination button.active {
  background: #0056b3;
}

.carousel-slide {
  flex: 0 0 auto;
  width: 100vw;
  height: 100vh;
  scroll-snap-align: center;
  position: relative;
}

.carousel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; /* Keeps it on top of everything */
  background: #ffffff; /* Or transparent if using overlays */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: adds subtle depth */
}

body {
  padding-top: 80px; /* Match header height */
}