:root {
  --ink: #0b3f8a;
  --muted: #5d6678;
  --line: #dfe5ee;
  --paper: #ffffff;
  --soft: #f3f7fb;
  --blue: #2459d6;
  --green: #1ebc62;
  --amber: #f3b23f;
  --night: #062f6f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(130px, 220px) 1fr minmax(260px, auto);
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(20, 33, 61, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 190px;
  height: auto;
}

.header-title {
  text-align: center;
  text-transform: uppercase;
}

.header-title strong {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: 32px;
  padding: 120px clamp(20px, 6vw, 76px) 56px;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 16, 31, 0.92), rgba(8, 16, 31, 0.55) 54%, rgba(8, 16, 31, 0.25)),
    url("images/feature-bg1.jpg") center / cover;
  z-index: -1;
}

.hero-content {
  max-width: 790px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.parking-band h2,
.map-section h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions,
.parking-content .btn {
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(36, 89, 214, 0.26);
}

.btn-park {
  margin-left: 10px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(30, 188, 98, 0.26);
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.hero-panel strong {
  display: block;
  margin-top: 12px;
  font-size: 1.6rem;
  font-weight: 900;
}

.hero-panel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.status-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(30, 188, 98, 0.18);
}

.section {
  padding: 88px clamp(20px, 6vw, 76px);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.section h2,
.parking-band h2,
.map-section h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.split p,
.parking-band p,
.map-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.service-grid article,
.testimonial-grid blockquote {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(20, 33, 61, 0.07);
}

.service-grid span {
  color: var(--blue);
  font-weight: 900;
}

.service-grid h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
}

.service-grid p,
.testimonial-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.carousel-section,
.testimonials,
.accordion-section {
  background: var(--soft);
}

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

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--night);
  box-shadow: 0 24px 70px rgba(20, 33, 61, 0.18);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
}

.carousel-slide > img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.slide-branding {
  position: absolute;
  left: clamp(20px, 4vw, 56px);
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(150px, 260px) minmax(260px, 760px);
  align-items: end;
  justify-content: space-between;
  gap: clamp(20px, 5vw, 72px);
  color: #fff;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.42);
}

.slide-branding img {
  width: min(100%, 260px);
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.3));
}

.slide-branding strong {
  justify-self: end;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
  text-align: right;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-size: 2.1rem;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-btn.prev {
  left: 18px;
}

.carousel-btn.next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
}

.carousel-dots button.active {
  width: 28px;
  background: #fff;
}

.parking-band {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 0;
  align-items: stretch;
  background: var(--night);
  color: #fff;
}

.parking-content {
  padding: clamp(50px, 7vw, 96px);
}

.parking-band p {
  color: rgba(255, 255, 255, 0.78);
}

