
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:      #071b2e;
    --navy-mid:  #0d2a42;
    --navy-light:#133654;
    --teal:      #3ec9a7;
    --teal-dim:  #2a9b82;
    --teal-glow: rgba(62,201,167,0.18);
    --white:     #ffffff;
    --off-white: #e8f0f7;
    --muted:     rgba(255,255,255,0.55);
    --border:    rgba(255,255,255,0.1);
    --card-bg:   rgba(255,255,255,0.05);
    --card-border: rgba(255,255,255,0.12);
    --input-bg:  rgba(255,255,255,0.07);
    --input-border: rgba(255,255,255,0.18);
    --input-focus: rgba(62,201,167,0.5);
    --warning-bg: rgba(255,190,50,0.12);
    --warning-border: rgba(255,190,50,0.3);
    --warning-text: #ffd166;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--navy);
    background-image:
      radial-gradient(ellipse 80% 60% at 70% 0%, rgba(62,201,167,0.13) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 0% 80%, rgba(62,201,167,0.09) 0%, transparent 55%),
      linear-gradient(160deg, #071b2e 0%, #0d2a42 40%, #071b2e 100%);
    background-attachment: fixed;
    color: var(--white);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
  }

  /* Subtle grid overlay for texture */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
  }

  /* ─── NAV ─── 
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7,27,46,0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
  }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .nav-logo img { height: 36px; object-fit: contain; }
  .nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.3px;
  }
  .nav-logo-text span { color: var(--teal); }
  .nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.2rem;
  }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 400;
    padding: 7px 12px;
    border-radius: 7px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
  .nav-links .nav-cta {
    background: var(--teal);
    color: var(--navy) !important;
    font-weight: 600;
    padding: 7px 16px;
    margin-left: 0.5rem;
  }
  .nav-links .nav-cta:hover { background: #50d4b5; }
  .nav-mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 22px; cursor: pointer; }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    z-index: 1;
    padding: 40px 0 20px 0;
    text-align: center;
    overflow: hidden;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--navy));
    pointer-events: none;
  }
  .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--teal-glow);
    border: 1px solid rgba(62,201,167,0.35);
    color: var(--teal);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 1.4rem;
    animation: fadeUp 0.5s ease both;
  }
  .hero-pill i { font-size: 13px; }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
    animation: fadeUp 0.55s 0.08s ease both;
  }
  .hero-title em { color: var(--teal); font-style: normal; }
  .hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
    animation: fadeUp 0.55s 0.14s ease both;
  }
  .hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    animation: fadeUp 0.55s 0.2s ease both;
  }
  .hero-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: 20px;
  }
  .hero-badge i { color: var(--teal); font-size: 13px; }

  /* ─── MAIN CONTENT ─── */
  .content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
  }

  /* ─── NOTICE ─── */
  .notice {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    border-radius: 14px;
    padding: 1.1rem 1.4rem;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    animation: fadeUp 0.5s 0.25s ease both;
  }
  .notice-icon {
    width: 38px; height: 38px;
    background: rgba(255,190,50,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--warning-text);
    font-size: 17px;
  }
  .notice-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--warning-text);
    margin-bottom: 4px;
  }
  .notice-body {
    font-size: 13px;
    color: rgba(255,209,102,0.75);
    line-height: 1.55;
  }
  .notice-body strong { color: var(--warning-text); font-weight: 600; }

  /* ─── STEPS ─── */
  .steps {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    animation: fadeUp 0.5s 0.3s ease both;
  }
  .step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
  }
  .step-dot {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: transparent;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    flex-shrink: 0;
    transition: all 0.3s;
  }
  .step-dot.done {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--navy);
  }
  .step-dot.active {
    background: rgba(62,201,167,0.15);
    border-color: var(--teal);
    color: var(--teal);
  }
  .step-text { font-size: 12.5px; color: var(--muted); }
  .step-text.active { color: var(--teal); font-weight: 500; }
  .step-line {
    flex: 1;
    height: 1px;
    background: var(--border);
    margin: 0 0.5rem;
  }
  .step-line.done { background: var(--teal); opacity: 0.4; }

  /* ─── FORM CARD ─── */
  .form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(62,201,167,0.06);
    animation: fadeUp 0.6s 0.35s ease both;
  }

  .form-card-header {
    background: linear-gradient(135deg, rgba(62,201,167,0.12) 0%, rgba(62,201,167,0.04) 100%);
    border-bottom: 1px solid var(--card-border);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .form-card-icon {
    width: 48px; height: 48px;
    background: rgba(62,201,167,0.15);
    border: 1px solid rgba(62,201,167,0.3);
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal);
    font-size: 22px;

    flex-shrink: 0;
  }
  .form-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 3px;
  }
  .form-card-sub {
    font-size: 13px;
    color: var(--muted);
  }

  .form-body {
    padding: 2rem;
  }

  /* ─── FIELDS ─── */
  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .field-group { display: flex; flex-direction: column; gap: 7px; }
  .field-group.full { grid-column: 1 / -1; }

  .field-label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  .field-wrap { position: relative; }
  .field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--teal);
    font-size: 15px;
    pointer-events: none;
    z-index: 1;
  }

  input[type="date"],
  input[type="time"],
  select {
    width: 100%;
    height: 50px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 0 14px 0 44px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    color-scheme: dark;
  }
  input[type="date"]:focus,
  input[type="time"]:focus,
  select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--input-focus);
    background: rgba(255,255,255,0.09);
  }
  input[type="date"]:hover,
  input[type="time"]:hover,
  select:hover {
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.08);
  }
  select option {
    background: #0d2a42;
    color: var(--white);
  }
  .select-caret {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 13px;
    pointer-events: none;
  }

  /* ─── TIME INPUT ─── */

  /* ─── LOCATION REVEAL ─── */
  .location-reveal {
    margin-top: 0.8rem;
    border: 1px solid rgba(62,201,167,0.25);
    border-radius: 12px;
    background: rgba(62,201,167,0.07);
    padding: 1rem 1.2rem;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
  }
  .location-reveal.visible {

    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .loc-pin-icon { color: var(--teal); font-size: 18px; margin-top: 1px; flex-shrink: 0; }
  .loc-name { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
  .loc-addr { font-size: 12.5px; color: rgba(62,201,167,0.75); line-height: 1.5; }
  .loc-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(62,201,167,0.15);
    border: 1px solid rgba(62,201,167,0.25);
    color: var(--teal);
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 6px;
  }

  /* ─── DIVIDER ─── */
  .divider {
    height: 1px;
    background: var(--border);
    margin: 1.8rem 0;
  }

  /* ─── SUBMIT ─── */
  .submit-btn {
    width: 100%;
    height: 54px;
    background: var(--teal);
    color: var(--navy);
    border: none;
    border-radius: 13px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(62,201,167,0.25);
  }
  .submit-btn:hover {
    background: #50d4b5;
    box-shadow: 0 6px 28px rgba(62,201,167,0.4);
    transform: translateY(-1px);
  }
  .submit-btn:active { transform: scale(0.99) translateY(0); }
  .submit-btn i { font-size: 17px; }

  .trust-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.1rem;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.35);
  }
  .trust-item i { color: var(--teal); font-size: 13px; }

  /* ─── SUCCESS STATE ─── */
  .success-state {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
  }
  .success-icon {
    width: 72px; height: 72px;
    background: rgba(62,201,167,0.15);
    border: 2px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 30px;
    margin: 0 auto 1.2rem;
  }
  .success-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.6rem;
  }
  .success-sub { font-size: 14px; color: var(--muted); line-height: 1.6; }

  /* ─── FOOTER ─── */
  footer {
    position: relative;
    z-index: 1;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 3rem 2rem 1.8rem;
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.7rem;
  }
  .footer-brand-name span { color: var(--teal); }
  .footer-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1.2rem;
  }
  .footer-socials { display: flex; gap: 8px; }
  .social-btn {
    width: 34px; height: 34px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
  }
  .social-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-glow); }

  .footer-col h5 {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.9rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.45rem; }
  .footer-col a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--teal); }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
  .cert-group { display: flex; gap: 8px; }
  .cert-tag {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: rgba(255,255,255,0.4);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 11px;
    border-radius: 5px;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 700px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: block; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 68px; left: 0; right: 0;
      background: rgba(7,27,46,0.97);
      border-bottom: 1px solid var(--border);
      padding: 1rem 1.5rem;
      gap: 0.3rem;
      z-index: 200;
    }
    .field-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero { padding: 3rem 1.5rem 2rem; }
    .hero-badges { flex-wrap: wrap; }
  }
  @media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .steps { display: none; }
  }

.location-field {color: #ffffff; border-radius: 10px; height: 50px; background-color: #283052; border: 1px solid #4a506e; width: 100%; }
