:root {
  --green: #063f2f;
  --green2: #08704e;
  --green3: #e7f2ed;
  --white: #fff;
  --ink: #14221d;
  --muted: #66736e;
  --gold: #e4b84a;
  --orange: #ef7b22;
  --line: #dbe5e0;
  --shadow: 0 18px 50px rgba(6, 63, 47, 0.15);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #eef3f0;
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
}
.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50% 12% 50% 12%;
  background: linear-gradient(145deg, #0a674b, #033425);
  color: white;
  font-weight: 800;
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.2),
    inset -3px -3px 6px rgba(0, 0, 0, 0.25);
}
.brand b {
  display: block;
  letter-spacing: 0.8px;
  font-size: 1.05rem;
}
.brand small {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 2px;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 0.84rem;
  font-weight: 700;
}
.nav-links a:hover {
  color: var(--green2);
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  color: var(--green);
}
.hero {
  min-height: calc(100vh - 84px);
  color: white;
  display: grid;
  align-items: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(1, 24, 17, 0.96) 0%,
      rgba(3, 49, 36, 0.88) 37%,
      rgba(3, 49, 36, 0.2) 66%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    url("assets/carprince-showroom-hero.png");
  background-size: cover;
  background-position: center;
}
.hero-content {
  padding: 10vh 7vw 8vh;
  max-width: 840px;
}
.eyebrow {
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 2.2px;
  color: #a8d2c1;
  margin: 0 0 18px;
}
.eyebrow.dark {
  color: var(--green2);
}
h1 {
  font-size: clamp(3.1rem, 6vw, 6.8rem);
  line-height: 0.92;
  margin: 0;
  letter-spacing: -5px;
}
h1 span {
  color: #b5dbc9;
}
.hero-copy {
  max-width: 650px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #e0eee8;
  margin: 28px 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 0;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: 0.2s;
}
.embossed {
  box-shadow:
    inset 2px 2px 2px rgba(255, 255, 255, 0.6),
    inset -3px -4px 6px rgba(0, 0, 0, 0.24),
    0 8px 16px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transform: translateY(0);
}
.embossed:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.embossed:active {
  transform: translateY(2px);
  box-shadow: inset 3px 4px 7px rgba(0, 0, 0, 0.28);
}
.button-light {
  background: linear-gradient(#fff, #e5ece9);
  color: var(--green);
}
.button-emerald,
.button-green {
  background: linear-gradient(#12a66f, #08704e);
  color: #fff;
}
.hero-stats {
  display: flex;
  gap: 42px;
  margin-top: 54px;
}
.hero-stats div {
  display: flex;
  flex-direction: column;
}
.hero-stats b {
  font-size: 1.18rem;
}
.hero-stats span {
  font-size: 0.7rem;
  color: #a8c4b9;
  margin-top: 4px;
}
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 4vw;
  flex-wrap: wrap;
  padding: 18px 5vw;
  background: #e6f0ec;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}
.section {
  padding: 95px 7vw;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 40px;
}
.section-heading.centered {
  text-align: center;
  justify-content: center;
  color: white;
}
.section-heading h2,
.process h2,
.contact h2,
.find-car-banner h2,
.deposit-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 0;
}
.section-heading p:not(.eyebrow) {
  color: var(--muted);
}
.section-heading.centered p:not(.eyebrow) {
  color: #bfd6cd;
}
.text-link {
  font-weight: 800;
  color: var(--green);
}
.filters {
  display: flex;
  gap: 9px;
  margin-bottom: 28px;
  overflow: auto;
}
.filter {
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
  padding: 11px 17px;
  border-radius: 30px;
  font: 700 0.8rem Manrope;
  cursor: pointer;
  white-space: nowrap;
}
.filter.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.vehicle-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: white;
  transition: 0.25s;
}
.vehicle-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.vehicle-card > img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
}
.vehicle-info {
  padding: 23px;
}
.tag {
  display: inline-block;
  background: var(--green3);
  color: var(--green);
  padding: 7px 10px;
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}
.vehicle-info h3 {
  font-size: 1.15rem;
  margin: 16px 0 8px;
}
.vehicle-info p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.price {
  font-size: 1.28rem;
  font-weight: 800;
  margin: 20px 0 14px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  text-shadow: 0 1px 0 #fff;
}
.price-buy {
  color: #a57500;
}
.price-bid {
  color: #d55a00;
}
.naira-equivalent {
  display: block;
  margin-top: 5px;
  color: #446158;
  font-size: 0.72rem;
}
.vehicle-info .button {
  width: 100%;
}
.buy-button {
  background: linear-gradient(#f5ce63, #d8a628);
  color: #173126;
}
.bid-button {
  background: linear-gradient(#ff9b45, #e86608);
  color: white;
}
.find-car-banner {
  margin-top: 32px;
  background: linear-gradient(120deg, #0b5c43, #063f2f);
  color: white;
  border-radius: 20px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.find-car-banner p:not(.eyebrow) {
  color: #cce0d7;
  max-width: 700px;
}
.services {
  background: var(--green);
  color: white;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-grid article {
  padding: 34px 27px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}
.service-grid article > span {
  font-size: 0.72rem;
  color: #90c0ad;
  font-weight: 800;
}
.service-grid h3 {
  margin: 45px 0 12px;
}
.service-grid p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: #bdd1c9;
}
.videos {
  background: #f4f8f6;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card {
  min-height: 340px;
  border-radius: 18px;
  padding: 24px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.video-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0, 25, 18, 0.9));
}
.video-card > * {
  position: relative;
  z-index: 1;
}
.video-one {
  background-image: url("assets/luxury-suv-black.png");
}
.video-two {
  background-image: url("assets/premium-pickup.png");
}
.video-three {
  background-image: url("assets/luxury-suv-white.png");
}
.video-card b {
  font-size: 1.15rem;
}
.video-card small {
  margin-top: 5px;
  color: #d4e6de;
}
.play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
  font-size: 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.integration-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  margin: 22px 0 0;
}
.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  align-items: center;
}
.process-copy > p:not(.eyebrow),
.contact > div > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
}
.steps li {
  counter-increment: steps;
  padding: 25px 25px 25px 75px;
  border-bottom: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.steps li:before {
  content: "0" counter(steps);
  position: absolute;
  left: 8px;
  top: 23px;
  color: var(--green);
  font-weight: 800;
  font-size: 1.2rem;
}
.steps span {
  font-size: 0.8rem;
  color: var(--muted);
}
.deposit-section {
  padding: 70px 7vw;
  background: #082f24;
  color: white;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 7vw;
}
.deposit-section p,
.deposit-section li {
  color: #c9ddd5;
  line-height: 1.7;
}
.status-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.status-flow span {
  padding: 9px 12px;
  border-radius: 20px;
  background: #0d6047;
  font-size: 0.7rem;
  font-weight: 800;
}
.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7vw;
  align-items: start;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-grid a,
.contact-grid > div {
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow: hidden;
}
.contact-grid span {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-grid b {
  font-size: 0.85rem;
  word-break: break-word;
}
footer {
  background: #031f18;
  color: #c8d9d2;
  padding: 55px 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 25px;
  font-size: 0.72rem;
}
.footer-brand {
  color: white;
}
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #21a663;
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 15;
}
dialog {
  width: min(900px, 94vw);
  max-height: 92vh;
  border: 0;
  border-radius: 20px;
  padding: 38px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
}
dialog::backdrop {
  background: rgba(0, 25, 18, 0.74);
  backdrop-filter: blur(5px);
}
.dialog-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: #edf3f0;
  color: var(--green);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}
