:root {
  --bg-dark: #000000;
  --gold-accent: #FFD54F;
  --gold-dark: #FFB300;
  --gold-gradient: linear-gradient(180deg, #FFD54F 0%, #FFB300 100%);
  --text-primary: #FFFFFF;
  --text-secondary: #F3F4F6;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  font-size: 0.96rem;
  box-shadow: inset 0 0 120px rgba(0, 51, 153, 0.4);
  width: 100%;
  overflow-x: hidden;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 213, 79, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 100px;
  width: 100%;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.logo-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFD54F;
}
.logo-text {
  font-size: 2rem;
  font-weight: 900;
  color: #FFD54F;
  letter-spacing: 3px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
nav a {
  text-decoration: none;
  color: #FFD54F;
  font-weight: 700;
  font-size: 1.15rem;
  transition: color 0.3s ease;
}
nav a:hover, nav a.active {
  color: #FFFFFF;
}
.hero {
  padding: 5rem 5%;
  text-align: center;
  background: radial-gradient(circle at 50% 50%, rgba(255, 213, 79, 0.1) 0%, var(--bg-dark) 60%);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
h1, h2, h3, h4 {
  font-weight: 900;
  color: #FFFFFF;
}
h1 {
  font-size: 7rem;
  line-height: 1.0;
  margin-bottom: 0.75rem;
  letter-spacing: -2px;
}
h2 {
  font-size: 2.75rem;
}
h3 {
  font-size: 1.75rem;
}
.ready-headline {
  font-size: 3.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #FFFFFF !important;
}
.subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(180deg, #FFD54F 0%, #FFB300 100%);
  color: #000000;
  padding: 2.8rem 7rem;
  font-size: 2.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 6px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease, background 0.3s ease;
  border: none;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 20px rgba(255, 213, 79, 0.5);
  letter-spacing: 3px;
}
.btn-primary:hover {
  transform: scale(1.02);
  background: linear-gradient(180deg, #FFE082 0%, #FFCA28 100%);
  box-shadow: 0 4px 30px rgba(255, 213, 79, 0.8);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  border-color: #FFD54F;
  color: #FFD54F;
}
.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.benefits-row {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
  width: 100%;
}
.benefits-row li {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  white-space: nowrap;
  list-style: none;
}
.benefits-row li::before {
  content: "● ";
  color: #FFD54F;
  font-size: 1.1rem;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.feature-item {
  padding: 2rem;
}
.feature-item h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.content-section {
  padding: 5rem 5%;
  width: 100%;
  margin: 0;
}
.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #FFD54F;
}
.content-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  display: block;
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255,213,79,0.1);
}
.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
  border-color: #FFD54F;
}
.service-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}
footer {
  background: #000;
  padding: 4rem 5% 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  margin: 0;
}
.footer-col {
  flex: 1;
  min-width: 250px;
}
.footer-col h4 {
  color: #FFD54F;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.footer-col p, .footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-col a:hover {
  color: #FFD54F;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #666;
}
.social-icon svg {
  transition: opacity 0.3s ease;
}
.social-icon:hover svg {
  opacity: 0.8;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
}
.hamburger span {
  width: 30px;
  height: 3px;
  background: #FFD54F;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}
header.tight-header {
  padding: 0 5%;
  border-bottom: 1px solid rgba(255,213,79,0.2);
  height: 100px;
  width: 100%;
}
header.tight-header .logo-container {
  height: 100%;
}
header.tight-header .logo-img {
  width: 75px;
  height: 75px;
  border-radius: 0;
  border: none;
  margin: 0;
  display: block;
  mix-blend-mode: screen;
  object-fit: contain;
}
header.tight-header .hamburger {
  margin-left: auto;
}
header.tight-header .logo-text {
  font-size: 2rem;
  font-weight: 900;
  color: #FFD54F;
}
.hero.tight-section {
  padding: 3rem 5% 2rem;
  min-height: auto;
  width: 100%;
}
.tight-subtitle {
  margin-bottom: 1.5rem;
  margin-top: 0;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
}
.cta-wrapper {
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
}
.cta-subtext {
  font-size: 1rem;
  color: #FFF;
  margin-bottom: 0;
  line-height: 1.5;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 1rem;
  color: #FFD54F;
  margin-top: 1rem;
}
.tight-grid {
  gap: 1.5rem !important;
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.tight-card {
  padding: 1.5rem !important;
}
.tight-card h3, .tight-card .step-num {
  margin-bottom: 0.75rem !important;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.4;
}
.content-section.tight-section {
  padding: 2.5rem 5%;
  width: 100%;
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 0 auto 2rem;
  max-width: 650px;
}
.why-us-grid li {
  padding: 0.75rem 1rem;
  font-weight: 800;
  color: #FFFFFF;
  font-size: 1.15rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
}
h2.text-center {
  margin-bottom: 0.5rem;
}
.large-text {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.4;
  color: var(--text-primary);
}
.medium-text {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.large-img {
  max-width: 100%;
  width: 800px;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255,213,79,0.4);
  display: block;
  margin: 0 auto;
}
footer.tight-footer {
  padding: 2rem 5% 1rem;
  margin-top: 2rem;
  width: 100%;
}
.clickable-email {
  color: #FFD54F;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 0.25rem;
  display: inline-block;
}
.bold-phone {
  font-weight: 900;
  color: var(--text-primary);
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  header.tight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    height: 80px;
    width: 100%;
  }
  header.tight-header .logo-container {
    height: auto;
    flex: 1;
  }
  header.tight-header .logo-img {
    width: 45px;
    height: 45px;
    transform: none;
  }
  header.tight-header .logo-text {
    font-size: 1.2rem;
  }
  header.tight-header .hamburger {
    margin-left: 1.5rem;
    transform: none;
    border-left: none;
    flex-shrink: 0;
  }
  h1 {
    font-size: 3.5rem;
  }
  .ready-headline {
    font-size: 2.25rem;
  }
  .btn-group {
    flex-direction: column;
  }
  .btn-primary {
    width: 100%;
    padding: 2rem 1rem;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
    white-space: normal;
  }
  .hamburger {
    display: flex;
  }
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000000;
    box-shadow: inset 0 0 120px rgba(0,51,153,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 999;
  }
  nav ul.active {
    right: 0;
  }
  nav ul li {
    margin: 1.5rem 0;
  }
  nav ul li a {
    font-size: 2rem;
    color: #FFD54F;
  }
  .features, .services-grid {
    grid-template-columns: 1fr;
  }
  .benefits-row {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .benefits-row li {
    font-size: 1rem;
    white-space: normal;
  }
  .footer-content {
    grid-template-columns: 1fr !important;
  }
  main {
    width: 100%;
  }
  section {
    width: 100%;
  }
}
/* -- DROPDOWN NAVIGATION -- */
.has-dropdown { position: relative; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: rgba(0,0,0,0.98); border: 1px solid rgba(255,213,79,0.3); border-top: 2px solid #FFD54F; min-width: 220px; list-style: none; z-index: 200; padding: 0.5rem 0; gap: 0; }
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { display: block; padding: 0.65rem 1.25rem; font-size: 0.9rem; font-weight: 600; color: #FFD54F; white-space: nowrap; transition: background 0.2s ease, color 0.2s ease; }
.dropdown li a:hover { color: #FFFFFF; background: rgba(255,213,79,0.12); }

  /* -- MOBILE: hide dropdown sub-items (parent links already go to same pages) -- */
  nav ul.dropdown { display: none !important; }
  .has-dropdown > a::after { display: none; }

@media (max-width: 768px) {
  .dropdown { display: none; position: static; background: rgba(255,213,79,0.05); border: none; border-top: 1px solid rgba(255,213,79,0.2); min-width: unset; width: 100%; padding: 0; margin-bottom: 1rem; }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown > a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
  .dropdown li { margin: 0; }
  .dropdown li a { font-size: 1.35rem; padding: 0.8rem 1rem; text-align: center; }
}



/* ===== LINK COLOURS ===== */
.content-section a:not(.btn-primary),
.content-section a:not(.btn-primary):link,
.content-section a:not(.btn-primary):visited,
.hero a:not(.btn-primary),
.hero a:not(.btn-primary):link,
.hero a:not(.btn-primary):visited {
  color: #FFD54F;
  text-decoration: none;
}
.content-section a:not(.btn-primary):hover,
.hero a:not(.btn-primary):hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ===== TEXT ALIGNMENT ===== */
.text-center { text-align: center; }

/* ===== CTA SPACING & MOBILE ===== */
.cta-wrapper { margin-top: 2.5rem; }
.cta-subtext { margin-top: 1.2rem; word-break: break-word; font-size: 0.95rem; }
@media (max-width: 768px) {
  .cta-subtext { font-size: 0.82rem; }
}

/* ===== HERO BUTTON SPACING ===== */
.hero > a.btn-primary {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.hero > a.btn-primary + p {
  margin-top: 0;
  word-break: break-word;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .hero > a.btn-primary + p { font-size: 0.82rem; }
}

/* ===== MOBILE EMAIL FIT ===== */
@media (max-width: 768px) {
  .hero > a.btn-primary + p,
  .cta-subtext {
    font-size: 0.7rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

/* ===== CTA WRAPPER SUBTEXT MOBILE ===== */
.cta-wrapper > p {
  font-size: 0.95rem;
  overflow-wrap: break-word;
  word-break: break-word;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .cta-wrapper > p { font-size: 0.7rem; }
}

/* ===== MOBILE SUBTEXT OVERRIDE ===== */
@media (max-width: 768px) {
  .hero > a.btn-primary + p {
    font-size: 0.7rem !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
}


/* ===== MOBILE SUBTEXT FIX v18 ===== */
@media (max-width: 768px) {
  .hero > a.btn-primary + p,
  .hero > .cta-wrapper + p,
  .content-section > a.btn-primary + p,
  .content-section > .cta-wrapper + p {
    font-size: 1rem !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
}

/* ===== MOBILE SUBTEXT SIZE v19 ===== */
@media (max-width: 768px) {
  .hero > a.btn-primary + p,
  .hero > .cta-wrapper + p,
  .content-section > a.btn-primary + p,
  .content-section > .cta-wrapper + p {
    font-size: 1.15rem !important;
  }
}

/* ===== BENEFITS ROW BIGGER ===== */
.benefits-row li { font-size: 1.7rem !important; }
.benefits-row li::before { font-size: 1.3rem !important; }

/* ===== SUB-PAGE IMPROVEMENTS v20 ===== */
.hero.tight-section h1 {
  text-transform: uppercase;
  font-size: clamp(3.5rem, 8vw, 7rem);
}
.hero-subline {
  color: #FFD54F;
  font-weight: 900;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  margin-top: 0.3rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.trust-section {
  padding: 2.5rem 5%;
  background: rgba(255, 213, 79, 0.04);
  border-top: 1px solid rgba(255, 213, 79, 0.15);
  border-bottom: 1px solid rgba(255, 213, 79, 0.15);
  text-align: center;
  width: 100%;
}
.trust-section h2 {
  color: #FFD54F;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.vehicle-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,213,79,0.15);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: left;
}
.vehicle-card h3 {
  color: #FFD54F;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
.vehicle-card p {
  color: #F3F4F6;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.vehicle-card a {
  color: #FFD54F;
  font-weight: 700;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
}
