* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 16px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  z-index: 999;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: #fff;
}

:root {
  --black: #0b0b0b;
  --gold: #af7f3a;
}

/* NAVBAR */

.navbar {
  background-color: var(--black);
  /* background-color: #1ebe5d; */
  position: relative;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  flex-wrap: nowrap;
  padding: 12px 16px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100vh;
  background-color: var(--black);
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  transition: right 0.3s ease;
  z-index: 9999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  padding: 16px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid rgba(175, 127, 58, 0.3);
}

.mobile-menu a:hover {
  background-color: var(--gold);
  color: #0b0b0b;
}

/* LOGO */
.logo img {
  height: 75px;
  width: auto;
}
.nav-links {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--gold);
  border-radius: 2px;
}

.nav-divider {
  height: 1px;
  background-color: var(--gold);
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: url("images/hero1.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content h2 {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #c9a44c;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}

/* FORM */
.contact-form-box {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  padding: 30px;
  border-radius: 8px;
}

.contact-form-box h2 {
  margin-bottom: 20px;
  text-align: center;
}

.hero-contact-form .row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-contact-form input,
.hero-contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
}

.hero-contact-form button {
  width: 100%;
  padding: 12px;
  background: #c9a44c;
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
}

.fleet-hero {
  margin: 0;
  padding: 20px 16px;
}

.fleet-page {
  background-color: #000;
}

#fleet-car {
  background-color: #000;
}
.fleet {
  padding: 40px 16px;
}

.fleet-car-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
#fleet-car p {
  color: #fff;
}
.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
}

.fleet-card {
  background-color: #111;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  margin: 10px;
}

.fleet-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.fleet-card h3 {
  font-size: 14px;
  font-weight: 500;
  padding: 10px;
}
.fleet-car-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.fleet-car-content h2 {
  color: #fff;
}

.fleet-car-content h2 span {
  color: var(--gold);
}

.fleet-ticker {
  width: 100%;
  background-color: #555;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 25s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.contact-section {
  background-color: #000;
  padding: 60px 16px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.contact-form-box,
.contact-details {
  background-color: #111;
  padding: 24px;
  border-radius: 8px;
  flex: 1 1 350px;
  max-width: 500px;
}
.contact-form-box h2,
.contact-details h2 {
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
  background-color: #222;
  color: #fff;
}
.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 100px;
  resize: vertical;
}
.contact-form button {
  padding: 14px;
  background-color: var(--gold);
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  grid-column: 1 / -1;
}
.contact-details {
  background-color: #111 !important;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-details h2 {
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
}

.contact-details p {
  margin: 10px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.contact-details p i {
  margin-right: 10px;
  color: var(--gold);
  min-width: 20px;
  text-align: center;
  color: #fff;
}

.contact-details a {
  color: #fff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--gold);
}

.contact-socials {
  margin-top: 16px;
}

.contact-socials a {
  margin-right: 12px;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}

.contact-socials a:hover {
  color: var(--gold);
}

.about-us {
  background-color: #0b0b0b;
  padding: 80px 20px;
}

.about-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #bfbfbf;
  margin-bottom: 14px;
  text-align: center;
}

.reviews {
  padding: 40px 16px;
  color: #0b0b0b;
  background-color: #fff;
}

.reviews h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 12px;
  color: #0b0b0b;
}

.reviews-intro {
  text-align: center;
  font-size: 15px;
  color: #bfbfbf;
  margin-bottom: 28px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.review-card {
  border: 1px solid var(--gold);
  padding: 20px;
  background-color: #fff;
  color: #0b0b0b;
}

.review-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.review-card span {
  font-size: 14px;
  color: #bfbfbf;
}

.review-card.featured {
  background-color: var(--gold);
  border: none;
  color: #0b0b0b;
}

.review-card.featured p,
.review-card.featured span {
  color: #ffffff;
}

/* benefits */

.why-choose-us {
  padding: 40px 16px;
  text-align: center;
}

.why-choose-us {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #000;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #000;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: #000;

  text-align: left;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.icon-circle svg {
  width: 36px;
  height: 36px;
}

.benefit-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #000;
}

.benefit-text p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: #000;
  flex-wrap: nowrap;
}

