* {
    box-sizing: border-box;
    padding: 0%;
    margin: 0%;
}


 :root {
      --bg:          #0b1820;
      --bg-mid:      #0f2030;
      --bg-card:     #112233;
      --bg-card-h:   #16304a;
      --border:      rgba(255,255,255,0.08);
      --border-h:    rgba(255,255,255,0.15);
      --blue:        #1e6fa8;
      --blue-l:      #3da4e8;
      --teal:        #1acec8;
      --orange:      #e85d20;
      --white:       #ffffff;
      --white-90:    rgba(255,255,255,0.90);
      --white-65:    rgba(255,255,255,0.65);
      --white-40:    rgba(255,255,255,0.40);
      --nav-bg:      rgba(11,24,32,0.92);
      --radius:      10px;
      --radius-lg:   14px;
      --font:        'Barlow', sans-serif;
      --font-disp:   'Barlow Condensed', sans-serif;
    }

    html, body {
      background: var(--bg);
      font-family: var(--font);
      color: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ══════════════════════════════════════
       SHARED HELPERS
    ══════════════════════════════════════ */
    .wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-disp); font-weight: 700;
      font-size: 0.68rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--teal);
    }
    .eyebrow::before { content: ''; display: block; width: 18px; height: 2px; background: var(--teal); border-radius: 2px; }

    .display { font-family: var(--font-disp); font-weight: 900; line-height: 1.0; letter-spacing: -0.01em; color: var(--white); }
    .display--xl  { font-size: clamp(2.8rem, 6vw, 5rem); }
    .display--lg  { font-size: clamp(2rem, 4vw, 3.2rem); }
    .display--md  { font-size: clamp(1.5rem, 3vw, 2.2rem); }

    /* ══════════════════════════════════════
       CONTACT PAGE
    ══════════════════════════════════════ */
    .contact-page { padding-top: 68px; }

    /* ── HERO ── */
    .contact-hero {
      position: relative;
      padding: 100px 0 80px;
      background: radial-gradient(ellipse at 60% 40%, #0f2a3a 0%, #0b1820 65%);
      overflow: hidden;
    }
    .contact-hero__grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(30,111,168,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,111,168,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }
    .contact-hero__glow {
      position: absolute; top: -10%; right: -5%;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(26,206,200,0.07) 0%, transparent 65%);
      pointer-events: none;
    }
    .contact-hero__watermark {
      position: absolute; top: 50%; right: 4vw;
      transform: translateY(-50%);
      font-family: var(--font-disp); font-weight: 900;
      font-size: clamp(90px, 16vw, 260px);
      line-height: 0.85; color: rgba(255,255,255,0.03);
      white-space: nowrap; pointer-events: none; user-select: none;
    }
    .contact-hero__inner {
      position: relative; z-index: 2;
      max-width: 680px;
      display: flex; flex-direction: column; gap: 20px;
    }
    .contact-hero__sub {
      font-size: 1.05rem; color: var(--white-65);
      line-height: 1.7; max-width: 560px;
    }
    .contact-hero__badges {
      display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px;
    }
    .hero-badge {
      display: flex; align-items: center; gap: 8px;
      padding: 8px 14px; border-radius: 50px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      font-size: 0.8rem; color: var(--white-65); font-weight: 500;
    }
    .hero-badge svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }

    /* ── INFO CARDS STRIP ── */
    .info-strip {
      background: var(--bg-mid);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 0;
    }
    .info-strip__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .info-card {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 28px 28px;
      border-right: 1px solid var(--border);
      transition: background 0.2s;
    }
    .info-card:last-child { border-right: none; }
    .info-card:hover { background: var(--bg-card-h); }
    .info-card__icon {
      width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .info-card__icon svg { width: 22px; height: 22px; }
    .info-card__icon--teal { background: rgba(26,206,200,0.12); border: 1px solid rgba(26,206,200,0.25); color: var(--teal); }
    .info-card__icon--blue  { background: rgba(30,111,168,0.15); border: 1px solid rgba(30,111,168,0.3);  color: var(--blue-l); }
    .info-card__icon--orange { background: rgba(232,93,32,0.12); border: 1px solid rgba(232,93,32,0.25); color: #f07240; }
    .info-card__icon--purple { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25); color: #a78bfa; }
    .info-card__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-40); margin-bottom: 4px; }
    .info-card__value { font-size: 0.92rem; font-weight: 600; color: var(--white); line-height: 1.4; }
    .info-card__value a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
    .info-card__value a:hover { color: #4be8e2; }
    .info-card__note { font-size: 0.76rem; color: var(--white-40); margin-top: 3px; }

    /* ── MAIN BODY: FORM + SIDE ── */
    .contact-body {
      padding: 72px 0 80px;
      background:#b1bac0;
    }
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 48px;
      align-items: start;
    }

    /* ── FORM CARD ── */
    .form-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .form-card__head {
      padding: 28px 32px 24px;
      border-bottom: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(30,111,168,0.06) 0%, transparent 100%);
    }
    .form-card__title {
      font-family: var(--font-disp); font-weight: 800;
      font-size: 1.5rem; color: var(--white); margin-top: 8px;
    }
    .form-card__sub {
      font-size: 0.88rem; color: var(--white-65); margin-top: 6px; line-height: 1.6;
    }
    .form-card__body { padding: 32px; }

    /* ── FORM ELEMENTS ── */
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
    .form-group:last-of-type { margin-bottom: 0; }

    .form-label {
      font-size: 0.8rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--white-65);
    }
    .form-label .req { color: var(--teal); margin-left: 2px; }

    .form-input, .form-select, .form-textarea {
      width: 100%;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 12px 16px;
      font-family: var(--font); font-size: 0.92rem;
      color: var(--white);
      outline: none;
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
      -webkit-appearance: none;
    }
    .form-input::placeholder, .form-textarea::placeholder { color: var(--white-40); }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--teal);
      background: rgba(26,206,200,0.04);
      box-shadow: 0 0 0 3px rgba(26,206,200,0.1);
    }
    .form-input.error, .form-select.error, .form-textarea.error {
      border-color: #f05252;
      box-shadow: 0 0 0 3px rgba(240,82,82,0.1);
    }
    .form-select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgba(255,255,255,0.4)'%3E%3Cpath fill-rule='evenodd' d='M4.22 6.22a.75.75 0 011.06 0L8 8.94l2.72-2.72a.75.75 0 111.06 1.06L8.53 10.53a.75.75 0 01-1.06 0L4.22 7.28a.75.75 0 010-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 16px;
      padding-right: 40px;
      cursor: pointer;
    }
    .form-select option { background: #0d1f2d; color: var(--white); }
    .form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

    .field-error {
      font-size: 0.75rem; color: #f05252; margin-top: -4px;
      display: none;
    }
    .field-error.visible { display: block; }

    .form-hint {
      font-size: 0.76rem; color: var(--white-40); line-height: 1.5; margin-top: -4px;
    }

    /* Checkbox */
    .form-check {
      display: flex; align-items: flex-start; gap: 12px;
      margin-bottom: 24px; cursor: pointer;
    }
    .form-check input[type="checkbox"] {
      appearance: none; -webkit-appearance: none;
      width: 18px; height: 18px; flex-shrink: 0;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border-h);
      border-radius: 5px; margin-top: 1px;
      cursor: pointer; transition: background 0.2s, border-color 0.2s;
      position: relative;
    }
    .form-check input[type="checkbox"]:checked {
      background: var(--teal); border-color: var(--teal);
    }
    .form-check input[type="checkbox"]:checked::after {
      content: '';
      position: absolute; top: 2px; left: 5px;
      width: 5px; height: 9px;
      border: 2px solid #0b1820;
      border-top: none; border-left: none;
      transform: rotate(45deg);
    }
    .form-check input[type="checkbox"]:focus { outline: 2px solid var(--teal); outline-offset: 2px; }
    .form-check-label { font-size: 0.83rem; color: var(--white-65); line-height: 1.5; }
    .form-check-label a { color: var(--teal); text-decoration: none; }
    .form-check-label a:hover { text-decoration: underline; }

    /* Submit button */
    .form-submit {
      width: 100%;
      padding: 14px 24px;
      border-radius: var(--radius);
      font-family: var(--font); font-weight: 700; font-size: 1rem;
      color: #fff;
      background: linear-gradient(135deg, var(--orange) 0%, #c44010 100%);
      border: none; cursor: pointer;
      box-shadow: 0 4px 20px rgba(232,93,32,0.4);
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
      display: flex; align-items: center; justify-content: center; gap: 10px;
    }
    .form-submit:hover:not(:disabled) {
      background: linear-gradient(135deg, #f06a2e 0%, #d44818 100%);
      box-shadow: 0 6px 28px rgba(232,93,32,0.55);
      transform: translateY(-1px);
    }
    .form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
    .form-submit svg { width: 18px; height: 18px; }

    /* Spinner */
    .spinner {
      width: 18px; height: 18px; border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.3);
      border-top-color: #fff;
      animation: spin 0.7s linear infinite;
      display: none;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .submitting .spinner { display: block; }
    .submitting .submit-arrow { display: none; }

    /* Success/error states */
    .form-result {
      display: none;
      flex-direction: column; align-items: center;
      text-align: center; padding: 48px 32px; gap: 16px;
    }
    .form-result.visible { display: flex; }
    .result-icon {
      width: 72px; height: 72px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .result-icon--success { background: rgba(26,206,200,0.12); border: 2px solid rgba(26,206,200,0.3); }
    .result-icon--error   { background: rgba(240,82,82,0.1);   border: 2px solid rgba(240,82,82,0.25); }
    .result-icon svg { width: 36px; height: 36px; }
    .result-title { font-family: var(--font-disp); font-weight: 800; font-size: 1.6rem; color: var(--white); }
    .result-sub { font-size: 0.92rem; color: var(--white-65); line-height: 1.6; max-width: 360px; }
    .result-back { margin-top: 8px; padding: 10px 22px; border-radius: var(--radius); font-weight: 700; font-size: 0.88rem; color: #fff; background: linear-gradient(135deg, var(--orange), #c44010); border: none; cursor: pointer; transition: transform 0.2s; }
    .result-back:hover { transform: translateY(-1px); }

    /* ── SIDE PANEL ── */
    .contact-side { display: flex; flex-direction: column; gap: 20px; }

    .side-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
    }
    .side-card__title {
      font-family: var(--font-disp); font-weight: 800;
      font-size: 1.15rem; color: var(--white);
      margin-bottom: 16px;
    }

    /* Services list */
    .service-list { display: flex; flex-direction: column; gap: 12px; }
    .service-item {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 14px 16px; border-radius: var(--radius);
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
    }
    .service-item:hover { background: var(--bg-card-h); border-color: var(--border-h); }
    .service-item__dot {
      width: 8px; height: 8px; border-radius: 50%; margin-top: 5px; flex-shrink: 0;
    }
    .service-item__dot--teal   { background: var(--teal); box-shadow: 0 0 8px rgba(26,206,200,0.5); }
    .service-item__dot--blue   { background: var(--blue-l); box-shadow: 0 0 8px rgba(61,164,232,0.5); }
    .service-item__dot--orange { background: #f07240; box-shadow: 0 0 8px rgba(232,93,32,0.5); }
    .service-item__name { font-weight: 700; padding-bottom: .3rem; font-size: 0.88rem; color: var(--white); }
    .service-item__desc {line-height: 2.6; font-size: 0.76rem; color: var(--white-65); margin-top: 2px; line-height: 1.4; }

    /* Trust badges */
    .trust-list { display: flex; flex-direction: column; gap: 10px; }
    .trust-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.83rem; color: var(--white-65);
    }
    .trust-item svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }

    /* Quote block */
    .side-quote {
      background: linear-gradient(135deg, rgba(30,111,168,0.12), rgba(26,206,200,0.06));
      border: 1px solid rgba(26,206,200,0.2);
      border-radius: var(--radius-lg);
      padding: 24px;
    }
    .side-quote__text {
      font-size: 0.9rem; color: var(--white-90); line-height: 1.7;
      font-style: italic; margin-bottom: 16px;
    }
    .side-quote__text::before { content: '\201C'; color: var(--teal); font-size: 1.6rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
    .side-quote__text::after  { content: '\201D'; color: var(--teal); font-size: 1.6rem; line-height: 0; vertical-align: -0.4em; margin-left: 4px; }
    .side-quote__author { display: flex; align-items: center; gap: 10px; }
    .side-quote__avatar {
      width: 38px; height: 38px; border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--teal));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-disp); font-weight: 800;
      font-size: 0.9rem; color: #fff; flex-shrink: 0;
    }
    .side-quote__name { font-weight: 700; font-size: 0.85rem; color: var(--white); }
    .side-quote__role { font-size: 0.76rem; color: var(--white-65); }

    /* ── CTA BANNER ── */
    .cta-banner {
      position: relative; overflow: hidden;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      margin: 0 0 80px;
    }
    .cta-banner__bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(30,111,168,0.15) 0%, rgba(26,206,200,0.08) 50%, rgba(232,93,32,0.06) 100%);
    }
    .cta-banner__inner {
      position: relative; z-index: 1;
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px; padding: 40px 48px; flex-wrap: wrap;
    }
    .cta-banner__left { flex: 1 1 360px; display: flex; flex-direction: column; gap: 10px; }
    .cta-banner__title { font-family: var(--font-disp); font-weight: 900; font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--white); line-height: 1.1; }
    .cta-banner__sub { font-size: 0.9rem; color: var(--white-65); line-height: 1.6; max-width: 500px; }
    .cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
    .btn-primary { padding: 13px 26px; border-radius: var(--radius); font-weight: 700; font-size: 0.9rem; color: #fff; background: linear-gradient(135deg, var(--orange), #c44010); text-decoration: none; box-shadow: 0 4px 18px rgba(232,93,32,0.4); transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap; }
    .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(232,93,32,0.55); }
    .btn-ghost { padding: 12px 24px; border-radius: var(--radius); font-weight: 700; font-size: 0.9rem; color: var(--white-90); border: 1px solid var(--border-h); text-decoration: none; transition: background 0.2s, border-color 0.2s; white-space: nowrap; }
    .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.25); }


    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 1023px) {
      .contact-layout { grid-template-columns: 1fr; }
      .contact-side { display: grid; grid-template-columns: 1fr 1fr; }
      .side-quote { grid-column: 1 / -1; }
      .info-strip__grid { grid-template-columns: repeat(2, 1fr); }
      .info-card:nth-child(2) { border-right: none; }
      .info-card:nth-child(3) { border-top: 1px solid var(--border); }
      .info-card:nth-child(4) { border-top: 1px solid var(--border); }
      .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer__brand { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 24px; }
    }
    @media (max-width: 767px) {
      .contact-hero { padding: 90px 0 60px; }
      .info-strip__grid { grid-template-columns: 1fr; }
      .info-card { border-right: none; border-bottom: 1px solid var(--border); }
      .info-card:last-child { border-bottom: none; }
      .form-row { grid-template-columns: 1fr; }
      .contact-side { grid-template-columns: 1fr; }
      .side-quote { grid-column: auto; }
      .cta-banner__inner { padding: 32px 24px; }
      .footer__grid { grid-template-columns: 1fr; }
      .footer__brand { flex-direction: column; }
      .nav-links, .nav-cta-desktop { display: none !important; }
      .hamburger { display: flex; }
      .mobile-menu { display: block; }
    }
    @media (min-width: 768px) and (max-width: 1023px) {
      .nav-links, .nav-cta-desktop { display: none !important; }
      .hamburger { display: flex; }
      .mobile-menu { display: block; }
    }
    @media (max-width: 599px) {
      .mega-grid { grid-template-columns: 1fr; }
      .form-card__body { padding: 24px; }
    }