/* ============================================================
       DESIGN TOKENS â€” CSS VARIABLES
    ============================================================ */
    :root {
      --primary:        #0D9488;
      --primary-hover:  #14B8A6;
      --primary-light:  #2DD4BF;
      --primary-xlight: #F0FDFA;
      --primary-dark:   #065F46;
      --accent:         #F59E0B;
      --accent-hover:   #FBBF24;
      --accent-dark:    #D97706;
      --accent-light:   #FFF7ED;
      --dark:           #0F172A;
      --dark-2:         #1E293B;
      --text:           #334155;
      --text-muted:     #64748B;
      --text-light:     #94A3B8;
      --bg:             #FFFFFF;
      --bg-alt:         #F8FAFC;
      --bg-teal:        #F0FDFA;
      --border:         #E2E8F0;
      --border-dark:    #CBD5E1;
      --success:        #10B981;
      --error:          #EF4444;
      --radius-sm:      8px;
      --radius-md:      12px;
      --radius-lg:      16px;
      --radius-xl:      24px;
      --radius-full:    9999px;
      --shadow-sm:      0 1px 3px rgba(0,0,0,0.06);
      --shadow-md:      0 4px 16px rgba(0,0,0,0.08);
      --shadow-lg:      0 8px 40px rgba(0,0,0,0.12);
      --shadow-primary: 0 8px 30px rgba(13,148,136,0.25);
      --section-py:     80px;
      --font-display:   'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-body:      'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    /* ============================================================
       RESET + BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--font-body);
      font-size: 16px; color: var(--text);
      background: var(--bg); line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul, ol { list-style: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-display);
      font-weight: 700; color: var(--dark); line-height: 1.2;
    }
    h1 { font-size: 56px; font-weight: 800; }
    h2 { font-size: 40px; }
    h3 { font-size: 24px; }
    h4 { font-size: 18px; }
    p  { line-height: 1.65; }
    @media (max-width: 767px) {
      h1 { font-size: 36px; }
      h2 { font-size: 28px; }
      h3 { font-size: 20px; }
    }

    /* ============================================================
       LAYOUT
    ============================================================ */
    .hrb-container {
      max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%;
    }
    @media (min-width: 768px)  { .hrb-container { padding: 0 40px; } }
    @media (min-width: 1280px) { .hrb-container { padding: 0 48px; } }
    .hrb-section     { padding: var(--section-py) 0; }
    .hrb-section-alt { padding: var(--section-py) 0; background: var(--bg-alt); }

    .hrb-section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--primary);
      background: var(--primary-xlight); border-radius: var(--radius-full);
      padding: 6px 14px; margin-bottom: 12px;
    }
    .hrb-section-label::before {
      content: ''; width: 8px; height: 8px;
      background: var(--primary); border-radius: 50%;
    }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .hrb-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-width: 200px; height: 52px; padding: 0 28px;
      border-radius: var(--radius-md); font-family: var(--font-display);
      font-size: 15px; font-weight: 700;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      text-decoration: none; white-space: nowrap; cursor: pointer; border: none;
    }
    .hrb-btn--primary {
      background: var(--primary); color: white;
      box-shadow: 0 4px 12px rgba(13,148,136,0.25);
    }
    .hrb-btn--primary:hover {
      background: var(--primary-hover); transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(13,148,136,0.35); color: white;
    }
    .hrb-btn--accent {
      background: var(--accent); color: var(--dark);
      font-weight: 700; box-shadow: 0 4px 16px rgba(245,158,11,0.3);
    }
    .hrb-btn--accent:hover {
      background: var(--accent-hover); transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(245,158,11,0.4); color: var(--dark);
    }
    .hrb-btn--outline-white {
      background: transparent; color: white;
      border: 2px solid rgba(255,255,255,0.5);
    }
    .hrb-btn--outline-white:hover {
      background: rgba(255,255,255,0.12); border-color: white; color: white;
    }
    .hrb-btn--outline-primary {
      background: transparent; color: var(--primary);
      border: 2px solid var(--primary);
    }
    .hrb-btn--outline-primary:hover { background: var(--primary-xlight); }
    .hrb-btn--lg   { height: 56px; font-size: 16px; min-width: 220px; }
    .hrb-btn--sm   { height: 40px; min-width: 140px; font-size: 14px; padding: 0 20px; }
    .hrb-btn--full { width: 100%; min-width: unset; }

    /* ============================================================
       HEADER + NAV
    ============================================================ */
    .hrb-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0);
      transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      border-bottom: 1px solid transparent;
    }
    .hrb-header--scrolled {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 2px 24px rgba(13,148,136,0.09);
      border-bottom-color: var(--border);
    }
    .hrb-header__inner {
      display: flex; align-items: center; gap: 8px;
      height: 72px; padding: 0 24px; max-width: 1280px; margin: 0 auto;
    }
    @media (min-width: 768px) { .hrb-header__inner { padding: 0 40px; } }
    .hrb-header__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
    .hrb-logo-mark { flex-shrink: 0; }
    .hrb-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .hrb-logo-main {
      font-family: var(--font-display); font-weight: 700; font-size: 17px;
      color: white; transition: color 0.35s ease;
    }
    .hrb-logo-sub {
      font-family: var(--font-display); font-weight: 400; font-size: 12px;
      color: rgba(255,255,255,0.75); letter-spacing: 0.03em; transition: color 0.35s ease;
    }
    .hrb-header--scrolled .hrb-logo-main { color: var(--dark); }
    .hrb-header--scrolled .hrb-logo-sub  { color: var(--primary); }

    .hrb-nav { margin-left: auto; display: none; }
    @media (min-width: 1024px) { .hrb-nav { display: flex; } }
    .hrb-nav__list { display: flex; align-items: center; gap: 4px; }
    .hrb-nav__item { position: relative; }
    .hrb-nav__link {
      display: flex; align-items: center; gap: 4px;
      font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.88);
      padding: 8px 14px; border-radius: var(--radius-sm);
      transition: color 0.2s, background 0.2s; background: none;
    }
    .hrb-nav__link:hover { color: white; background: rgba(255,255,255,0.12); }
    .hrb-header--scrolled .hrb-nav__link { color: var(--text); }
    .hrb-header--scrolled .hrb-nav__link:hover { color: var(--primary); background: var(--primary-xlight); }
    .hrb-nav__chevron { transition: transform 0.2s ease; flex-shrink: 0; }
    .hrb-nav__item--mega:hover .hrb-nav__chevron,
    .hrb-nav__item--dropdown:hover .hrb-nav__chevron { transform: rotate(180deg); }

    .hrb-mega-menu {
      position: absolute; top: calc(100% + 8px); left: 50%;
      transform: translateX(-50%) translateY(-8px);
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
      min-width: 680px; opacity: 0; visibility: hidden;
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
      pointer-events: none; z-index: 200;
    }
    .hrb-nav__item--mega:hover .hrb-mega-menu,
    .hrb-nav__item--mega:focus-within .hrb-mega-menu {
      opacity: 1; visibility: visible;
      transform: translateX(-50%) translateY(0); pointer-events: all;
    }
    .hrb-mega-menu__inner { display: grid; grid-template-columns: 1fr 1fr auto; gap: 0; padding: 8px; }
    .hrb-mega-menu__col { padding: 16px; }
    .hrb-mega-menu__col--cta { background: var(--bg-teal); border-radius: var(--radius-md); min-width: 200px; }
    .hrb-mega-menu__heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 10px; }
    .hrb-mega-menu__link { display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 14px; color: var(--text); transition: background 0.15s; }
    .hrb-mega-menu__link:hover { background: var(--bg-alt); color: var(--primary); }
    .hrb-mega-menu__link strong { display: block; margin-bottom: 2px; color: var(--dark); }
    .hrb-mega-menu__link small  { color: var(--text-muted); font-size: 12px; }
    .hrb-mega-menu__icon { font-size: 18px; margin-top: 1px; flex-shrink: 0; }
    .hrb-mega-menu__promo { padding: 8px; }
    .hrb-mega-menu__promo-tag { display: inline-block; background: var(--accent-light); color: var(--accent); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 10px; border-radius: var(--radius-full); margin-bottom: 12px; }
    .hrb-mega-menu__promo h3 { font-size: 16px; margin-bottom: 8px; color: var(--dark); }
    .hrb-mega-menu__promo p  { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }

    .hrb-dropdown {
      position: absolute; top: calc(100% + 8px); left: 0;
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
      min-width: 220px; padding: 8px;
      opacity: 0; visibility: hidden; transform: translateY(-8px);
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      pointer-events: none; z-index: 200;
    }
    .hrb-nav__item--dropdown:hover .hrb-dropdown,
    .hrb-nav__item--dropdown:focus-within .hrb-dropdown {
      opacity: 1; visibility: visible; transform: none; pointer-events: all;
    }
    .hrb-dropdown__link { display: block; padding: 9px 14px; border-radius: var(--radius-sm); font-size: 14px; color: var(--text); transition: background 0.15s, color 0.15s; }
    .hrb-dropdown__link:hover { background: var(--bg-alt); color: var(--primary); }

    .hrb-header__actions { display: none; align-items: center; gap: 12px; margin-left: 16px; }
    @media (min-width: 1024px) { .hrb-header__actions { display: flex; } }
    .hrb-header__phone {
      display: flex; align-items: center; gap: 6px;
      font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.88);
      white-space: nowrap; transition: color 0.35s ease;
    }
    .hrb-header__phone:hover { color: white; }
    .hrb-header--scrolled .hrb-header__phone { color: var(--text); }
    .hrb-header--scrolled .hrb-header__phone:hover { color: var(--primary); }

    .hrb-hamburger {
      display: flex; flex-direction: column; gap: 5px;
      margin-left: auto; padding: 8px; border-radius: var(--radius-sm); transition: background 0.2s;
    }
    .hrb-hamburger:hover { background: rgba(255,255,255,0.12); }
    .hrb-header--scrolled .hrb-hamburger:hover { background: var(--bg-alt); }
    @media (min-width: 1024px) { .hrb-hamburger { display: none; } }
    .hrb-hamburger span {
      display: block; width: 22px; height: 2px; background: white;
      border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease, background 0.35s ease;
    }
    .hrb-header--scrolled .hrb-hamburger span { background: var(--dark); }
    .hrb-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hrb-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .hrb-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hrb-mobile-menu {
      position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
      background: white; overflow-y: auto;
      transform: translateX(100%); transition: transform 0.3s ease;
      z-index: 999; border-top: 1px solid var(--border);
    }
    .hrb-mobile-menu--open { transform: translateX(0); }
    .hrb-no-scroll { overflow: hidden; }
    .hrb-mobile-menu__list { padding: 16px 0 100px; }
    .hrb-mobile-menu__heading { padding: 16px 24px 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
    .hrb-mobile-menu__link { display: block; padding: 13px 24px; font-size: 16px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); transition: color 0.15s, background 0.15s; }
    .hrb-mobile-menu__link:hover { color: var(--primary); background: var(--bg-teal); }
    .hrb-mobile-menu__link--phone { color: var(--primary); font-weight: 600; }
    .hrb-mobile-menu__divider { height: 1px; background: var(--border); margin: 8px 24px; }

    /* ============================================================
       SCROLL ANIMATION UTILITY
    ============================================================ */
    .hrb-reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .hrb-reveal.hrb-visible { opacity: 1; transform: none; }
    .hrb-reveal-delay-1 { transition-delay: 0.1s; }
    .hrb-reveal-delay-2 { transition-delay: 0.2s; }
    .hrb-reveal-delay-3 { transition-delay: 0.3s; }
    .hrb-reveal-delay-4 { transition-delay: 0.4s; }

    /* ============================================================
       MISC UTILITIES
    ============================================================ */
    .hrb-text-center { text-align: center; }
    .hrb-sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); border: 0;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    .hrb-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
    .hrb-footer__top { padding: 72px 0 48px; }
    .hrb-footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
    @media (min-width: 640px)  { .hrb-footer__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; } }
    .hrb-footer__logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
    .hrb-footer__logo .hrb-logo-main { color: white; }
    .hrb-footer__logo .hrb-logo-sub  { color: var(--primary-light); }
    .hrb-footer__tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 20px; max-width: 260px; }
    .hrb-footer__address {
      display: flex; align-items: flex-start; gap: 8px; font-size: 13px; font-style: normal;
      margin-bottom: 10px; color: rgba(255,255,255,0.6);
    }
    .hrb-footer__address svg { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
    .hrb-footer__phone, .hrb-footer__email {
      display: flex; align-items: center; gap: 8px; font-size: 13px;
      color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 8px; transition: color 0.15s;
    }
    .hrb-footer__phone:hover, .hrb-footer__email:hover { color: white; }
    .hrb-footer__phone svg, .hrb-footer__email svg { opacity: 0.6; flex-shrink: 0; }
    .hrb-footer__social { display: flex; gap: 10px; margin: 20px 0; }
    .hrb-footer__social-link {
      width: 36px; height: 36px; border-radius: var(--radius-sm);
      background: rgba(255,255,255,0.08); display: flex; align-items: center;
      justify-content: center; color: rgba(255,255,255,0.6);
      transition: background 0.2s, color 0.2s; text-decoration: none;
    }
    .hrb-footer__social-link:hover { background: var(--primary); color: white; }
    .hrb-footer__app-badges { display: flex; flex-wrap: wrap; gap: 8px; }
    .hrb-footer__app-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-sm); padding: 7px 14px;
      color: rgba(255,255,255,0.8); font-size: 13px; text-decoration: none;
      transition: background 0.2s; white-space: nowrap;
    }
    .hrb-footer__app-badge:hover { background: rgba(255,255,255,0.15); color: white; }
    .hrb-footer__app-badge-text { display: flex; flex-direction: column; line-height: 1.2; }
    .hrb-footer__app-badge-text small { font-size: 9px; opacity: 0.7; }
    .hrb-footer__app-badge-text strong { font-size: 13px; }
    .hrb-footer__col-heading {
      font-family: var(--font-display); font-size: 13px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 18px;
    }
    .hrb-footer__links { display: flex; flex-direction: column; gap: 10px; }
    .hrb-footer__links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
    .hrb-footer__links a:hover { color: white; }
    .hrb-footer__certs { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
    .hrb-footer__certs-inner {
      display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: center;
    }
    .hrb-footer__cert-badge { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55); }
    .hrb-footer__cert-badge svg { opacity: 0.8; flex-shrink: 0; }
    .hrb-footer__compliance-text { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
    .hrb-footer__compliance-text p { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7; text-align: center; }
    .hrb-footer__compliance-text strong { color: rgba(255,255,255,0.5); }
    .hrb-footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
    .hrb-footer__bottom-inner { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
    @media (min-width: 768px) { .hrb-footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
    .hrb-footer__copyright { font-size: 13px; color: rgba(255,255,255,0.4); }
    .hrb-footer__seo-text { font-size: 12px; color: rgba(255,255,255,0.25); }
    .hrb-footer__seo-text a { color: rgba(255,255,255,0.3); text-decoration: none; }
    .hrb-footer__seo-text a:hover { color: rgba(255,255,255,0.5); }

    /* ============================================================
       STICKY CTA
    ============================================================ */
    @media (max-width: 768px) {
      }
    .hrb-sticky-cta {
      display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
      background: var(--dark); border-top: 1px solid rgba(255,255,255,0.1);
      padding: 10px 16px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    }
    .hrb-sticky-cta__inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px; max-width: 480px; margin: 0 auto;
    }
    .hrb-sticky-cta__text { color: white; }
    .hrb-sticky-cta__text strong { display: block; font-size: 14px; }
    .hrb-sticky-cta__text span  { font-size: 11px; color: rgba(255,255,255,0.6); }
    .hrb-sticky-cta__btn {
      background: var(--accent); color: white; padding: 10px 20px;
      border-radius: 8px; text-decoration: none; font-weight: 700;
      font-size: 14px; white-space: nowrap; transition: background 0.2s;
    }
    .hrb-sticky-cta__btn:hover { background: var(--accent-dark); color: white; }
    @media (max-width: 768px) { .hrb-sticky-cta { display: block; } }

    /* ============================================================
       CONTACT PAGE â€” PAGE-SPECIFIC STYLES
    ============================================================ */

    /* HERO */
    .hrb-contact-hero {
      position: relative; overflow: hidden;
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0D3B36 100%);
      padding: 120px 0 80px; text-align: center;
    }
    .hrb-contact-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px; pointer-events: none;
    }
    .hrb-contact-hero::after {
      content: '';
      position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
      width: 80vw; height: 60vw; max-width: 800px; max-height: 500px;
      background: radial-gradient(ellipse, rgba(13,148,136,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .hrb-contact-hero__inner {
      position: relative; z-index: 1; max-width: 680px; margin: 0 auto;
    }
    .hrb-contact-hero__label {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(13,148,136,0.2); border: 1px solid rgba(13,148,136,0.4);
      color: var(--primary-light); border-radius: var(--radius-full);
      padding: 6px 16px; font-size: 12px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
    }
    .hrb-contact-hero__label-dot {
      width: 7px; height: 7px; background: var(--primary-light);
      border-radius: 50%; animation: hrb-pulse-teal 2s ease-in-out infinite;
    }
    @keyframes hrb-pulse-teal {
      0%, 100% { box-shadow: 0 0 0 0 rgba(45,212,191,0.5); }
      50% { box-shadow: 0 0 0 6px rgba(45,212,191,0); }
    }
    .hrb-contact-hero h1 {
      font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800;
      color: white; line-height: 1.15; margin-bottom: 20px;
    }
    .hrb-contact-hero__sub {
      font-size: clamp(1rem, 1.6vw, 1.15rem); color: rgba(255,255,255,0.72);
      line-height: 1.75; max-width: 540px; margin: 0 auto;
    }

    /* MAIN CONTACT SECTION */
    .hrb-contact-main { padding: var(--section-py) 0; background: var(--bg); }
    .hrb-contact-main__grid {
      display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start;
    }
    @media (min-width: 1024px) {
      .hrb-contact-main__grid { grid-template-columns: 55fr 45fr; gap: 64px; }
    }

    /* FORM */
    .hrb-contact-form-wrap {
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius-xl); padding: 40px 36px;
      box-shadow: var(--shadow-md);
    }
    @media (max-width: 479px) { .hrb-contact-form-wrap { padding: 28px 20px; } }
    .hrb-contact-form-wrap h2 {
      font-size: 26px; font-weight: 700; color: var(--dark); margin-bottom: 6px;
    }
    .hrb-contact-form-wrap > p {
      font-size: 14px; color: var(--text-muted); margin-bottom: 32px;
    }
    .hrb-cf__row {
      display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px;
    }
    @media (min-width: 480px) { .hrb-cf__row { grid-template-columns: 1fr 1fr; } }
    .hrb-cf__group { display: flex; flex-direction: column; gap: 6px; }
    .hrb-cf__group--full { grid-column: 1 / -1; }
    .hrb-cf__label {
      font-size: 13px; font-weight: 600; color: var(--text);
    }
    .hrb-cf__label .hrb-cf__required {
      color: var(--error); margin-left: 2px;
    }
    .hrb-cf__input,
    .hrb-cf__select,
    .hrb-cf__textarea {
      padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
      font-family: var(--font-body); font-size: 15px; color: var(--text); background: white;
      transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
      -webkit-appearance: none; appearance: none;
    }
    .hrb-cf__input::placeholder,
    .hrb-cf__textarea::placeholder { color: var(--text-light); }
    .hrb-cf__input:focus,
    .hrb-cf__select:focus,
    .hrb-cf__textarea:focus {
      border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-xlight);
    }
    .hrb-cf__input.hrb-cf--error,
    .hrb-cf__select.hrb-cf--error,
    .hrb-cf__textarea.hrb-cf--error { border-color: var(--error); }
    .hrb-cf__input.hrb-cf--error:focus,
    .hrb-cf__select.hrb-cf--error:focus,
    .hrb-cf__textarea.hrb-cf--error:focus {
      box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
    }
    .hrb-cf__select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center;
      padding-right: 44px; cursor: pointer;
    }
    .hrb-cf__textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
    .hrb-cf__error {
      font-size: 12px; color: var(--error); display: none; margin-top: 2px;
    }
    .hrb-cf__error.hrb-cf--visible { display: block; }
    .hrb-cf__submit {
      width: 100%; height: 56px; font-size: 17px; font-weight: 700;
      background: var(--accent); color: var(--dark);
      border: none; border-radius: var(--radius-md); cursor: pointer;
      font-family: var(--font-display);
      box-shadow: 0 4px 16px rgba(245,158,11,0.3);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      margin-top: 8px;
    }
    .hrb-cf__submit:hover {
      background: var(--accent-hover); transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(245,158,11,0.4);
    }
    .hrb-cf__submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
    .hrb-cf__footer-note {
      margin-top: 14px; font-size: 13px; color: var(--text-muted);
      text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px;
    }
    .hrb-cf__footer-note svg { color: var(--success); flex-shrink: 0; }
    .hrb-cf__success {
      display: none; text-align: center; padding: 48px 24px;
    }
    .hrb-cf__success.hrb-cf--visible { display: block; }
    .hrb-cf__success-icon {
      width: 72px; height: 72px; border-radius: 50%;
      background: rgba(16,185,129,0.1); display: flex; align-items: center;
      justify-content: center; margin: 0 auto 20px;
    }
    .hrb-cf__success-icon svg { color: var(--success); }
    .hrb-cf__success h3 { font-size: 22px; color: var(--dark); margin-bottom: 10px; }
    .hrb-cf__success p  { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
    /* CONTACT PAGE - Gravity Forms structure mapped to original static layout */
    .hrb-contact-form-wrap .hrb-contact-form-wrapper,
    .hrb-contact-form-wrap .hrb-demo-form-wrapper {
      margin: 0;
    }
    .hrb-contact-form-wrap .gform_wrapper,
    .hrb-contact-form-wrap .gform_wrapper .gform_body,
    .hrb-contact-form-wrap .gform_wrapper .gform-body {
      margin: 0 !important;
      padding: 0 !important;
    }
    .hrb-contact-form-wrap .gform_wrapper .gform_heading,
    .hrb-contact-form-wrap .gform_wrapper .gform_title,
    .hrb-contact-form-wrap .gform_wrapper .gform_description {
      display: none !important;
    }
    .hrb-contact-form-wrap .gform_wrapper .gform_fields {
      display: grid !important;
      grid-template-columns: 1fr;
      gap: 16px !important;
    }
    .hrb-contact-form-wrap #field_1_7,
    .hrb-contact-form-wrap #field_1_9,
    .hrb-contact-form-wrap #field_1_25 {
      grid-column: 1 / -1;
    }
    @media (min-width: 768px) {
      .hrb-contact-form-wrap .gform_wrapper .gform_fields {
        grid-template-columns: 1fr 1fr;
      }
      .hrb-contact-form-wrap #field_1_10 { grid-column: 1; }
      .hrb-contact-form-wrap #field_1_4 { grid-column: 2; }
      .hrb-contact-form-wrap #field_1_3 { grid-column: 1; }
      .hrb-contact-form-wrap #field_1_5 { grid-column: 2; }
    }
    .hrb-contact-form-wrap #field_1_6,
    .hrb-contact-form-wrap .hrb-contact-field-hidden {
      display: none !important;
    }
    .hrb-contact-form-wrap .gfield,
    .hrb-contact-form-wrap .gfield .ginput_container {
      margin: 0 !important;
      padding: 0 !important;
    }
    .hrb-contact-form-wrap .gfield.gform_hidden,
    .hrb-contact-form-wrap .gfield--type-hidden {
      display: none !important;
    }
    .hrb-contact-form-wrap .gfield--type-honeypot,
    .hrb-contact-form-wrap .gform_validation_container,
    .hrb-contact-form-wrap #field_1_26,
    .hrb-contact-form-wrap .gfield--type-honeypot * {
      position: absolute !important;
      left: -99999px !important;
      top: auto !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
    }
    .hrb-contact-form-wrap .gfield_label,
    .hrb-contact-form-wrap .gform-field-label {
      display: block !important;
      margin: 0 0 8px !important;
      font-size: 14px !important;
      font-weight: 600 !important;
      color: #0f172a !important;
      line-height: 1.4 !important;
    }
    .hrb-contact-form-wrap .gfield_required,
    .hrb-contact-form-wrap .gfield_required .gfield_required_asterisk {
      color: #ef4444 !important;
    }
    .hrb-contact-form-wrap .gfield input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
    .hrb-contact-form-wrap .gfield select,
    .hrb-contact-form-wrap .gfield textarea,
    .hrb-contact-form-wrap .ginput_container input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
    .hrb-contact-form-wrap .ginput_container select,
    .hrb-contact-form-wrap .ginput_container textarea {
      width: 100% !important;
      min-height: 54px !important;
      padding: 0 16px !important;
      border: 1.5px solid #d7e1ec !important;
      border-radius: 10px !important;
      background: #ffffff !important;
      color: #24344d !important;
      box-shadow: none !important;
      font-size: 15px !important;
      line-height: 1.45 !important;
      outline: 0 !important;
      transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    }
    .hrb-contact-form-wrap .gfield textarea,
    .hrb-contact-form-wrap .ginput_container textarea {
      min-height: 120px !important;
      height: 120px !important;
      padding: 14px 16px !important;
      resize: vertical !important;
      line-height: 1.6 !important;
    }
    .hrb-contact-form-wrap .gfield input::placeholder,
    .hrb-contact-form-wrap .gfield textarea::placeholder {
      color: #8fa1bb !important;
      opacity: 1 !important;
    }
    .hrb-contact-form-wrap .gfield select {
      padding-right: 44px !important;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: right 14px center !important;
      background-size: 16px 16px !important;
      -webkit-appearance: none !important;
      appearance: none !important;
      cursor: pointer !important;
    }
    .hrb-contact-form-wrap .gfield input:focus,
    .hrb-contact-form-wrap .gfield select:focus,
    .hrb-contact-form-wrap .gfield textarea:focus {
      border-color: #14b8a6 !important;
      box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12) !important;
    }
    .hrb-contact-form-wrap .gfield_error input,
    .hrb-contact-form-wrap .gfield_error select,
    .hrb-contact-form-wrap .gfield_error textarea {
      border-color: #ef4444 !important;
      box-shadow: none !important;
    }
    .hrb-contact-form-wrap .validation_message,
    .hrb-contact-form-wrap .gfield_validation_message,
    .hrb-contact-form-wrap .gfield_description.validation_message {
      margin: 6px 0 0 !important;
      padding: 0 !important;
      border: 0 !important;
      background: transparent !important;
      color: #ef4444 !important;
      font-size: 13px !important;
      line-height: 1.4 !important;
      font-weight: 500 !important;
    }
    .hrb-contact-form-wrap .gform_validation_errors,
    .hrb-contact-form-wrap .gform_submission_error {
      margin: 0 0 14px !important;
      border: 1px solid #f4bcbc !important;
      border-radius: 12px !important;
      background: #fff3f3 !important;
      padding: 12px 14px !important;
      color: #ef4444 !important;
      box-shadow: none !important;
    }
    .hrb-contact-form-wrap .gform_validation_errors h2 {
      margin: 0 !important;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      color: #ef4444 !important;
      font-size: 14px !important;
      line-height: 1.45 !important;
      font-weight: 600 !important;
    }
    .hrb-contact-form-wrap .gform_validation_errors ol,
    .hrb-contact-form-wrap .gform_validation_errors ul {
      display: none !important;
    }
    .hrb-contact-form-wrap .gfield--type-captcha,
    .hrb-contact-form-wrap .gfield--type-recaptcha,
    .hrb-contact-form-wrap .ginput_recaptcha {
      margin-top: 2px !important;
      margin-bottom: 2px !important;
    }
    .hrb-contact-form-wrap .gfield--type-captcha .gfield_label,
    .hrb-contact-form-wrap .gfield--type-recaptcha .gfield_label,
    .hrb-contact-form-wrap .gfield--type-captcha .gform-field-label,
    .hrb-contact-form-wrap .gfield--type-recaptcha .gform-field-label {
      display: none !important;
      margin: 0 !important;
    }
    .hrb-contact-form-wrap .ginput_recaptcha iframe,
    .hrb-contact-form-wrap iframe[title*="reCAPTCHA"] {
      transform: scale(0.94);
      transform-origin: left top;
    }
    .hrb-contact-form-wrap .gform_footer,
    .hrb-contact-form-wrap .gform_page_footer {
      margin: 10px 0 0 !important;
      padding: 0 !important;
    }
    .hrb-contact-form-wrap .gform_footer input[type="submit"],
    .hrb-contact-form-wrap .gform_page_footer input[type="submit"],
    .hrb-contact-form-wrap .gform_footer .gform_button,
    .hrb-contact-form-wrap .gform_page_footer .gform_button,
    .hrb-contact-form-wrap .gform_footer button[type="submit"],
    .hrb-contact-form-wrap .gform_page_footer button[type="submit"] {
      width: 100% !important;
      min-height: 56px !important;
      margin: 0 !important;
      padding: 14px 20px !important;
      border: 0 !important;
      border-radius: 12px !important;
      background: #f59e0b !important;
      color: #0f172a !important;
      box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3) !important;
      font-family: var(--font-display) !important;
      font-size: 17px !important;
      font-weight: 700 !important;
      line-height: 1.2 !important;
      text-transform: none !important;
      transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease !important;
      cursor: pointer !important;
    }
    .hrb-contact-form-wrap .gform_footer input[type="submit"]:hover,
    .hrb-contact-form-wrap .gform_page_footer input[type="submit"]:hover,
    .hrb-contact-form-wrap .gform_footer .gform_button:hover,
    .hrb-contact-form-wrap .gform_page_footer .gform_button:hover,
    .hrb-contact-form-wrap .gform_footer button[type="submit"]:hover,
    .hrb-contact-form-wrap .gform_page_footer button[type="submit"]:hover {
      background: #fbbf24 !important;
      transform: translateY(-1px) !important;
      box-shadow: 0 8px 24px rgba(245, 158, 11, 0.38) !important;
    }
    .hrb-contact-form-wrap .pcafe_sp_field .ginput_container_phone {
      position: relative !important;
    }
    .hrb-contact-form-wrap .pcafe_sp_field .iti {
      width: 100% !important;
      display: block !important;
    }
    .hrb-contact-form-wrap .pcafe_sp_field .iti input[type="tel"] {
      padding-left: 96px !important;
    }
    .hrb-contact-form-wrap .pcafe_sp_field .iti__flag-container {
      z-index: 4 !important;
      left: 1px !important;
      top: 1px !important;
      bottom: 1px !important;
      border-right: 1px solid #d7e1ec !important;
      border-radius: 9px 0 0 9px !important;
      background: #ffffff !important;
      overflow: hidden !important;
    }
    .hrb-contact-form-wrap .pcafe_sp_field .iti__selected-country {
      height: 100% !important;
      padding: 0 6px 0 8px !important;
      border: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
    }
    .hrb-contact-form-wrap .pcafe_sp_field .iti__selected-dial-code {
      color: #64748b !important;
      font-size: 14px !important;
    }
    .hrb-contact-form-wrap .pcafe_sp_field .iti__country-list {
      border: 1px solid #d5dfec !important;
      border-radius: 10px !important;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12) !important;
      z-index: 9999 !important;
    }
    .hrb-cf__footer-note {
      justify-content: flex-start;
      text-align: left;
      margin-top: 14px;
    }
    @media (max-width: 767px) {
      .hrb-contact-form-wrap .gfield_label,
      .hrb-contact-form-wrap .gform-field-label {
        font-size: 13px !important;
      }
      .hrb-contact-form-wrap .pcafe_sp_field .iti input[type="tel"] {
        padding-left: 88px !important;
      }
    }

    /* CONTACT INFO SIDEBAR */
    .hrb-contact-info { display: flex; flex-direction: column; gap: 16px; }
    .hrb-contact-card {
      background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
      padding: 22px 24px; display: flex; align-items: flex-start; gap: 16px;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .hrb-contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
    .hrb-contact-card__icon {
      width: 48px; height: 48px; border-radius: var(--radius-md); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: 22px;
    }
    .hrb-contact-card__icon--phone   { background: rgba(13,148,136,0.1); }
    .hrb-contact-card__icon--email   { background: rgba(99,102,241,0.1); }
    .hrb-contact-card__icon--wa      { background: rgba(37,211,102,0.1); }
    .hrb-contact-card__icon--office  { background: rgba(245,158,11,0.1); }
    .hrb-contact-card__title {
      font-size: 12px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 4px;
    }
    .hrb-contact-card__value {
      font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.3;
    }
    .hrb-contact-card__value a {
      color: var(--primary); transition: color 0.15s;
    }
    .hrb-contact-card__value a:hover { color: var(--primary-hover); }
    .hrb-contact-card__sub {
      font-size: 13px; color: var(--text-muted); margin-top: 3px; line-height: 1.5;
    }
    .hrb-contact-card__address {
      font-size: 15px; font-weight: 600; color: var(--dark);
      line-height: 1.55; font-style: normal;
    }

    /* Map placeholder */
    .hrb-contact-map {
      background: linear-gradient(135deg, var(--bg-teal), var(--primary-xlight));
      border: 2px dashed var(--border-dark); border-radius: var(--radius-xl);
      min-height: 220px; display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 10px; margin-top: 16px; padding: 24px;
    }
    .hrb-contact-map__label {
      font-size: 13px; color: var(--text-muted); text-align: center; line-height: 1.55;
    }
    /* <!-- REPLACE: Replace the placeholder above with a real Google Maps embed:
         <iframe
           src="https://www.google.com/maps/embed?pb=YOUR_EMBED_URL"
           width="100%" height="220"
           style="border:0;border-radius:24px;display:block;"
           allowfullscreen loading="lazy"
           referrerpolicy="no-referrer-when-downgrade">
         </iframe> --> */

    /* FAQ SECTION */
    .hrb-contact-faq { padding: var(--section-py) 0; background: var(--bg-alt); }
    .hrb-contact-faq__header {
      text-align: center; max-width: 600px; margin: 0 auto 52px;
    }
    .hrb-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
    .hrb-faq-item {
      border-bottom: 1px solid var(--border);
    }
    .hrb-faq-item:first-child { border-top: 1px solid var(--border); }
    .hrb-faq-btn {
      width: 100%; display: flex; align-items: center; justify-content: space-between;
      gap: 16px; padding: 22px 0; text-align: left; cursor: pointer;
      background: none; border: none; font-family: var(--font-display);
    }
    .hrb-faq-btn__question {
      font-size: 17px; font-weight: 600; color: var(--dark); line-height: 1.4;
      transition: color 0.2s;
    }
    .hrb-faq-btn:hover .hrb-faq-btn__question { color: var(--primary); }
    .hrb-faq-btn__icon {
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--bg-alt); border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      transition: background 0.2s, border-color 0.2s, transform 0.25s;
    }
    .hrb-faq-btn__icon svg { transition: transform 0.25s ease; }
    .hrb-faq-btn[aria-expanded="true"] .hrb-faq-btn__icon {
      background: var(--primary-xlight); border-color: var(--primary);
    }
    .hrb-faq-btn[aria-expanded="true"] .hrb-faq-btn__icon svg { transform: rotate(45deg); }
    .hrb-faq-answer {
      overflow: hidden; max-height: 0;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .hrb-faq-answer.hrb-faq--open { max-height: 300px; }
    .hrb-faq-answer__inner {
      font-size: 15px; color: var(--text-muted); line-height: 1.75;
      padding-bottom: 22px;
    }

    /* Mobile overrides */
    @media (max-width: 767px) {
      .hrb-contact-hero { padding: 110px 0 60px; }
      .hrb-contact-main, .hrb-contact-faq { padding: 48px 0; }
    }

    /* ============================================================
       CONTACT PAGE FINAL OVERRIDES (Gravity Forms)
       Matches static HTML reference layout
    ============================================================ */
    body.page-template-page-contact .hrb-contact-hero,
    body.page-contact-us .hrb-contact-hero {
      display: none !important;
    }

    body.page-template-page-contact .hrb-contact-main,
    body.page-contact-us .hrb-contact-main {
      background: #f5faf9 !important;
      padding: 46px 0 74px !important;
    }

    body.page-template-page-contact .hrb-contact-main__grid,
    body.page-contact-us .hrb-contact-main__grid {
      gap: 30px !important;
      align-items: start !important;
    }

    @media (min-width: 1024px) {
      body.page-template-page-contact .hrb-contact-main__grid,
      body.page-contact-us .hrb-contact-main__grid {
        grid-template-columns: 1.12fr 0.88fr !important;
        gap: 34px !important;
      }
    }

    body.page-template-page-contact .hrb-contact-form-wrap,
    body.page-contact-us .hrb-contact-form-wrap {
      background: #ffffff !important;
      border: 1px solid #d7e1ec !important;
      border-radius: 22px !important;
      box-shadow: none !important;
      padding: 34px 36px !important;
    }

    @media (max-width: 767px) {
      body.page-template-page-contact .hrb-contact-form-wrap,
      body.page-contact-us .hrb-contact-form-wrap {
        padding: 26px 20px !important;
      }
    }

    body.page-template-page-contact .hrb-contact-form-wrap h2,
    body.page-contact-us .hrb-contact-form-wrap h2 {
      font-size: clamp(2rem, 4.6vw, 3.9rem);
      line-height: 1.08;
      letter-spacing: -0.02em;
      font-weight: 800;
      color: #0f2040;
      margin: 0 0 16px;
    }

    body.page-template-page-contact .hrb-contact-form-wrap > p,
    body.page-contact-us .hrb-contact-form-wrap > p {
      margin: 0 0 26px !important;
      color: #5f718d !important;
      font-size: 16px !important;
      line-height: 1.58 !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .gform_wrapper,
    body.page-contact-us .hrb-contact-form-wrap .gform_wrapper {
      margin: 0 !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .gform_wrapper .gform_fields,
    body.page-contact-us .hrb-contact-form-wrap .gform_wrapper .gform_fields {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 14px 16px !important;
      margin: 0 !important;
    }

    @media (min-width: 768px) {
      body.page-template-page-contact .hrb-contact-form-wrap .gform_wrapper .gform_fields,
      body.page-contact-us .hrb-contact-form-wrap .gform_wrapper .gform_fields {
        grid-template-columns: 1fr 1fr !important;
      }

      body.page-template-page-contact .hrb-contact-form-wrap #field_1_7,
      body.page-template-page-contact .hrb-contact-form-wrap #field_1_9,
      body.page-template-page-contact .hrb-contact-form-wrap #field_1_25,
      body.page-contact-us .hrb-contact-form-wrap #field_1_7,
      body.page-contact-us .hrb-contact-form-wrap #field_1_9,
      body.page-contact-us .hrb-contact-form-wrap #field_1_25 {
        grid-column: 1 / -1 !important;
      }
    }

    body.page-template-page-contact .hrb-contact-form-wrap .gfield,
    body.page-template-page-contact .hrb-contact-form-wrap .ginput_container,
    body.page-contact-us .hrb-contact-form-wrap .gfield,
    body.page-contact-us .hrb-contact-form-wrap .ginput_container {
      margin: 0 !important;
      padding: 0 !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap #field_1_6,
    body.page-template-page-contact .hrb-contact-form-wrap .hrb-contact-field-hidden,
    body.page-contact-us .hrb-contact-form-wrap #field_1_6,
    body.page-contact-us .hrb-contact-form-wrap .hrb-contact-field-hidden {
      display: none !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .gfield_label,
    body.page-template-page-contact .hrb-contact-form-wrap .gform-field-label,
    body.page-contact-us .hrb-contact-form-wrap .gfield_label,
    body.page-contact-us .hrb-contact-form-wrap .gform-field-label {
      font-size: 15px !important;
      font-weight: 600 !important;
      line-height: 1.4 !important;
      color: #0f172a !important;
      margin: 0 0 9px !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
    body.page-template-page-contact .hrb-contact-form-wrap select,
    body.page-template-page-contact .hrb-contact-form-wrap textarea,
    body.page-contact-us .hrb-contact-form-wrap input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
    body.page-contact-us .hrb-contact-form-wrap select,
    body.page-contact-us .hrb-contact-form-wrap textarea {
      width: 100% !important;
      min-height: 56px !important;
      height: 56px !important;
      border: 1.5px solid #d5deea !important;
      border-radius: 12px !important;
      background: #ffffff !important;
      color: #26354f !important;
      font-size: 15px !important;
      line-height: 1.4 !important;
      padding: 0 16px !important;
      box-shadow: none !important;
      outline: 0 !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap textarea,
    body.page-contact-us .hrb-contact-form-wrap textarea {
      min-height: 132px !important;
      height: 132px !important;
      padding: 13px 16px !important;
      resize: vertical !important;
      line-height: 1.55 !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap input::placeholder,
    body.page-template-page-contact .hrb-contact-form-wrap textarea::placeholder,
    body.page-contact-us .hrb-contact-form-wrap input::placeholder,
    body.page-contact-us .hrb-contact-form-wrap textarea::placeholder {
      color: #90a0b8 !important;
      opacity: 1 !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap select,
    body.page-contact-us .hrb-contact-form-wrap select {
      padding-right: 44px !important;
      background-position: right 14px center !important;
      background-size: 16px 16px !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap input:focus,
    body.page-template-page-contact .hrb-contact-form-wrap textarea:focus,
    body.page-template-page-contact .hrb-contact-form-wrap select:focus,
    body.page-contact-us .hrb-contact-form-wrap input:focus,
    body.page-contact-us .hrb-contact-form-wrap textarea:focus,
    body.page-contact-us .hrb-contact-form-wrap select:focus {
      border-color: #13b5a5 !important;
      box-shadow: 0 0 0 3px rgba(19, 181, 165, 0.12) !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .gfield_error input,
    body.page-template-page-contact .hrb-contact-form-wrap .gfield_error textarea,
    body.page-template-page-contact .hrb-contact-form-wrap .gfield_error select,
    body.page-contact-us .hrb-contact-form-wrap .gfield_error input,
    body.page-contact-us .hrb-contact-form-wrap .gfield_error textarea,
    body.page-contact-us .hrb-contact-form-wrap .gfield_error select {
      border-color: #f25353 !important;
      box-shadow: none !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .validation_message,
    body.page-template-page-contact .hrb-contact-form-wrap .gfield_validation_message,
    body.page-contact-us .hrb-contact-form-wrap .validation_message,
    body.page-contact-us .hrb-contact-form-wrap .gfield_validation_message {
      margin: 6px 0 0 !important;
      color: #f25353 !important;
      font-size: 13px !important;
      line-height: 1.35 !important;
      border: 0 !important;
      padding: 0 !important;
      background: transparent !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .gform_validation_errors,
    body.page-contact-us .hrb-contact-form-wrap .gform_validation_errors {
      border: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      padding: 0 !important;
      margin: 0 0 16px !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .gform_validation_errors h2,
    body.page-contact-us .hrb-contact-form-wrap .gform_validation_errors h2 {
      margin: 0 !important;
      border: 1px solid #f7c6c6 !important;
      border-radius: 12px !important;
      background: #fff2f2 !important;
      color: #ef4444 !important;
      font-size: 14px !important;
      line-height: 1.5 !important;
      padding: 16px 18px !important;
      font-weight: 600 !important;
      box-shadow: none !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .gform_validation_errors .gform-icon,
    body.page-template-page-contact .hrb-contact-form-wrap .gform_validation_errors ol,
    body.page-template-page-contact .hrb-contact-form-wrap .gform_validation_errors ul,
    body.page-contact-us .hrb-contact-form-wrap .gform_validation_errors .gform-icon,
    body.page-contact-us .hrb-contact-form-wrap .gform_validation_errors ol,
    body.page-contact-us .hrb-contact-form-wrap .gform_validation_errors ul {
      display: none !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .gform_footer,
    body.page-contact-us .hrb-contact-form-wrap .gform_footer {
      margin: 14px 0 0 !important;
      padding: 0 !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .gform_footer input[type="submit"],
    body.page-template-page-contact .hrb-contact-form-wrap .gform_footer .gform_button,
    body.page-contact-us .hrb-contact-form-wrap .gform_footer input[type="submit"],
    body.page-contact-us .hrb-contact-form-wrap .gform_footer .gform_button {
      width: 100% !important;
      min-height: 56px !important;
      border: 0 !important;
      border-radius: 14px !important;
      background: #f6a505 !important;
      color: #0f172a !important;
      font-size: 17px !important;
      font-weight: 700 !important;
      letter-spacing: 0 !important;
      box-shadow: none !important;
      margin: 0 !important;
      padding: 14px 20px !important;
      text-transform: none !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .gform_footer input[type="submit"]:hover,
    body.page-template-page-contact .hrb-contact-form-wrap .gform_footer .gform_button:hover,
    body.page-contact-us .hrb-contact-form-wrap .gform_footer input[type="submit"]:hover,
    body.page-contact-us .hrb-contact-form-wrap .gform_footer .gform_button:hover {
      background: #f8b025 !important;
      transform: none !important;
      box-shadow: none !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .gfield--type-recaptcha .gfield_label,
    body.page-template-page-contact .hrb-contact-form-wrap .gfield--type-captcha .gfield_label,
    body.page-contact-us .hrb-contact-form-wrap .gfield--type-recaptcha .gfield_label,
    body.page-contact-us .hrb-contact-form-wrap .gfield--type-captcha .gfield_label {
      display: none !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .pcafe_sp_field .iti,
    body.page-contact-us .hrb-contact-form-wrap .pcafe_sp_field .iti {
      width: 100% !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .pcafe_sp_field .iti input[type="tel"],
    body.page-contact-us .hrb-contact-form-wrap .pcafe_sp_field .iti input[type="tel"] {
      padding-left: 84px !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .pcafe_sp_field .iti__flag-container,
    body.page-contact-us .hrb-contact-form-wrap .pcafe_sp_field .iti__flag-container {
      left: 1px !important;
      top: 1px !important;
      bottom: 1px !important;
      width: 66px !important;
      border-right: 1px solid #d5deea !important;
      border-radius: 11px 0 0 11px !important;
      background: #ffffff !important;
      overflow: hidden !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .pcafe_sp_field .iti__selected-country,
    body.page-contact-us .hrb-contact-form-wrap .pcafe_sp_field .iti__selected-country {
      height: 100% !important;
      padding: 0 7px !important;
      background: transparent !important;
      border: 0 !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .pcafe_sp_field .iti__flag,
    body.page-contact-us .hrb-contact-form-wrap .pcafe_sp_field .iti__flag {
      transform: scale(1.15) !important;
      transform-origin: center !important;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .pcafe_sp_field .iti__country-list,
    body.page-contact-us .hrb-contact-form-wrap .pcafe_sp_field .iti__country-list {
      border: 1px solid #d5deea !important;
      border-radius: 12px !important;
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12) !important;
      max-width: 100% !important;
      z-index: 9999 !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap .pcafe_sp_field .iti__country-list .iti__flag,
    body.page-contact-us .hrb-contact-form-wrap .pcafe_sp_field .iti__country-list .iti__flag {
      transform: scale(1.1) !important;
    }

    body.page-template-page-contact .hrb-cf__footer-note,
    body.page-contact-us .hrb-cf__footer-note {
      margin-top: 12px !important;
      font-size: 13px !important;
      color: #5e6f89 !important;
      justify-content: flex-start !important;
      text-align: left !important;
      line-height: 1.45 !important;
    }

    body.page-template-page-contact .hrb-contact-info,
    body.page-contact-us .hrb-contact-info {
      gap: 18px !important;
    }

    body.page-template-page-contact .hrb-contact-card,
    body.page-contact-us .hrb-contact-card {
      background: #ffffff !important;
      border: 1px solid #d7e1ec !important;
      border-radius: 20px !important;
      box-shadow: none !important;
      padding: 22px 24px !important;
      transform: none !important;
    }

    body.page-template-page-contact .hrb-contact-card:hover,
    body.page-contact-us .hrb-contact-card:hover {
      transform: none !important;
      box-shadow: none !important;
      border-color: #d7e1ec !important;
    }

    body.page-template-page-contact .hrb-contact-card__icon,
    body.page-contact-us .hrb-contact-card__icon {
      width: 52px !important;
      height: 52px !important;
      border-radius: 13px !important;
      font-size: 23px !important;
    }

    body.page-template-page-contact .hrb-contact-card__title,
    body.page-contact-us .hrb-contact-card__title {
      font-size: 12px !important;
      font-weight: 700 !important;
      letter-spacing: 0.07em !important;
      color: #60728f !important;
      margin-bottom: 2px !important;
    }

    body.page-template-page-contact .hrb-contact-card__value,
    body.page-template-page-contact .hrb-contact-card__address,
    body.page-contact-us .hrb-contact-card__value,
    body.page-contact-us .hrb-contact-card__address {
      color: #0f172a !important;
      font-size: 18px !important;
      line-height: 1.45 !important;
      font-weight: 700 !important;
    }

    body.page-template-page-contact .hrb-contact-card__value a,
    body.page-contact-us .hrb-contact-card__value a {
      color: #059a97 !important;
      text-decoration: none !important;
    }

    /* ============================================================
       CONTACT GF SKIN (BOOK-DEMO REFERENCE)
    ============================================================ */
    body.page-template-page-contact #hrb-contact-form-gf,
    body.page-contact-us #hrb-contact-form-gf {
      width: 100% !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_wrapper,
    body.page-template-page-contact #hrb-contact-form-gf .gform_wrapper form,
    body.page-contact-us #hrb-contact-form-gf .gform_wrapper,
    body.page-contact-us #hrb-contact-form-gf .gform_wrapper form {
      margin: 0 !important;
      padding: 0 !important;
      max-width: none !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_heading,
    body.page-template-page-contact #hrb-contact-form-gf .gform_description,
    body.page-template-page-contact #hrb-contact-form-gf .gform_required_legend,
    body.page-contact-us #hrb-contact-form-gf .gform_heading,
    body.page-contact-us #hrb-contact-form-gf .gform_description,
    body.page-contact-us #hrb-contact-form-gf .gform_required_legend {
      display: none !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_fields,
    body.page-contact-us #hrb-contact-form-gf .gform_fields {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) !important;
      gap: 18px !important;
      row-gap: 18px !important;
      margin: 0 !important;
    }

    @media (min-width: 768px) {
      body.page-template-page-contact #hrb-contact-form-gf .gform_fields,
      body.page-contact-us #hrb-contact-form-gf .gform_fields {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
      }

      body.page-template-page-contact #hrb-contact-form-gf #field_1_7,
      body.page-template-page-contact #hrb-contact-form-gf #field_1_9,
      body.page-template-page-contact #hrb-contact-form-gf #field_1_25,
      body.page-contact-us #hrb-contact-form-gf #field_1_7,
      body.page-contact-us #hrb-contact-form-gf #field_1_9,
      body.page-contact-us #hrb-contact-form-gf #field_1_25 {
        grid-column: 1 / -1 !important;
      }
    }

    body.page-template-page-contact #hrb-contact-form-gf .gfield,
    body.page-template-page-contact #hrb-contact-form-gf .gfield .ginput_container,
    body.page-contact-us #hrb-contact-form-gf .gfield,
    body.page-contact-us #hrb-contact-form-gf .gfield .ginput_container {
      margin: 0 !important;
      padding: 0 !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gfield_label,
    body.page-template-page-contact #hrb-contact-form-gf .gform-field-label,
    body.page-contact-us #hrb-contact-form-gf .gfield_label,
    body.page-contact-us #hrb-contact-form-gf .gform-field-label {
      margin: 0 0 10px !important;
      color: #0f172a !important;
      font-size: 13px !important;
      font-weight: 600 !important;
      line-height: 1.35 !important;
      display: block !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gfield_required,
    body.page-template-page-contact #hrb-contact-form-gf .gfield_required_asterisk,
    body.page-contact-us #hrb-contact-form-gf .gfield_required,
    body.page-contact-us #hrb-contact-form-gf .gfield_required_asterisk {
      color: #ef4444 !important;
      margin-left: 2px !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gfield input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    body.page-template-page-contact #hrb-contact-form-gf .gfield select,
    body.page-template-page-contact #hrb-contact-form-gf .gfield textarea,
    body.page-template-page-contact #hrb-contact-form-gf .ginput_container input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    body.page-template-page-contact #hrb-contact-form-gf .ginput_container select,
    body.page-template-page-contact #hrb-contact-form-gf .ginput_container textarea,
    body.page-contact-us #hrb-contact-form-gf .gfield input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    body.page-contact-us #hrb-contact-form-gf .gfield select,
    body.page-contact-us #hrb-contact-form-gf .gfield textarea,
    body.page-contact-us #hrb-contact-form-gf .ginput_container input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    body.page-contact-us #hrb-contact-form-gf .ginput_container select,
    body.page-contact-us #hrb-contact-form-gf .ginput_container textarea {
      width: 100% !important;
      min-height: 52px !important;
      padding: 0 16px !important;
      border: 1.5px solid #d7e1ec !important;
      border-radius: 12px !important;
      background: #ffffff !important;
      color: #24344d !important;
      box-shadow: none !important;
      outline: 0 !important;
      font-family: var(--font-body) !important;
      font-size: 15px !important;
      line-height: 1.45 !important;
      transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
      -webkit-appearance: none !important;
      appearance: none !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gfield textarea,
    body.page-template-page-contact #hrb-contact-form-gf .ginput_container textarea,
    body.page-contact-us #hrb-contact-form-gf .gfield textarea,
    body.page-contact-us #hrb-contact-form-gf .ginput_container textarea {
      min-height: 110px !important;
      height: 110px !important;
      padding: 14px 16px !important;
      resize: vertical !important;
      line-height: 1.6 !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gfield input::placeholder,
    body.page-template-page-contact #hrb-contact-form-gf .gfield textarea::placeholder,
    body.page-contact-us #hrb-contact-form-gf .gfield input::placeholder,
    body.page-contact-us #hrb-contact-form-gf .gfield textarea::placeholder {
      color: #8fa1bb !important;
      opacity: 1 !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gfield input:focus,
    body.page-template-page-contact #hrb-contact-form-gf .gfield select:focus,
    body.page-template-page-contact #hrb-contact-form-gf .gfield textarea:focus,
    body.page-contact-us #hrb-contact-form-gf .gfield input:focus,
    body.page-contact-us #hrb-contact-form-gf .gfield select:focus,
    body.page-contact-us #hrb-contact-form-gf .gfield textarea:focus {
      border-color: #14b8a6 !important;
      box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12) !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gfield select,
    body.page-contact-us #hrb-contact-form-gf .gfield select {
      padding-right: 44px !important;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: right 14px center !important;
      background-size: 16px 16px !important;
      cursor: pointer !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gfield_error input,
    body.page-template-page-contact #hrb-contact-form-gf .gfield_error select,
    body.page-template-page-contact #hrb-contact-form-gf .gfield_error textarea,
    body.page-contact-us #hrb-contact-form-gf .gfield_error input,
    body.page-contact-us #hrb-contact-form-gf .gfield_error select,
    body.page-contact-us #hrb-contact-form-gf .gfield_error textarea {
      border-color: #ef4444 !important;
      background: #ffffff !important;
      box-shadow: none !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .validation_message,
    body.page-template-page-contact #hrb-contact-form-gf .gfield_validation_message,
    body.page-template-page-contact #hrb-contact-form-gf .gfield_description.validation_message,
    body.page-contact-us #hrb-contact-form-gf .validation_message,
    body.page-contact-us #hrb-contact-form-gf .gfield_validation_message,
    body.page-contact-us #hrb-contact-form-gf .gfield_description.validation_message {
      margin: 8px 0 0 !important;
      padding: 0 !important;
      border: 0 !important;
      border-radius: 0 !important;
      background: transparent !important;
      color: #ef4444 !important;
      font-size: 13px !important;
      line-height: 1.35 !important;
      font-weight: 500 !important;
      box-shadow: none !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_validation_errors,
    body.page-template-page-contact #hrb-contact-form-gf .gform_submission_error,
    body.page-contact-us #hrb-contact-form-gf .gform_validation_errors,
    body.page-contact-us #hrb-contact-form-gf .gform_submission_error {
      margin: 0 0 16px !important;
      padding: 14px !important;
      border: 1px solid #f4bcbc !important;
      border-radius: 12px !important;
      background: #fff3f3 !important;
      box-shadow: none !important;
      color: #ef4444 !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_validation_errors > h2,
    body.page-contact-us #hrb-contact-form-gf .gform_validation_errors > h2 {
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      background: transparent !important;
      color: #ef4444 !important;
      font-size: 14px !important;
      font-weight: 600 !important;
      line-height: 1.45 !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_validation_errors ol,
    body.page-template-page-contact #hrb-contact-form-gf .gform_validation_errors ul,
    body.page-contact-us #hrb-contact-form-gf .gform_validation_errors ol,
    body.page-contact-us #hrb-contact-form-gf .gform_validation_errors ul {
      display: none !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gfield--type-captcha .gfield_label,
    body.page-template-page-contact #hrb-contact-form-gf .gfield--type-recaptcha .gfield_label,
    body.page-template-page-contact #hrb-contact-form-gf .gfield--type-captcha .gform-field-label,
    body.page-template-page-contact #hrb-contact-form-gf .gfield--type-recaptcha .gform-field-label,
    body.page-contact-us #hrb-contact-form-gf .gfield--type-captcha .gfield_label,
    body.page-contact-us #hrb-contact-form-gf .gfield--type-recaptcha .gfield_label,
    body.page-contact-us #hrb-contact-form-gf .gfield--type-captcha .gform-field-label,
    body.page-contact-us #hrb-contact-form-gf .gfield--type-recaptcha .gform-field-label {
      display: none !important;
      margin: 0 !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_footer,
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer,
    body.page-contact-us #hrb-contact-form-gf .gform_footer,
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer {
      margin: 16px 0 0 !important;
      padding: 0 !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_footer .gform_button.button,
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer .gform_button.button,
    body.page-template-page-contact #hrb-contact-form-gf .gform_footer input[type="submit"],
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer input[type="submit"],
    body.page-template-page-contact #hrb-contact-form-gf .gform_footer button[type="submit"],
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer button[type="submit"],
    body.page-contact-us #hrb-contact-form-gf .gform_footer .gform_button.button,
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer .gform_button.button,
    body.page-contact-us #hrb-contact-form-gf .gform_footer input[type="submit"],
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer input[type="submit"],
    body.page-contact-us #hrb-contact-form-gf .gform_footer button[type="submit"],
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer button[type="submit"] {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: 100% !important;
      min-height: 58px !important;
      margin: 0 !important;
      padding: 16px 24px !important;
      border: 0 !important;
      border-radius: 14px !important;
      background: #f59e0b !important;
      color: #0f172a !important;
      box-shadow: 0 8px 24px rgba(245, 158, 11, 0.22) !important;
      font-family: var(--font-display) !important;
      font-size: 17px !important;
      font-weight: 700 !important;
      line-height: 1.2 !important;
      text-transform: none !important;
      cursor: pointer !important;
      transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_footer .gform_button.button:hover,
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer .gform_button.button:hover,
    body.page-template-page-contact #hrb-contact-form-gf .gform_footer input[type="submit"]:hover,
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer input[type="submit"]:hover,
    body.page-template-page-contact #hrb-contact-form-gf .gform_footer button[type="submit"]:hover,
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer button[type="submit"]:hover,
    body.page-contact-us #hrb-contact-form-gf .gform_footer .gform_button.button:hover,
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer .gform_button.button:hover,
    body.page-contact-us #hrb-contact-form-gf .gform_footer input[type="submit"]:hover,
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer input[type="submit"]:hover,
    body.page-contact-us #hrb-contact-form-gf .gform_footer button[type="submit"]:hover,
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer button[type="submit"]:hover {
      background: #f3a915 !important;
      transform: translateY(-1px) !important;
      box-shadow: 0 12px 28px rgba(245, 158, 11, 0.28) !important;
    }

    /* Contact number country dropdown style (same reference as Book Demo) */
    #hrb-contact-form-gf .gform_wrapper,
    #hrb-contact-form-gf .gform_body,
    #hrb-contact-form-gf .gform_fields,
    #hrb-contact-form-gf .pcafe_sp_field,
    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone,
    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti {
      overflow: visible !important;
    }

    #hrb-contact-form-gf .pcafe_sp_field,
    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone {
      position: relative !important;
      overflow: visible !important;
    }

    #hrb-contact-form-gf .pcafe_sp_field {
      z-index: 20 !important;
    }

    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti {
      width: 100% !important;
      display: block !important;
    }

    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti input[type="tel"] {
      padding-left: 92px !important;
      padding-right: 12px !important;
    }

    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__flag-container {
      z-index: 30 !important;
    }

    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__selected-country {
      height: 100% !important;
      display: inline-flex !important;
      align-items: center !important;
      padding: 0 4px 0 7px !important;
      border: 0 !important;
      border-right: 1px solid #d5dfec !important;
      border-radius: 10px 0 0 10px !important;
      background: #fff !important;
      box-sizing: border-box !important;
      box-shadow: none !important;
      outline: 0 !important;
      -webkit-appearance: none !important;
      appearance: none !important;
    }

    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__selected-country-primary {
      display: inline-flex !important;
      align-items: center !important;
      gap: 6px !important;
      padding-right: 0 !important;
    }

    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__selected-country-primary .iti__flag,
    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__country .iti__flag {
      zoom: 1.22 !important;
      transform: translateZ(0) !important;
      transform-origin: left center !important;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
      margin-right: 2px !important;
    }

    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__selected-dial-code {
      color: #2d3d5a !important;
      font-size: 0.9rem !important;
    }

    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__country-list {
      z-index: 9999 !important;
      top: calc(100% + 6px) !important;
      left: 0 !important;
      width: 100% !important;
      max-width: 100% !important;
      max-height: 240px !important;
      overflow-y: auto !important;
      overflow-x: hidden !important;
      border: 1px solid #d5dfec !important;
      border-radius: 10px !important;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12) !important;
      background: #fff !important;
    }

    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__country {
      display: flex !important;
      align-items: center !important;
      gap: 12px !important;
      padding: 9px 10px !important;
      font-size: 0.9rem !important;
    }

    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__country.iti__highlight {
      background: #f3f7ff !important;
    }

    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__country-container {
      left: 1px !important;
      top: 1px !important;
      bottom: 1px !important;
    }

    #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-country {
      min-width: 72px !important;
      gap: 6px !important;
      padding-right: 6px !important;
    }

    @media (max-width: 575px) {
      #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"] {
        padding-left: 88px !important;
      }
    }

    /* ============================================================
       CONTACT PAGE - CURRENT LAYOUT LOCK (as per latest design)
    ============================================================ */
    body.page-template-page-contact .hrb-contact-main,
    body.page-contact-us .hrb-contact-main {
      background: #f5faf9 !important;
      padding: 46px 0 74px !important;
    }

    body.page-template-page-contact .hrb-contact-main__grid,
    body.page-contact-us .hrb-contact-main__grid {
      gap: 32px !important;
      align-items: start !important;
    }

    @media (min-width: 1024px) {
      body.page-template-page-contact .hrb-contact-main__grid,
      body.page-contact-us .hrb-contact-main__grid {
        grid-template-columns: 1.14fr 0.86fr !important;
        gap: 34px !important;
      }
    }

    @media (min-width: 768px) {
      body.page-template-page-contact #hrb-contact-form-gf .gform_fields,
      body.page-contact-us #hrb-contact-form-gf .gform_fields {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        column-gap: 16px !important;
        row-gap: 16px !important;
      }

      body.page-template-page-contact #hrb-contact-form-gf #field_1_10,
      body.page-contact-us #hrb-contact-form-gf #field_1_10 {
        grid-column: 1 !important;
        grid-row: 1 !important;
      }

      body.page-template-page-contact #hrb-contact-form-gf #field_1_3,
      body.page-contact-us #hrb-contact-form-gf #field_1_3 {
        grid-column: 1 !important;
        grid-row: 2 !important;
      }

      body.page-template-page-contact #hrb-contact-form-gf #field_1_4,
      body.page-contact-us #hrb-contact-form-gf #field_1_4 {
        grid-column: 2 !important;
        grid-row: 2 !important;
      }

      body.page-template-page-contact #hrb-contact-form-gf #field_1_5,
      body.page-contact-us #hrb-contact-form-gf #field_1_5 {
        grid-column: 2 !important;
        grid-row: 3 !important;
      }

      body.page-template-page-contact #hrb-contact-form-gf #field_1_7,
      body.page-contact-us #hrb-contact-form-gf #field_1_7 {
        grid-column: 1 / -1 !important;
        grid-row: 4 !important;
      }

      body.page-template-page-contact #hrb-contact-form-gf #field_1_9,
      body.page-contact-us #hrb-contact-form-gf #field_1_9 {
        grid-column: 1 / -1 !important;
        grid-row: 5 !important;
      }

      body.page-template-page-contact #hrb-contact-form-gf #field_1_25,
      body.page-contact-us #hrb-contact-form-gf #field_1_25 {
        grid-column: 1 / -1 !important;
        grid-row: 6 !important;
        margin-top: 2px !important;
      }
    }

    body.page-template-page-contact .hrb-contact-form-wrap,
    body.page-contact-us .hrb-contact-form-wrap {
      padding: 34px 36px 30px !important;
      border-radius: 22px !important;
      border: 1px solid #d3deeb !important;
      box-shadow: none !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap h2,
    body.page-contact-us .hrb-contact-form-wrap h2 {
      font-size: 52px !important;
      line-height: 1.1 !important;
      margin-bottom: 8px !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap > p,
    body.page-contact-us .hrb-contact-form-wrap > p {
      margin-bottom: 26px !important;
      font-size: 15px !important;
      color: #5f718d !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gfield_label,
    body.page-template-page-contact #hrb-contact-form-gf .gform-field-label,
    body.page-contact-us #hrb-contact-form-gf .gfield_label,
    body.page-contact-us #hrb-contact-form-gf .gform-field-label {
      margin-bottom: 8px !important;
      font-size: 13px !important;
      color: #0f172a !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gfield input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    body.page-template-page-contact #hrb-contact-form-gf .gfield select,
    body.page-template-page-contact #hrb-contact-form-gf .gfield textarea,
    body.page-template-page-contact #hrb-contact-form-gf .ginput_container input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    body.page-template-page-contact #hrb-contact-form-gf .ginput_container select,
    body.page-template-page-contact #hrb-contact-form-gf .ginput_container textarea,
    body.page-contact-us #hrb-contact-form-gf .gfield input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    body.page-contact-us #hrb-contact-form-gf .gfield select,
    body.page-contact-us #hrb-contact-form-gf .gfield textarea,
    body.page-contact-us #hrb-contact-form-gf .ginput_container input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    body.page-contact-us #hrb-contact-form-gf .ginput_container select,
    body.page-contact-us #hrb-contact-form-gf .ginput_container textarea {
      min-height: 54px !important;
      border-radius: 11px !important;
      border-color: #cfdbea !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gfield textarea,
    body.page-template-page-contact #hrb-contact-form-gf .ginput_container textarea,
    body.page-contact-us #hrb-contact-form-gf .gfield textarea,
    body.page-contact-us #hrb-contact-form-gf .ginput_container textarea {
      min-height: 120px !important;
      height: 120px !important;
      line-height: 1.6 !important;
      font-size: 15px !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gfield--type-recaptcha,
    body.page-template-page-contact #hrb-contact-form-gf .gfield--type-captcha,
    body.page-contact-us #hrb-contact-form-gf .gfield--type-recaptcha,
    body.page-contact-us #hrb-contact-form-gf .gfield--type-captcha {
      margin-top: 0 !important;
      margin-bottom: 14px !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_footer,
    body.page-contact-us #hrb-contact-form-gf .gform_footer {
      margin-top: 2px !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_footer input[type="submit"],
    body.page-template-page-contact #hrb-contact-form-gf .gform_footer .gform_button,
    body.page-contact-us #hrb-contact-form-gf .gform_footer input[type="submit"],
    body.page-contact-us #hrb-contact-form-gf .gform_footer .gform_button {
      min-height: 56px !important;
      border-radius: 13px !important;
      box-shadow: none !important;
      font-size: 17px !important;
    }

    body.page-template-page-contact .hrb-cf__footer-note,
    body.page-contact-us .hrb-cf__footer-note {
      margin-top: 12px !important;
      font-size: 13px !important;
      line-height: 1.45 !important;
    }

    /* Force Contact form fields to single column on all devices */
    #hrb-contact-form-gf .gform_fields {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) !important;
      column-gap: 0 !important;
      row-gap: 16px !important;
    }
    #hrb-contact-form-gf .gfield,
    #hrb-contact-form-gf #field_1_10,
    #hrb-contact-form-gf #field_1_3,
    #hrb-contact-form-gf #field_1_4,
    #hrb-contact-form-gf #field_1_5,
    #hrb-contact-form-gf #field_1_7,
    #hrb-contact-form-gf #field_1_9,
    #hrb-contact-form-gf #field_1_25 {
      grid-column: 1 / -1 !important;
      grid-row: auto !important;
    }

    /* Captcha design polish */
    #hrb-contact-form-gf #field_1_25 {
      margin-top: 2px !important;
      margin-bottom: 10px !important;
      padding: 0 !important;
    }
    #hrb-contact-form-gf #field_1_25 .gfield_label,
    #hrb-contact-form-gf #field_1_25 .gform-field-label {
      display: none !important;
      margin: 0 !important;
    }
    #hrb-contact-form-gf #field_1_25 .ginput_container,
    #hrb-contact-form-gf #field_1_25 .ginput_recaptcha {
      min-height: 74px !important;
      display: flex !important;
      align-items: flex-start !important;
      justify-content: flex-start !important;
      margin: 0 !important;
    }
    #hrb-contact-form-gf #field_1_25 .grecaptcha-badge {
      position: static !important;
      inset: auto !important;
      transform: none !important;
      box-shadow: none !important;
      margin: 0 !important;
      max-width: 100% !important;
    }
    #hrb-contact-form-gf #field_1_25 .grecaptcha-badge iframe {
      width: 256px !important;
      max-width: 100% !important;
      height: 60px !important;
      border-radius: 8px !important;
    }
    #hrb-contact-form-gf .gfield--type-captcha .validation_message,
    #hrb-contact-form-gf .gfield--type-recaptcha .validation_message {
      margin-top: 8px !important;
    }
    @media (max-width: 575px) {
      #hrb-contact-form-gf #field_1_25 .grecaptcha-badge {
        transform: scale(0.92) !important;
        transform-origin: left top !important;
      }
    }

    /* Contact submit button - match reference design */
    #hrb-contact-form-gf .gform_footer,
    #hrb-contact-form-gf .gform_page_footer {
      margin-top: 8px !important;
      padding: 0 !important;
    }
    #hrb-contact-form-gf .gform_footer input[type="submit"],
    #hrb-contact-form-gf .gform_page_footer input[type="submit"],
    #hrb-contact-form-gf .gform_footer .gform_button,
    #hrb-contact-form-gf .gform_page_footer .gform_button,
    #hrb-contact-form-gf .gform_footer button[type="submit"],
    #hrb-contact-form-gf .gform_page_footer button[type="submit"] {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: 100% !important;
      min-height: 56px !important;
      height: 56px !important;
      margin: 0 !important;
      padding: 0 20px !important;
      border: 0 !important;
      border-radius: 14px !important;
      background: #f6a503 !important;
      color: #0f172a !important;
      box-shadow: none !important;
      font-family: var(--font-display) !important;
      font-size: 17px !important;
      font-weight: 700 !important;
      line-height: 1.2 !important;
      letter-spacing: 0 !important;
      text-transform: none !important;
      transform: none !important;
      transition: background-color 0.2s ease !important;
      cursor: pointer !important;
    }
    #hrb-contact-form-gf .gform_footer input[type="submit"]:hover,
    #hrb-contact-form-gf .gform_page_footer input[type="submit"]:hover,
    #hrb-contact-form-gf .gform_footer .gform_button:hover,
    #hrb-contact-form-gf .gform_page_footer .gform_button:hover,
    #hrb-contact-form-gf .gform_footer button[type="submit"]:hover,
    #hrb-contact-form-gf .gform_page_footer button[type="submit"]:hover {
      background: #f2a002 !important;
      box-shadow: none !important;
      transform: none !important;
    }
    #hrb-contact-form-gf .gform_footer input[type="submit"]:focus-visible,
    #hrb-contact-form-gf .gform_page_footer input[type="submit"]:focus-visible,
    #hrb-contact-form-gf .gform_footer .gform_button:focus-visible,
    #hrb-contact-form-gf .gform_page_footer .gform_button:focus-visible,
    #hrb-contact-form-gf .gform_footer button[type="submit"]:focus-visible,
    #hrb-contact-form-gf .gform_page_footer button[type="submit"]:focus-visible {
      outline: none !important;
      box-shadow: 0 0 0 3px rgba(246, 165, 3, 0.26) !important;
    }

    /* Contact form: remove extra bottom space */
    body.page-template-page-contact #hrb-contact-form-gf,
    body.page-contact-us #hrb-contact-form-gf {
      margin-bottom: 0 !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_wrapper,
    body.page-template-page-contact #hrb-contact-form-gf .gform_wrapper form,
    body.page-contact-us #hrb-contact-form-gf .gform_wrapper,
    body.page-contact-us #hrb-contact-form-gf .gform_wrapper form {
      margin-bottom: 0 !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf #field_1_25,
    body.page-contact-us #hrb-contact-form-gf #field_1_25 {
      margin-bottom: 4px !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_footer,
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer,
    body.page-contact-us #hrb-contact-form-gf .gform_footer,
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer {
      margin-top: 4px !important;
      margin-bottom: 0 !important;
    }

    body.page-template-page-contact .hrb-cf__footer-note,
    body.page-contact-us .hrb-cf__footer-note {
      margin-top: 8px !important;
      margin-bottom: 0 !important;
    }

    body.page-template-page-contact .hrb-contact-form-wrap,
    body.page-contact-us .hrb-contact-form-wrap {
      padding-bottom: 20px !important;
    }

    /* Contact Us submit button: match Book Demo button exactly */
    body.page-template-page-contact #hrb-contact-form-gf .gform_footer,
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer,
    body.page-contact-us #hrb-contact-form-gf .gform_footer,
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer {
      margin-top: 16px !important;
      padding: 0 !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_footer .gform_button.button,
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer .gform_button.button,
    body.page-template-page-contact #hrb-contact-form-gf .gform_footer input[type="submit"],
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer input[type="submit"],
    body.page-template-page-contact #hrb-contact-form-gf .gform_footer button[type="submit"],
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer button[type="submit"],
    body.page-contact-us #hrb-contact-form-gf .gform_footer .gform_button.button,
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer .gform_button.button,
    body.page-contact-us #hrb-contact-form-gf .gform_footer input[type="submit"],
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer input[type="submit"],
    body.page-contact-us #hrb-contact-form-gf .gform_footer button[type="submit"],
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer button[type="submit"] {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: 100% !important;
      min-height: 58px !important;
      margin: 0 !important;
      padding: 16px 24px !important;
      border: 0 !important;
      border-radius: 14px !important;
      background: #f59e0b !important;
      color: #0f172a !important;
      box-shadow: 0 8px 24px rgba(245,158,11,0.22) !important;
      font-family: var(--font-display) !important;
      font-size: 17px !important;
      font-weight: 700 !important;
      letter-spacing: 0 !important;
      line-height: 1.2 !important;
      text-transform: none !important;
      cursor: pointer !important;
      transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_footer .gform_button.button:hover,
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer .gform_button.button:hover,
    body.page-template-page-contact #hrb-contact-form-gf .gform_footer input[type="submit"]:hover,
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer input[type="submit"]:hover,
    body.page-template-page-contact #hrb-contact-form-gf .gform_footer button[type="submit"]:hover,
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer button[type="submit"]:hover,
    body.page-contact-us #hrb-contact-form-gf .gform_footer .gform_button.button:hover,
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer .gform_button.button:hover,
    body.page-contact-us #hrb-contact-form-gf .gform_footer input[type="submit"]:hover,
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer input[type="submit"]:hover,
    body.page-contact-us #hrb-contact-form-gf .gform_footer button[type="submit"]:hover,
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer button[type="submit"]:hover {
      background: #f3a915 !important;
      transform: translateY(-1px) !important;
      box-shadow: 0 12px 28px rgba(245,158,11,0.28) !important;
    }

    body.page-template-page-contact #hrb-contact-form-gf .gform_footer .gform_button.button:focus-visible,
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer .gform_button.button:focus-visible,
    body.page-template-page-contact #hrb-contact-form-gf .gform_footer input[type="submit"]:focus-visible,
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer input[type="submit"]:focus-visible,
    body.page-template-page-contact #hrb-contact-form-gf .gform_footer button[type="submit"]:focus-visible,
    body.page-template-page-contact #hrb-contact-form-gf .gform_page_footer button[type="submit"]:focus-visible,
    body.page-contact-us #hrb-contact-form-gf .gform_footer .gform_button.button:focus-visible,
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer .gform_button.button:focus-visible,
    body.page-contact-us #hrb-contact-form-gf .gform_footer input[type="submit"]:focus-visible,
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer input[type="submit"]:focus-visible,
    body.page-contact-us #hrb-contact-form-gf .gform_footer button[type="submit"]:focus-visible,
    body.page-contact-us #hrb-contact-form-gf .gform_page_footer button[type="submit"]:focus-visible {
      outline: none !important;
      box-shadow: 0 0 0 4px rgba(245,158,11,0.18), 0 12px 28px rgba(245,158,11,0.28) !important;
    }
