:root {
  --brand: #0f4c81;
  --ink: #0f172a;
  --muted: #64748b;
  --light: #f8fafc;
  --dark: #0b1220;
  --hero: url("/images/hero-lot.png");
}

* {
  box-sizing: border-box;
}
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial,
    sans-serif;
  color: var(--ink);
  background: #fff;
  margin: 0;
}

.py-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* COMING SOON BAR */
.coming-bar {
  background: var(--brand);
  color: #fff;
  font-size: 0.9rem;
}
.coming-bar a {
  color: #fff;
}

/* NAVBAR */
.navbar {
  min-height: 64px;
}
.navbar .navbar-brand img {
  width: 36px;
  height: 36px;
}
.navbar .nav-link {
  font-weight: 500;
}

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  color: #fff;
  background: var(--hero) center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    /* darker left */ rgba(0, 0, 0, 0.3) 45%,
    /* mid */ rgba(0, 0, 0, 0) 75% /* fade right */
  );
  z-index: 0;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  text-align: left;
}
.hero .btn.btn-primary {
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  font-size: 1.05rem;
}
@media (max-width: 991.98px) {
  .hero {
    text-align: center;
  }
  .hero .hero-content {
    margin: 0 auto;
  }
  .hero .btn.btn-primary {
    width: 100%;
  }
}

/* SERVICES */
.service-icon {
  padding: 1rem 1rem 0 1rem;
  text-align: center;
}
.service-icon img {
  max-height: 120px;
  width: auto;
}
.card {
  border-radius: 1rem;
}
.card ul {
  padding-left: 1.2rem;
}
.card ul li {
  margin: 0.25rem 0;
}

/* PRICING */
#pricing .card {
  border-radius: 1rem;
}
#pricing .card-title {
  font-weight: 600;
}
#pricing .badge.bg-success {
  font-size: 0.75rem;
}

/* PAYMENTS */
/* One normalized rule */
.pay-card .paymark {
  display: block;
  margin: 0 auto;
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

/* RESERVE FORM */
#reserve form .form-label {
  font-weight: 600;
}

/* FAQ */
#faq .accordion-button {
  font-weight: 600;
}

/* CONTACT */
#contact form .form-label {
  font-weight: 600;
}
#contact .ratio {
  border-radius: 0.5rem;
}

/* FOOTER */
footer {
  background: var(--dark);
}
footer .brand-name {
  color: #fff;
  margin-left: 0.5rem;
}
footer .logo-footer {
  height: 40px;
  width: auto;
  margin-left: 0;
}
footer .text-secondary {
  color: #9aa4b2 !important;
}
footer a {
  color: #e3e9f2;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer hr {
  border-color: rgba(255, 255, 255, 0.2);
}

/* STICKY CTA (mobile only) */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  backdrop-filter: blur(6px);
  background: rgba(14, 23, 38, 0.85);
  padding: 0.75rem 1rem;
}
.sticky-cta .btn {
  width: 100%;
}
@media (min-width: 576px) {
  .sticky-cta .btn {
    width: auto;
  }
}

@media (max-width: 991.98px) {
  .cta-group {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
    flex-wrap: nowrap !important;
  }
  .cta-group .btn {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal;
  }
}
