* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #071d2c;
  --blue: #0788c7;
  --blue2: #0da7e8;
  --text: #20313a;
  --muted: #66757d;
  --light: #f5f8fa;
  --white: #ffffff;
  --green: #1fae60;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.navbar {
  height: 78px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.96);
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.brand-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.brand-subtitle {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
}

.header-actions,
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 0;
  border-radius: 28px;
  padding: 12px 21px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blue);
  color: white;
}

.btn-outline {
  border: 1px solid #d7e0e5;
  color: var(--navy);
  background: white;
}

.hero {
  min-height: 650px;
  padding: 85px 7%;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: center;
  gap: 70px;
  color: white;
  background:
    radial-gradient(circle at 80% 30%, rgba(13,167,232,.35), transparent 30%),
    linear-gradient(115deg, #061c2c 0%, #063c5b 56%, #0788c7 100%);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.2px;
  color: #95dcfa;
  margin-bottom: 14px;
}

.eyebrow.dark {
  color: var(--blue);
}

.hero h1 {
  font-size: clamp(52px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #55ccff;
}

.hero-copy > p {
  max-width: 650px;
  font-size: 19px;
  color: #d7e9f1;
  margin-bottom: 30px;
}

.btn-light {
  background: white;
  color: var(--navy);
  font-size: 16px;
}

.btn-glass {
  color: white;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
}

.hero-points {
  margin-top: 30px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: #d9eff8;
  font-size: 14px;
  font-weight: 700;
}

.hero-card {
  padding: 34px;
  border-radius: 24px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}

.mini-label {
  font-size: 11px;
  letter-spacing: 1.8px;
  color: #a9e4fb;
  font-weight: 900;
}

.hero-card h3 {
  font-size: 30px;
  margin: 12px 0 8px;
}

.hero-card p {
  color: #d9eaf1;
  margin-bottom: 20px;
}

.hero-card a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 25px;
  font-weight: 900;
  margin-top: 8px;
}

.section {
  padding: 85px 6%;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 42px;
}

.section-heading span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.section-heading h2,
.contact h2,
.modal-card h2 {
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.08;
  color: var(--navy);
  margin: 10px 0 14px;
}

.section-heading p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: auto;
}

.service-card {
  padding: 32px;
  border: 1px solid #e4eaee;
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 35px rgba(11, 41, 59, .06);
}

.icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 29px;
  background: #ecf8fd;
}

.service-card h3 {
  margin: 22px 0 10px;
  font-size: 24px;
  color: var(--navy);
}

.service-card p {
  color: var(--muted);
  min-height: 76px;
}

.service-card button {
  margin-top: 18px;
  border: 0;
  background: var(--blue);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}

.why {
  background: var(--navy);
}

.section-heading.light h2 {
  color: white;
}

.section-heading.light span {
  color: #60cef8;
}

.features {
  max-width: 1080px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature {
  padding: 28px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  color: white;
}

.feature strong {
  color: #5dd1ff;
  font-size: 14px;
}

.feature h3 {
  font-size: 23px;
  margin: 13px 0 8px;
}

.feature p {
  color: #bed0d8;
}

.contact {
  background: var(--light);
}

.contact-box {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 55px;
  align-items: start;
}

.contact-box > div:first-child p {
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-details a,
.contact-details > div {
  text-decoration: none;
  color: var(--navy);
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #dfe7eb;
  background: white;
}

.contact-details span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}

.contact-details strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
  word-break: break-word;
}

footer {
  padding: 32px 6%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: #04141f;
  color: #c5d2d8;
  font-size: 14px;
}

footer strong {
  color: white;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  text-decoration: none;
  background: var(--green);
  color: white;
  border-radius: 30px;
  padding: 13px 19px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,.68);
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.show {
  display: flex;
}

.modal-card {
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 32px;
  border-radius: 20px;
  background: white;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  border: 0;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
}

form {
  display: grid;
  gap: 15px;
  margin-top: 22px;
}

label {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #d8e1e5;
  border-radius: 10px;
  padding: 13px;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 95px;
  resize: vertical;
}

.submit-btn {
  border: 0;
  border-radius: 10px;
  padding: 14px;
  color: white;
  background: var(--green);
  font-weight: 900;
  cursor: pointer;
}

/* --- Navigation Links --- */
.nav-links {
  display: flex;
  gap: 25px;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  transition: .2s;
}

.nav-links a:hover {
  color: var(--blue);
}

/* --- Fleet Section --- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1120px;
  margin: auto;
}

.car-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e4eaee;
  box-shadow: 0 12px 35px rgba(11, 41, 59, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(11, 41, 59, .12);
}

.car-image {
  position: relative;
  height: 220px;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--green);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.car-details {
  padding: 24px;
}

.car-details h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 12px;
}

.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.car-specs span {
  background: var(--light);
  padding: 6px 12px;
  border-radius: 8px;
}

.car-card .btn {
  width: 100%;
  text-align: center;
  font-size: 15px;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1120px;
  margin: auto;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(32px, 4vw, 42px);
  color: var(--navy);
  margin: 10px 0 18px;
  line-height: 1.1;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.about-features {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.af-item {
  padding-left: 18px;
  border-left: 3px solid var(--blue);
}

.af-item strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
}

.af-item span {
  color: var(--muted);
  font-size: 14px;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

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

/* --- FAQs --- */
.faq-container {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #dfe7eb;
  border-radius: 12px;
  overflow: hidden;
  background: white;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: white;
  border: none;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  font-size: 20px;
  color: var(--blue);
  transition: transform .3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  background: var(--light);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer p {
  color: var(--muted);
  font-size: 15px;
}

/* --- Footer --- */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1120px;
  margin: 0 auto 30px;
}

.footer-col h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 18px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: #c5d2d8;
  text-decoration: none;
  margin-bottom: 10px;
  transition: .2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 35px;
    min-height: auto;
  }

  .hero-card {
    max-width: 520px;
  }

  .fleet-grid,
  .about-grid,
  .footer-grid,
  .features {
    grid-template-columns: 1fr;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .navbar {
    height: auto;
    min-height: 72px;
    padding: 12px 4%;
  }

  .brand-subtitle {
    display: none;
  }

  .brand-title {
    font-size: 18px;
  }

  .nav-links {
    display: none;
  }

  .header-actions .btn-outline {
    display: none;
  }

  .header-actions .btn {
    padding: 9px 13px;
    font-size: 13px;
  }

  .hero {
    padding: 70px 6%;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .section {
    padding: 65px 5%;
  }

  footer {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}
