    :root{
      --brand:#0a6ef0; --bg:#f6f8fb; --ink:#1a1f36; --muted:#6b7280; --accent:#16a34a; --danger:#dc2626;
    }
    body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;margin:0;background:var(--bg);color:var(--ink);} 
    header{background:white;border-bottom:6px solid #e5e7eb; position:sticky;top:0;z-index:10}
    .container{max-width:1000px;margin:0 auto;padding:24px}
    h1{font-size:28px;margin:0}
    .card{background:#fff;border:1px solid #e5e7eb;border-radius:10px;padding:20px;margin:18px 0}
    .section-title{font-size:18px;margin:0 0 12px;color:var(--brand)}
    .grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    .grid-3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:14px}
    .row{display:flex;gap:14px;flex-wrap:wrap}
    label{display:block;font-weight:600;margin:8px 0 6px}
    input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], textarea, select{
      width:100%;padding:10px 12px;border:1px solid #d1d5db;border-radius:8px;font-size:14px;box-sizing:border-box;background:#fff
    }
    textarea{min-height:90px}
    .help{color:var(--muted);font-size:12px;margin-top:4px}
    .muted{color:var(--muted)}
    .req{color:var(--danger)}
    .inline{display:flex;align-items:center;gap:8px}
    .btnbar{display:flex;gap:12px;align-items:center}
    .btn{appearance:none;border:none;background:var(--brand);color:#fff;padding:12px 18px;border-radius:8px;font-weight:600;cursor:pointer}
    .btn.secondary{background:#111827}
    .btn.ghost{background:transparent;color:var(--brand);border:1px solid var(--brand)}
    .terms{background:#f9fafb;border:1px solid #e5e7eb;border-radius:8px;padding:12px;max-height:160px;overflow:auto;font-size:13px}
    .sig-wrap{border:1px dashed #94a3b8;border-radius:8px;padding:10px;background:#f8fafc}
    canvas#signature{width:100%;height:180px;border:1px solid #cbd5e1;border-radius:6px;background:#ffffff}
    .footer-note{font-size:12px;color:var(--muted)}
    .hp-field{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
    
/* Dark luxury header */
.lux-header {
  background: #0d0d0d;
  padding: 20px 0 0 0;
  border-bottom: none;
}


/* Flex layout */
.lux-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  gap: 24px;
}

/* Logo */
.lux-logo {
  height: 65px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4));
}

/* Navigation */
.lux-nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #e5e5e5;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

.lux-nav a:hover {
  color: #d4af37;
}

.lux-nav a.active {
  color: #f7e27c;
}

/* Car silhouette */
.lux-car {
  height: 85px;
  width: auto;
  opacity: 0.85;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.3));
}


/* Floating luxury header */
.angev-banner-header {
  width: 100%;
  height: 220px;
  background-image: url('/assets/img/intake_header.png');
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

  /* Floating effect */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
}



/* Overlay content */
.angev-banner-overlay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 40px;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Optional: adds contrast over image */
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 0px;
}

.banner-nav {
  display: flex;
  gap: 28px;
}


/* Logo */
.banner-logo {
  height: 80px;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4));
}

/* Navigation */
.banner-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.banner-nav a.active {
  color: #f7e27c;
}

/* Car silhouette */
.banner-car {
  height: 120px;
  opacity: 0.9;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.3));
}
body {
  padding-top: 220px; /* 👈 Matches the header height */
}

/* Fade-in animation */
@keyframes headerFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.angev-banner-header {
  animation: headerFadeIn 1s ease-out forwards;
}

/* Default height */
.angev-banner-header {
  height: 220px;
  transition: height 0.35s ease, box-shadow 0.35s ease;
  
}

/* Shrunk header */
.angev-banner-header.shrink {
  height: 120px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px) brightness(1.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}



/* Gold glow under header */
.angev-banner-header {
  box-shadow:
    0 20px 18px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(212, 175, 55, 0.35); /* Gold glow */
  backdrop-filter: blur(2px);
  
}
/* Gold accent line */
.lux-gold-line {
  height: 8px;
  background: linear-gradient(90deg, #d4af37, #f7e27c, #d4af37);
}
/* Gold underline animation */
.banner-nav a {
  position: relative;
  padding-bottom: 4px;
}

.banner-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f7e27c);
  transition: width 0.35s ease;
}

.banner-nav a:hover::after {
  width: 100%;
}