.parking-facts {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.parking-facts strong {
  color: var(--green);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
}

.parking-facts span {
  max-width: 210px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.parking-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

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

.vehicle-card {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  overflow: hidden;
  border: 1px solid #cbd9ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(11, 63, 138, 0.08);
}

.vehicle-image {
  position: relative;
  display: flex;
  grid-row: 2;
  grid-column: 1 / -1;
  min-height: 282px;
  align-items: center;
  justify-content: center;
  padding: 18px 28px 4px;
  background: transparent;
}

.vehicle-photo-set {
  position: relative;
  display: block;
  width: 100%;
  height: 252px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.vehicle-photo-set img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.vehicle-photo-set img.blend-white-bg {
  mix-blend-mode: multiply;
}

.vehicle-photo-set:not(.single) img + img {
  opacity: 0;
  transform: translateX(12px) scale(0.98);
}

.vehicle-card:hover .vehicle-photo-set:not(.single) img:first-child,
.vehicle-card:focus-within .vehicle-photo-set:not(.single) img:first-child {
  opacity: 0;
  transform: translateX(-12px) scale(0.98);
}

.vehicle-card:hover .vehicle-photo-set:not(.single) img + img,
.vehicle-card:focus-within .vehicle-photo-set:not(.single) img + img {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.vehicle-photo-set.single img {
  max-width: none;
  max-height: none;
}

.vehicle-image img {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.vehicle-alert {
  display: none;
}

.vehicle-body {
  display: contents;
}

.vehicle-brand {
  grid-row: 4;
  grid-column: 1 / -1;
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 26px;
  margin: 28px 20px 0;
  padding: 5px 10px;
  border-radius: 5px;
  background: #d81442;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
}

.vehicle-brand-orange {
  background: #f45113;
}

.vehicle-brand-green {
  background: #087742;
}

.vehicle-body h3 {
  grid-row: 1;
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px 20px 0;
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 900;
}

.vehicle-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.vehicle-body > p:not(.vehicle-note) {
  display: none;
  grid-row: 1;
  grid-column: 1 / -1;
  margin-top: 44px;
  padding: 0 20px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 500;
}

.vehicle-card.is-showing-details .vehicle-body > p:not(.vehicle-note) {
  display: block;
}

.vehicle-note {
  grid-row: 3;
  grid-column: 1 / -1;
  align-self: start;
  margin: 0 !important;
  padding: 8px 28px 0;
  color: #7b8494 !important;
  font-size: 0.72rem !important;
  line-height: 1.45;
  text-align: center;
}

.vehicle-details {
  position: absolute;
  inset: 22px 28px 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 24px 28px;
  margin: 0;
  padding: 0;
  color: #636b78;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.vehicle-details li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 34px;
}

.vehicle-spec-icon {
  width: 28px;
  height: 28px;
  color: #f45113;
}

.vehicle-spec-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.vehicle-card.is-showing-details .vehicle-photo-set {
  opacity: 0;
  transform: scale(0.98);
}

.vehicle-card.is-showing-details .vehicle-details {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.vehicle-actions {
  grid-row: 5;
  grid-column: 1 / -1;
  align-self: end;
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 14px 20px 20px;
}

.vehicle-deal {
  display: inline-flex;
  width: 100%;
  max-width: none;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.vehicle-deal:hover {
  background: #f45113;
  transform: translateY(-2px);
}

.vehicle-deal:active {
  background: #f45113;
}

.vehicle-details-toggle {
  display: inline-flex;
  width: 100%;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b26335;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.vehicle-details-toggle:hover {
  color: #f45113;
}

.reviews-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.4s ease;
}

.reviews-track blockquote {
  flex: 0 0 100%;
  min-height: 260px;
  padding: 34px clamp(24px, 7vw, 82px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(20, 33, 61, 0.07);
  margin: 0;
  text-align: center;
}

.reviews-track p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.stars {
  color: #f3b23f;
  font-size: 1.45rem;
  font-weight: 900;
}

.reviews-track cite {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.reviews-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
}

.reviews-btn.prev {
  left: 10px;
}

.reviews-btn.next {
  right: 10px;
}

.reviews-btn:hover {
  background: #f45113;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.reviews-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: #cbd9ea;
  cursor: pointer;
}

.reviews-dots button.active {
  width: 28px;
  background: var(--blue);
}

.reviews-source {
  display: table;
  margin: 26px auto 0;
  color: var(--blue);
  font-weight: 900;
}

.reviews-source:hover {
  color: #f45113;
}

.map-section {
  padding: 88px clamp(20px, 6vw, 76px) 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.contact-section {
  background: var(--soft);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(20, 33, 61, 0.07);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd9ea;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 89, 214, 0.12);
}

.contact-message,
.contact-form button {
  grid-column: 1 / -1;
}

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

.accordion {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.accordion-trigger {
  width: 100%;
  padding: 22px 26px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-weight: 900;
}

.accordion-trigger.active {
  background: var(--blue);
  color: #fff;
}

.accordion-panel {
  display: none;
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.accordion-panel.open {
  display: block;
}

.site-footer {
  padding: 42px clamp(20px, 6vw, 76px);
  background: var(--night);
  color: #fff;
  text-align: center;
}

.footer-contact {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.footer-contact address {
  margin: 0;
  max-width: 820px;
  color: #fff;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-style: normal;
  font-weight: 900;
  line-height: 1.25;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.footer-contact a:hover {
  color: #fff;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.instagram-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.38);
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--soft);
}

.success-message {
  max-width: 620px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 40px rgba(20, 33, 61, 0.07);
}

.success-message h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.success-message p {
  margin: 14px 0 28px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 170px 1fr;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .hero,
  .split,
  .parking-band {
    grid-template-columns: 1fr;
  }

  .parking-image img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    position: static;
  }

  .brand img {
    margin: 0 auto;
    width: 160px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .btn-park {
    margin-left: 0;
  }

  .section,
  .map-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .service-grid,
  .vehicle-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .reviews-track blockquote {
    padding: 30px 22px;
  }

  .reviews-btn {
    display: none;
  }

  .carousel-slide > img {
    aspect-ratio: 4 / 3;
  }

  .slide-branding {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }

  .slide-branding img {
    width: 132px;
  }

  .slide-branding strong {
    justify-self: start;
    font-size: clamp(1.35rem, 8vw, 2.6rem);
    text-align: left;
  }

  .footer-contact address {
    font-size: 1.15rem;
  }
}
