/* Header and Footer css only */

/* =====================================================
   WHF 2026 DESIGN SYSTEM
===================================================== */
:root {
    --green-main: #00C853;
    --green-dark: #009624;
    --green-light: #69F0AE;
    --dark: #07130D;
    --dark-2: #0B1F15;
    --white: #ffffff;
    --text-soft: #A8B8AF;
    --border: rgba(255, 255, 255, .12);
    --shadow: 0 25px 70px rgba(0, 0, 0, .45);
    --transition: .35s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  
  body {
    font-family: Inter, system-ui, sans-serif;
  }
  
  a {
    text-decoration: none;
  }
  
  /* =====================================================
     HEADER
  ===================================================== */
  .whf2026-header {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 70px);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 19, 13, .88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  
  /* LOGO */
  .whf2026-logo {
    display: flex;
    align-items: center;
  }
  
  .whf2026-logoImg {
    width: auto;
    height: 65px;
    border-radius: 50%;
  }
  
  .whf2026-logoText {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
  }
  
  /* =====================================================
     NAVIGATION
  ===================================================== */
  .whf2026-navList {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
  }
  
  .whf2026-navItem {
    position: static;
  }
  
  .whf2026-navLink {
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: .3s;
  }
  
  .whf2026-navLink:hover {
    background: rgba(0, 200, 83, .15);
    color: var(--green-light);
  }
  
  /* Make Tools button look like normal navigation text */
  .whf2026-megaTrigger {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    color: white;
    padding: 12px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  /* =====================================================
     DESKTOP FULL WIDTH MEGA MENU
  ===================================================== */
  .whf2026-megaMenu {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translate(-50%, 20px);
    width: 100vw;
    max-width: 100%;
    padding: 40px clamp(20px, 8vw, 100px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, #0B1F15, #07130D);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
  }
  
  .whf2026-hasMega:hover .whf2026-megaMenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
  
  .whf2026-megaHeading {
    color: var(--green-light);
    margin-bottom: 15px;
  }
  
  .whf2026-megaLink {
    display: block;
    color: var(--text-soft);
    padding: 8px 0;
    transition: .3s;
  }
  
  .whf2026-megaLink:hover {
    color: white;
    transform: translateX(8px);
  }
  
  /* =====================================================
     HAMBURGER
  ===================================================== */
  .whf2026-navToggle {
    display: none;
    background: none;
    border: 0;
  }
  
  .whf2026-navToggleBar {
    width: 28px;
    height: 3px;
    display: block;
    margin: 5px;
    background: white;
    border-radius: 20px;
  }
  
  /* =====================================================
     FOOTER
  ===================================================== */
  .whf2026-footer {
    background: radial-gradient(circle at top, #10351F, #050B07);
    padding: 70px clamp(20px, 5vw, 80px) 25px;
    color: white;
  }
  
  .whf2026-footerContainer {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
  }
  
  .whf2026-footerLogo {
    display: flex;
    align-items: center;
  }
  .whf2026-footerLogoImg {
    width: auto;
    height: 65px;
    border-radius: 50%;
  }
  .whf2026-footerBrandName {
    font-size: 1.4rem;
    font-weight: 700;
  }
  
  .whf2026-footerDesc {
    margin: 20px 0;
    line-height: 1.7;
    color: var(--text-soft);
  }
  
  /* SOCIAL */
  .whf2026-socialLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .whf2026-socialLink {
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .08);
    color: white;
    transition: .3s;
  }
  
  .whf2026-socialLink:hover {
    background: var(--green-main);
    transform: translateY(-4px);
  }
  
  .whf2026-footerHeading {
    color: var(--green-light);
    margin-bottom: 20px;
  }
  
  .whf2026-footerNav {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .whf2026-footerLink {
    color: var(--text-soft);
    transition: .3s;
  }
  
  .whf2026-footerLink:hover {
    color: white;
    transform: translateX(8px);
  }
  
  .whf2026-footerBottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
  }
  
  .whf2026-legalNav {
    display: flex;
    gap: 20px;
  }
  
  .whf2026-legalLink {
    color: var(--text-soft);
  }
  
  /* =====================================================
     MOBILE NAVIGATION + FOOTER
  ===================================================== */
  @media(max-width: 768px) {
    /* ================= HEADER ================= */
    .whf2026-header {
      height: 75px;
      padding: 0 20px;
    }
  
    /* Hamburger visible */
    .whf2026-navToggle {
      display: block;
      width: 40px;
      height: 40px;
      position: relative;
      z-index: 2000;
    }
  
    /* Hamburger animation */
    .whf2026-navToggleBar {
      width: 28px;
      height: 3px;
      margin: 6px auto;
      transition: .35s ease;
    }
  
    /* when menu opens */
    .whf2026-navToggle.active .whf2026-navToggleBar:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
  
    .whf2026-navToggle.active .whf2026-navToggleBar:nth-child(2) {
      opacity: 0;
    }
  
    .whf2026-navToggle.active .whf2026-navToggleBar:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  
    /* ================= MOBILE MENU ================= */
    .whf2026-nav {
      position: fixed;
      top: 75px;
      left: 0;
      width: 85%;
      height: calc(100vh - 75px);
      background: linear-gradient(160deg, #0B1F15, #07130D);
      transform: translateX(-100%);
      transition: .45s ease;
      overflow-y: auto;
      z-index: 1500;
      border-right: 1px solid var(--border);
    }
  
    /* open menu */
    .whf2026-nav.active {
      transform: translateX(0);
    }
  
    .whf2026-navList {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 5px;
      padding: 25px;
    }
  
    .whf2026-navLink {
      width: 100%;
      justify-content: space-between;
      padding: 15px 10px;
      border-radius: 10px;
    }
  
    /* remove desktop hover */
    .whf2026-navLink:hover {
      background: none;
    }
  
    /* ================= TOOLS DROPDOWN ================= */
    .whf2026-hasMega {
      position: relative;
    }
  
    .whf2026-megaTrigger {
      width: 100%;
      justify-content: space-between;
    }
  
    /* arrow */
    .whf2026-megaTrigger::after {
      content: "›";
      font-size: 22px;
      transition: .3s;
    }
  
    .whf2026-hasMega.active .whf2026-megaTrigger::after {
      transform: rotate(90deg);
    }
  
    /* hide mega menu */
    .whf2026-megaMenu {
      position: static;
      width: 100%;
      padding: 10px 15px;
      display: none;
      grid-template-columns: 1fr;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      border: none;
    }
  
    /* Disable desktop hover mega menu behavior */
    .whf2026-hasMega:hover .whf2026-megaMenu {
      transform: none;
    }
  
    .whf2026-megaMenu {
      left: auto;
      top: auto;
      transform: none !important;
      width: 100%;
    }
  
    /* show tools */
    .whf2026-hasMega.active .whf2026-megaMenu {
      display: block;
    }
  
    .whf2026-megaCol {
      margin-bottom: 20px;
    }
  
    .whf2026-megaHeading {
      font-size: .9rem;
    }
  
    /* ================= FOOTER MOBILE ================= */
    .whf2026-footer {
      padding: 50px 20px 25px;
    }
  
    .whf2026-footerContainer {
      grid-template-columns: 1fr;
      gap: 35px;
    }
  
    .whf2026-footerBrand {
      text-align: center;
    }
  
    .whf2026-footerLogo {
      justify-content: center;
    }
  
    .whf2026-footerDesc {
      text-align: center;
    }
  
    .whf2026-socialLinks {
      justify-content: center;
    }
  
    .whf2026-footerCol {
      text-align: center;
    }
  
    .whf2026-footerNav {
      align-items: center;
    }
  
    .whf2026-addressLine {
      text-align: center;
    }
  
    .whf2026-footerBottom {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      text-align: center;
    }
  
    .whf2026-legalNav {
      flex-direction: column;
      gap: 12px;
    }
  }
  
  
  
  
  
  /* ==================================================================================================================================================================== */
  
    /* HEADER AND FOOTER ENDS HERE */
    /* HEADER AND FOOTER ENDS HERE */
      /* HEADER AND FOOTER ENDS HERE */
  /* HEADER AND FOOTER ENDS HERE */
  /* ==================================================================================================================================================================== */
  
  


















  main {
    background: var(--white);
    padding: 72px 40px 100px;
  }
   
  .whf2026-contactTitle {
    max-width: 1200px;
    margin: 0 auto 56px;
    text-align: center;
    font-size: clamp(2.1rem, 4vw, 2.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark);
   
    /* one-time shine on load */
    display: block;
    background-image: linear-gradient(
      100deg,
      var(--dark) 0%,
      var(--dark) 40%,
      var(--green-main) 50%,
      var(--dark) 60%,
      var(--dark) 100%
    );
    background-size: 220% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: whf2026-headingShine 2.2s ease-out 0.2s 1 both;
  }
   
  @keyframes whf2026-headingShine {
    0%   { background-position: 100% 0; }
    100% { background-position: -20% 0; }
  }
   
  @media (prefers-reduced-motion: reduce) {
    .whf2026-contactTitle {
      animation: none;
      -webkit-text-fill-color: var(--dark);
    }
  }
   
  /* ---- Two-column row: intro (left) / form (right) ---- */
   
  main > div {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }
   
  /* ---- Left column: intro copy ---- */
   
  .whf2026-contactIntro {
    padding-top: 6px;
    padding-right: 24px;
    border-right: 1px solid var(--border-soft);
  }
   
  .whf2026-contactIntro::before {
    content: "GET IN TOUCH";
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--green-dark);
  }
   
  .whf2026-contactIntro h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 18px;
    letter-spacing: -0.01em;
  }
   
  .whf2026-contactIntro p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 16px;
    max-width: 46ch;
  }
   
  .whf2026-contactIntro p:last-child {
    margin-bottom: 0;
  }
   
  /* ---- Right column: form card ---- */
   
  .whf2026-contactSection {
    position: relative;
  }
   
  #contactWrapper {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    box-shadow: 0 1px 2px rgba(7, 19, 13, 0.04), 0 16px 40px rgba(7, 19, 13, 0.07);
    padding: 40px;
    position: relative;
    overflow: hidden;
   
    /* once-only rise + shine when the card enters the viewport */
    opacity: 0;
    transform: translateY(16px);
  }
   
  #contactWrapper.whf2026-in-view {
    animation: whf2026-cardRise 0.6s ease-out forwards;
  }
   
  #contactWrapper.whf2026-in-view::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
      100deg,
      transparent 0%,
      rgba(0, 200, 83, 0.10) 50%,
      transparent 100%
    );
    animation: whf2026-cardShine 1.4s ease-out 0.5s 1;
    pointer-events: none;
  }
   
  @keyframes whf2026-cardRise {
    to { opacity: 1; transform: translateY(0); }
  }
   
  @keyframes whf2026-cardShine {
    to { left: 130%; }
  }
   
  @media (prefers-reduced-motion: reduce) {
    #contactWrapper {
      opacity: 1;
      transform: none;
    }
    #contactWrapper.whf2026-in-view::after {
      animation: none;
      display: none;
    }
  }
   
  /* ---- Form ---- */
   
  .whf2026-contactForm {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
   
  .whf2026-formGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
   
  .whf2026-formLabel {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
  }
   
  .whf2026-formInput,
  .whf2026-formTextarea {
    width: 100%;
    font-family: inherit;
    font-size: 0.975rem;
    color: var(--dark);
    background: var(--white);
    border: 1.5px solid rgba(7, 19, 13, 0.12);
    border-radius: 12px;
    padding: 13px 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
   
  .whf2026-formTextarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
  }
   
  .whf2026-formInput::placeholder,
  .whf2026-formTextarea::placeholder {
    color: var(--text-soft);
  }
   
  .whf2026-formInput:hover,
  .whf2026-formTextarea:hover {
    border-color: rgba(7, 19, 13, 0.2);
  }
   
  .whf2026-formInput:focus,
  .whf2026-formTextarea:focus {
    outline: none;
    border-color: var(--green-main);
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.12);
  }
   
  .whf2026-formInput:invalid:not(:placeholder-shown),
  .whf2026-formTextarea:invalid:not(:placeholder-shown) {
    border-color: #E5484D;
  }
   
  .whf2026-formSubmit {
    align-self: flex-start;
    margin-top: 6px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background: var(--green-dark);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.35s ease, transform 0.3s ease, box-shadow 0.35s ease;
    box-shadow: 0 1px 2px rgba(0, 150, 36, 0.15);
  }
   
  .whf2026-formSubmit:hover {
    background: var(--green-main);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 150, 36, 0.28);
  }
   
  .whf2026-formSubmit:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 150, 36, 0.2);
  }
   
  .whf2026-formSubmit:focus-visible {
    outline: 2px solid var(--green-main);
    outline-offset: 2px;
  }
   
  /* ---- After-submit state ----
     Server renders the success overlay only on a successful POST. We use
     that as the source of truth: when it's present, swap the form for the
     thank-you panel purely in CSS — no flash, no JS timing needed. */
   
  .whf2026-afterSubmit {
    display: none;
  }
   
  .whf2026-contactSection:has(.whf2026-successOverlay) .whf2026-contactForm {
    display: none;
  }
   
  .whf2026-contactSection:has(.whf2026-successOverlay) .whf2026-afterSubmit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 4px 8px;
    animation: whf2026-afterIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
  }
   
  .whf2026-contactSection:has(.whf2026-successOverlay) .whf2026-afterSubmit::before {
    content: "\2713";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 700;
    animation: whf2026-checkPop 0.5s ease 0.35s both,
               whf2026-checkRing 1.6s ease 0.55s 1;
  }
   
  @keyframes whf2026-afterIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
   
  @keyframes whf2026-checkPop {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
  }
   
  @keyframes whf2026-checkRing {
    0%   { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.35); }
    100% { box-shadow: 0 0 0 16px rgba(0, 200, 83, 0); }
  }
   
  .whf2026-afterSubmit h2 {
    color: var(--dark);
    font-size: 1.375rem;
    margin: 0 0 10px;
  }
   
  .whf2026-afterSubmit p {
    color: var(--text-soft);
    line-height: 1.7;
    margin: 0;
    max-width: 36ch;
  }
   
  @media (prefers-reduced-motion: reduce) {
    .whf2026-contactSection:has(.whf2026-successOverlay) .whf2026-afterSubmit,
    .whf2026-contactSection:has(.whf2026-successOverlay) .whf2026-afterSubmit::before {
      animation: none;
    }
  }
   
  /* ---- Inline error alert (validation errors, etc.) ---- */
   
  .whf2026-formAlert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    animation: whf2026-alertIn 0.4s ease both;
  }
   
  .whf2026-formAlert--error {
    background: rgba(229, 72, 77, 0.08);
    border: 1px solid rgba(229, 72, 77, 0.25);
  }
   
  .whf2026-formAlertIcon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    background: #E5484D;
    color: var(--white);
  }
   
  .whf2026-formAlertText {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--dark);
    padding-top: 2px;
  }
   
  .whf2026-formAlertClose {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border: none;
    background: transparent;
    color: var(--text-soft);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
   
  .whf2026-formAlertClose:hover {
    background: rgba(7, 19, 13, 0.06);
    color: var(--dark);
  }
   
  .whf2026-formAlert.whf2026-closing {
    animation: whf2026-alertOut 0.3s ease both;
  }
   
  @keyframes whf2026-alertIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
   
  @keyframes whf2026-alertOut {
    to { opacity: 0; transform: translateY(-6px); }
  }
   
  /* When an error alert is present, show the card immediately (don't wait
     on the scroll-reveal) and give it a single, brief shake so the eye
     goes straight to the message instead of getting lost mid-page. */
  #contactWrapper:has(.whf2026-formAlert) {
    opacity: 1;
    transform: none;
    animation: whf2026-cardShake 0.45s ease 0.25s 1;
  }
   
  @keyframes whf2026-cardShake {
    0%, 100% { transform: translateX(0); }
    20%      { transform: translateX(-6px); }
    40%      { transform: translateX(5px); }
    60%      { transform: translateX(-3px); }
    80%      { transform: translateX(2px); }
  }
   
  @media (prefers-reduced-motion: reduce) {
    .whf2026-formAlert {
      animation: none;
    }
    #contactWrapper:has(.whf2026-formAlert) {
      animation: none;
    }
  }
   
  /* ---- Success modal ---- */
   
  .whf2026-successOverlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(7, 19, 13, 0.55);
    backdrop-filter: blur(3px);
    animation: whf2026-fadeIn 0.3s ease both;
  }
   
  .whf2026-successOverlay.whf2026-closing {
    animation: whf2026-fadeOut 0.25s ease both;
  }
   
  @keyframes whf2026-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
   
  @keyframes whf2026-fadeOut {
    to { opacity: 0; }
  }
   
  .whf2026-successModal {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border-radius: 18px;
    padding: 40px 32px 34px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(7, 19, 13, 0.25);
    animation: whf2026-modalPop 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
   
  @keyframes whf2026-modalPop {
    from { opacity: 0; transform: translateY(12px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
   
  .whf2026-successClose {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--text-soft);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
   
  .whf2026-successClose:hover {
    background: rgba(7, 19, 13, 0.06);
    color: var(--dark);
  }
   
  .whf2026-successIcon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
  }
   
  .whf2026-successModal h2 {
    color: var(--dark);
    font-size: 1.3rem;
    margin: 0 0 10px;
  }
   
  .whf2026-successModal p {
    color: var(--text-soft);
    line-height: 1.7;
    margin: 0;
  }
   
  /* ==========================================================================
     Tablet
     ========================================================================== */
   
  @media (max-width: 1024px) {
    main {
      padding: 56px 24px 80px;
    }
   
    main > div {
      grid-template-columns: 1fr;
      gap: 40px;
    }
   
    .whf2026-contactIntro {
      border-right: none;
      border-bottom: 1px solid var(--border-soft);
      padding-right: 0;
      padding-bottom: 32px;
    }
   
    .whf2026-contactIntro p {
      max-width: none;
    }
  }
   
  /* ==========================================================================
     Mobile
     ========================================================================== */
   
  @media (max-width: 560px) {
    main {
      padding: 40px 16px 64px;
    }
   
    .whf2026-contactTitle {
      margin-bottom: 36px;
    }
   
    .whf2026-contactIntro h2 {
      font-size: 1.3rem;
    }
   
    #contactWrapper {
      padding: 24px 18px;
      border-radius: 16px;
    }
   
    .whf2026-contactForm {
      gap: 18px;
    }
   
    .whf2026-formSubmit {
      align-self: stretch;
      width: 100%;
      padding: 15px 24px;
      text-align: center;
    }
   
    .whf2026-successModal {
      padding: 32px 22px 28px;
    }
  }