:root {
  --navy: #0a0a0a;
  --navy-2: #1a1a1a;
  --yellow: #f5b400;
  --yellow-dark: #d89d00;
  --white: #ffffff;
  --off-white: #f2f2f2;
  --text: #232323;
  --muted: #6f6f6f;
  --border: #c8c8c8;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  --radius: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 245, 245, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 250px;
  max-height: 58px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  color: var(--navy);
}

.main-nav a {
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy) !important;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 99px;
}

.hero {
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 25%, rgba(245, 180, 0, 0.18), transparent 28%),
    linear-gradient(135deg, #050505 0%, #111111 48%, #2d2d2d 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(255,255,255,0.025);
  border-radius: 50%;
  right: -180px;
  bottom: -210px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: 70px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--yellow-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--yellow);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 680px;
  margin-top: 24px;
  color: #d6d6d6;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
}

.btn-primary:hover {
  background: #ffc21a;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
}

.btn-dark {
  width: 100%;
  margin-top: 22px;
  background: var(--navy);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-full {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  color: #d8d8d8;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-points span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--yellow);
}

.hero-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  background: rgba(236,236,236,0.98);
  color: var(--text);
  box-shadow: 0 28px 70px rgba(0,0,0,0.24);
}

.card-kicker {
  color: var(--yellow-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-top: 7px;
  color: var(--navy);
  font-size: 2.2rem;
}

.hero-card p {
  margin-top: 10px;
  color: var(--muted);
}

.card-phone {
  display: block;
  margin-top: 20px;
  color: var(--navy);
  font-size: 1.65rem;
  font-weight: 900;
}

.trust-bar {
  background: var(--yellow);
}

.trust-grid {
  min-height: 118px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.trust-grid > div {
  padding: 20px 34px;
  border-right: 1px solid rgba(11,31,51,0.18);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--navy);
  font-size: 1.18rem;
}

.trust-grid span {
  margin-top: 2px;
  color: rgba(11,31,51,0.72);
  font-size: 0.92rem;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.about-copy h2,
.contact-section h2,
.section-dark h2,
.cta-section h2 {
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child,
.about-copy > p,
.contact-section > .container > div > p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11,31,51,0.045);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #fff5d3;
  font-size: 1.55rem;
}

.service-card h3 {
  color: var(--navy);
  font-size: 1.32rem;
}

.service-card p {
  margin-top: 10px;
  color: var(--muted);
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-dark h2 {
  color: var(--white);
}

.rental-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 70px;
  align-items: center;
}

.rental-grid > div:first-child > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
  color: #cfcfcf;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  list-style: none;
}

.check-list li {
  color: #eeeeee;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
}

.rental-panel {
  padding: 38px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 28px 60px rgba(0,0,0,0.17);
}

.panel-label {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rental-panel h3 {
  margin-top: 9px;
  font-size: 2rem;
  line-height: 1.08;
}

.rental-panel p {
  margin-top: 15px;
  color: rgba(11,31,51,0.78);
}

.rental-panel a {
  display: inline-block;
  margin-top: 22px;
  font-size: 1.35rem;
  font-weight: 900;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-visual {
  min-height: 480px;
  display: grid;
  place-items: end start;
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,0,0,0.78)),
    radial-gradient(circle at 30% 30%, #f5b400, #d88f00 30%, #8a8a8a 31%, #111111 100%);
  box-shadow: var(--shadow);
}

.visual-badge {
  padding: 20px 24px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.visual-badge strong,
.visual-badge span {
  display: block;
}

.visual-badge strong {
  color: var(--navy);
  font-size: 1.45rem;
}

.visual-badge span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-copy > p + p {
  margin-top: 12px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.about-features > div {
  padding: 20px;
  border-left: 4px solid var(--yellow);
  background: var(--off-white);
}

.about-features strong,
.about-features span {
  display: block;
}

.about-features strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.about-features span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-section {
  padding: 68px 0;
  background: linear-gradient(135deg, #1a1a1a, #050505);
  color: var(--white);
}

.cta-section h2 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.contact-details > div {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--border);
}

.contact-details span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 800;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #cdd6df;
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  outline: none;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  padding: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 3px rgba(245,180,0,0.15);
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.83rem;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

.site-footer {
  padding-top: 54px;
  background: #050505;
  color: #d8d8d8;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand img {
  width: 250px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin-top: 10px;
  color: #a8a8a8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #969696;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 30px rgba(11,31,51,0.12);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 8px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero-grid,
  .rental-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 78px;
    padding-bottom: 78px;
  }

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

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

  .about-visual {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img {
    width: 205px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero-actions,
  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-inner .btn {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 9px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .trust-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(11,31,51,0.18);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .card-grid,
  .form-row,
  .about-features {
    grid-template-columns: 1fr;
  }

  .service-card,
  .contact-form,
  .rental-panel {
    padding: 25px;
  }

  .card-phone {
    font-size: 1.35rem;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    gap: 16px;
  }
}


/* Dual phone number styling */
.card-phones {
  display: grid;
  gap: 2px;
  margin-top: 18px;
}

.card-phones .card-phone {
  margin-top: 0;
}

.card-phone-secondary {
  font-size: 1.35rem;
  color: #5f5f5f;
}

.rental-phone-links {
  display: grid;
  gap: 4px;
  margin-top: 22px;
}

.rental-phone-links a {
  margin-top: 0;
}

.contact-second-link {
  display: block;
  margin-top: 3px;
}

.section-heading h2,
.about-copy h2,
.contact-section h2,
.section-dark h2,
.cta-section h2,
.service-card h3,
.contact-details a,
.contact-details p,
.hero-card h2,
.rental-panel,
.nav-cta {
  letter-spacing: -0.01em;
}


/* Spanish / English language switch */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 72px;
  min-height: 38px;
  padding: 7px 11px;
  border: 1px solid #b9b9b9;
  border-radius: 999px;
  background: #efefef;
  color: #0a0a0a;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.lang-toggle:hover {
  background: #f5b400;
  border-color: #f5b400;
  transform: translateY(-1px);
}

.lang-current {
  color: #0a0a0a;
}

.lang-separator,
.lang-other {
  color: #777777;
}

@media (max-width: 980px) {
  .lang-toggle {
    width: 100%;
    margin: 8px 0 4px;
    border-radius: 10px;
  }
}