.dialog-heading h2 {
  margin: 0;
  font-size: 2.1rem;
}
.dialog-heading > p:last-child {
  color: var(--muted);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.full {
  grid-column: 1/-1;
}
label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--green);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd9d3;
  border-radius: 9px;
  padding: 12px;
  background: white;
  color: var(--ink);
}
textarea {
  min-height: 86px;
  resize: vertical;
}
fieldset {
  border: 1px solid var(--line);
  border-radius: 13px;
  margin: 22px 0;
  padding: 19px;
}
legend {
  padding: 0 8px;
  color: var(--green);
  font-weight: 800;
}
.deposit-notice {
  margin-top: 16px;
  border-left: 5px solid var(--orange);
  background: #fff3e8;
  padding: 15px;
  color: #5c3516;
}
.deposit-notice p {
  font-size: 0.78rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.agreement-box {
  background: #edf5f1;
  border-radius: 12px;
  padding: 18px;
  margin: 22px 0;
}
.agreement-link {
  display: inline-block;
  color: var(--green);
  font-weight: 800;
  margin-bottom: 15px;
  text-decoration: underline;
}
.agreement-check {
  flex-direction: row;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 600;
}
.agreement-check input {
  width: 20px;
  height: 20px;
  margin: 0;
  flex: none;
}
.submit-button {
  width: 100%;
  background: linear-gradient(#0ca06b, #076044);
  color: white;
}
.form-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.7rem;
}
@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    padding: 25px 6vw;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .menu-button {
    display: block;
  }
  .hero {
    background-position: 62% center;
  }
  .vehicle-grid,
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process,
  .contact,
  .deposit-section {
    grid-template-columns: 1fr;
  }
  .find-car-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  footer {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .site-header {
    height: 72px;
  }
  .nav-links {
    top: 72px;
  }
  .brand b {
    font-size: 0.85rem;
  }
  .brand-mark {
    width: 39px;
    height: 39px;
  }
  .hero {
    min-height: 760px;
    background-position: 65% center;
  }
  .hero-content {
    padding: 70px 6vw;
    background: linear-gradient(
      90deg,
      rgba(1, 30, 22, 0.94),
      rgba(1, 30, 22, 0.58)
    );
  }
  .hero h1 {
    letter-spacing: -3px;
  }
  .hero-copy {
    font-size: 0.92rem;
  }
  .hero-stats {
    gap: 18px;
    justify-content: space-between;
  }
  .hero-stats span {
    font-size: 0.6rem;
  }
  .trust-strip {
    justify-content: flex-start;
    padding: 18px 7vw;
  }
  .section {
    padding: 68px 6vw;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .vehicle-grid,
  .video-grid,
  .service-grid,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full {
    grid-column: auto;
  }
  .service-grid article {
    padding: 28px 23px;
  }
  .service-grid h3 {
    margin-top: 30px;
  }
  .find-car-banner {
    padding: 30px 24px;
  }
  .video-card {
    min-height: 280px;
  }
  .deposit-section {
    padding: 55px 7vw;
  }
  dialog {
    padding: 35px 20px 25px;
  }
  footer {
    padding-bottom: 100px;
  }
}