/* Hide hamburger on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #f7e27c;
  border-radius: 2px;
}

/* Mobile menu hidden by default */
.banner-nav {
  display: flex;
  gap: 28px;
}

@media (max-width: 768px) {
  .banner-nav {
    position: absolute;
    top: 220px;
    right: 0;
    background: rgba(0,0,0,0.85);
    width: 100%;
    flex-direction: column;
    padding: 20px;
    display: none;
    text-align: center;
  }

  .banner-nav.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

.banner-text-animated {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 700;
  color: #f7e27c;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  animation: flashGold 2.5s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes flashGold {
  0% { opacity: 0.4; text-shadow: 0 0 6px rgba(212,175,55,0.3); }
  50% { opacity: 1; text-shadow: 0 0 18px rgba(212,175,55,0.8); }
  100% { opacity: 0.4; text-shadow: 0 0 6px rgba(212,175,55,0.3); }
}


.banner-text-animated span {
  display: inline-block;
  animation: slideText 10s linear infinite, flashGold 2.5s ease-in-out infinite;
}

.banner-rotating-text {
  position: absolute;
  top: 55%;
  left: 34%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 700;
  color: #f7e27c;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.text-item {
  position: absolute;
  opacity: 0;
  animation: rotateText 12s infinite;
}

.text-item:nth-child(1) { animation-delay: 0s; }
.text-item:nth-child(2) { animation-delay: 4s; }
.text-item:nth-child(3) { animation-delay: 8s; }

@keyframes rotateText {
  0% { opacity: 0; transform: translateY(10px); }
  10% { opacity: 1; transform: translateY(0); }
  30% { opacity: 1; }
  40% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 0; }
}

.typing-effect {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 700;
  color: #f7e27c;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #f7e27c;
  width: 0;
  animation: typing 4s steps(40) forwards, blink 0.7s infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 420px; } /* Adjust width to match your text */
}

@keyframes blink {
  50% { border-color: transparent; }
}

.fade-sequence {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 700;
  color: #f7e27c;
  white-space: nowrap;
}

.fade-sequence span {
  opacity: 0;
  animation: fadeSeq 9s infinite;
  position: absolute;
}

.fade-sequence span:nth-child(1) { animation-delay: 0s; }
.fade-sequence span:nth-child(2) { animation-delay: 3s; }
.fade-sequence span:nth-child(3) { animation-delay: 6s; }

@keyframes fadeSeq {
  0% { opacity: 0; }
  20% { opacity: 1; }
  40% { opacity: 1; }
  60% { opacity: 0; }
  100% { opacity: 0; }
}

/* Scroll-to-top button */
#scrollTopBtn {
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 99999;
  background: linear-gradient(90deg, #d4af37, #f7e27c);
  color: #0b0b0b;
  border: none;
  padding: 14px 18px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.6);
  display: none;
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  box-shadow: 0 0 28px rgba(247, 226, 124, 0.9);
  transform: translateY(-4px);
}

.premium-help {
    margin-top: 10px;
    font-size: 0.92rem;
    color: #d4d4d4;
    background: rgba(255, 215, 0, 0.05);
    padding: 10px 14px;
    border-left: 3px solid #c9a44b;
    border-radius: 4px;
    line-height: 1.5;
}

.premium-help a {
    color: #c9a44b;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
}

.premium-help a:hover {
    color: #f5d27a;
    border-bottom: 1px solid #f5d27a;
}
.money-field {
    position: relative;
    display: flex;
    flex-direction: column;
}

.money-field .prefix {
    position: absolute;
    top: 38px;
    left: 12px;
    color: #c9a44b;
    font-weight: 600;
    font-size: 1rem;
}

.money-field input {
    padding-left: 28px;
}

.money-field {
    position: relative;
    display: flex;
    flex-direction: column;
}

.money-field .prefix {
    position: absolute;
    top: 38px;
    left: 12px;
    color: #c9a44b;
    font-weight: 600;
    font-size: 1rem;
}

.money-field input {
    padding-left: 28px;
}

.premium-help {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #d4d4d4;
    background: rgba(255, 215, 0, 0.05);
    padding: 8px 12px;
    border-left: 3px solid #c9a44b;
    border-radius: 4px;
}

.money-field {
    position: relative;
    display: flex;
    flex-direction: column;
}

.money-field .prefix {
    position: absolute;
    top: 38px;
    left: 12px;
    color: #c9a44b;
    font-weight: 600;
    font-size: 1rem;
}

.money-field input {
    padding-left: 28px;
}