.site-footer {
  background-color: #0b0b0b;
  color: #fff;
  padding: 40px 16px 20px;
  font-size: 18px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
  align-items: start;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-contact p {
  margin: 6px 0;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-socials {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer-socials a img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  transition: filter 0.3s;
}

.footer-socials a:hover img {
  filter: invert(50%);
}

.footer-bottom {
  margin-top: 24px;
  text-align: center;
  color: #bfbfbf;
}

.contact-hero {
  position: relative;
  height: 60vh;
  background-image: url("images/ev11.png");
  background-size: cover;
  background-position: center;
}

.fleet-hero {
  position: relative;
  height: 50vh;
  background-image: url("images/evclass12.png");
  background-size: cover;
  background-position: center;
}
.contact-details p i,
.contact-socials i {
  color: var(--gold);
  margin-right: 8px;
  font-size: 20px;
  vertical-align: middle;
}
.contact-hero::after,
.fleet-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.contact-hero-overlay,
.fleet-hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
}

.contact-hero h1,
.fleet-hero h1 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.hero-contact-btn {
  padding: 14px 28px;
  border: 1px solid #af7f3a;
  background-color: #000;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.hero-contact-btn:hover {
  background: linear-gradient(145deg, #b88c1e, #d4af37);
  text-decoration: none;
}
.contact-hero-btn,
.fleet-hero-btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(145deg, #d4af37, #b88c1e);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.5);
  transition: all 0.3s ease;
}

.contact-hero-btn:hover,
.fleet-hero-btn:hover {
  background: linear-gradient(145deg, #b88c1e, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.6);
}

.contact-section {
  background-color: #fff;
  padding: 60px 16px;
  color: #0b0b0b;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* FORM BOX */
.contact-form-box h2 {
  display: flex;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  color: #fff !important;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 15px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background-color: var(--gold);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

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

.contact-details h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-details p {
  font-size: 15px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.contact-details a {
  color: #0b0b0b;
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--gold);
}

.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.contact-socials a {
  font-size: 22px;
  color: #0b0b0b;
  transition: color 0.3s ease;
}

.contact-socials a:hover {
  color: var(--gold);
}

/* fleet */

.fleet-car {
  background-color: #fff;
  padding: 60px 16px;
  color: #0b0b0b;
}

.fleet-car-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.fleet-car-image {
  width: 100%;
  height: 100%;
}

.fleet-car-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.fleet-car-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.fleet-car-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 700;
}

.car-brand {
  color: #555;
  font-weight: 600;
}

.fleet-car-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 24px;
  max-width: 520px;
}

.fleet-car-btn {
  align-self: flex-start;
  padding: 14px 30px;
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.fleet-car-btn:hover {
  background-color: var(--gold);
  color: #0b0b0b;
}

.terms-hero,
.privacy-hero {
  padding: 32px 16px 40px;
  text-align: center;
  background-color: var(--black);
  height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.terms-hero h1 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 12px;
  flex-direction: column;
}

.terms-hero p {
  font-size: 18px;
  color: #fff;
  max-width: 600px;
}

.terms-content {
  background-color: #fff;
  padding: 60px 16px;
  color: #0b0b0b;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-container h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #af7f3a;
}

.terms-container p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.terms-container a {
  color: var(--gold);
  text-decoration: underline;
}

.privacy-hero {
  position: relative;
  height: 60vh;
  background-image: url("images/privacy-hero.jpg");
  background-size: cover;
  background-position: center;
}

.privacy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.privacy-hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.privacy-hero h1 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 12px;
}

.privacy-hero p {
  font-size: 18px;
  color: #fff;
  max-width: 600px;
}

.privacy-content {
  background-color: #fff;
  padding: 60px 16px;
  color: #0b0b0b;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-container h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #af7f3a;
}

.privacy-container p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.privacy-container a {
  color: var(--gold);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .navbar-inner {
    padding: 20px 40px;
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
  }

  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    position: relative;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.25s ease;
  }

  .nav-links a:hover::after {
    width: 100%;
  }
  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .nav-links {
    display: flex;
    gap: 32px;
  }

  .navbar-inner {
    padding: 20px 32px;
  }

  .mobile-menu a {
    font-size: 17px;
    padding: 18px 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero h2 {
    font-size: 18px;
    max-width: 600px;
  }

  .hero-btn {
    max-width: 260px;
  }

  .fleet {
    padding: 60px 40px;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-card img {
    height: 160px;
  }

  .fleet-card h3 {
    font-size: 16px;
  }

  .about-content h2 {
    font-size: 42px;
  }

  .about-content p {
    font-size: 20px;
  }

  /* REVIEWS */
  .reviews {
    padding: 60px 40px;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* BENEFITS */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .contact-form-wrapper {
    margin-top: -90px;
    max-width: 1200px;
  }
  .contact-form-box h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #0b0b0b;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .privacy-hero h1 {
    font-size: 48px;
  }
  .privacy-hero p {
    font-size: 20px;
  }
  .contact-details p i,
  .contact-socials i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 20px;
    vertical-align: middle;
  }

  .contact-socials a {
    margin-right: 15px;
    text-decoration: none;
  }

  .contact-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-hero-btn {
    font-size: 18px;
  }
  .fleet-car-container {
    display: flex;
    gap: 60px;
  }

  .fleet-car-image,
  .fleet-car-content {
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .logo img {
    height: 58px;
    width: auto;
  }

  /* NAVBAR */
  .navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
  }

  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    position: relative;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.25s ease;
  }

  .nav-links a:hover::after {
    width: 100%;
  }
  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .about-content p {
    font-size: 28px;
  }

  /* HERO */
  .hero {
    padding: 80px 40px 100px;
  }

  .hero h1 {
    font-size: 48px;
  }

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

  .about-content p {
    font-size: 20px;
  }

  /* FLEET */
  .fleet {
    padding: 80px 40px;
  }

  .fleet-grid {
    gap: 24px;
  }

  /* CONTACT FORM */

  .contact-form {
    padding: 32px;
  }

  /* REVIEWS */
  .reviews-grid {
    gap: 24px;
  }

  /* FOOTER */
  .site-footer {
    padding: 60px 40px 30px;
  }
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: 54px;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
  }

  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    position: relative;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
  }

  .nav-links a:hover::after {
    width: 100%;
  }
}

.fleet-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.logo img {
  height: 58px;
  width: auto;
}
