  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --red: #e82b2b;
    --red-dark: #c41e1e;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-text: #555;
    --gray-border: #e0e0e0;
    --font-main: 'Manrope', sans-serif;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-main); background: var(--white); color: var(--black); overflow-x: hidden; }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,10,10,0.97); backdrop-filter: blur(12px);
    padding: 0 48px; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo img { height: 48px; width: 48px; border-radius: 8px; object-fit: contain; flex-shrink: 0; }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
  .nav-logo-name { color: #ffffff; font-size: 15px; font-weight: 800; letter-spacing: 0.5px; font-family: 'Manrope', sans-serif; }
  .nav-logo-tag { color: rgba(255,255,255,0.45); font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: #fff; }
  .nav-links a.active { color: var(--red); }
  .nav-actions { display: flex; align-items: center; gap: 12px; }
  .btn-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--red); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
  .btn-icon:hover { background: var(--red-dark); transform: scale(1.05); }
  .btn-icon svg { width: 16px; height: 16px; stroke: #fff; }
  .btn-discuss { background: var(--red); color: #fff; border: none; padding: 12px 26px; border-radius: 50px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; cursor: pointer; transition: background 0.2s, transform 0.2s; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; }
  .btn-discuss:hover { background: var(--red-dark); transform: translateY(-1px); }

  /* ===== HAMBURGER ===== */
  .hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: transparent; border: 1.5px solid rgba(255,255,255,0.2); border-radius: 8px; cursor: pointer; padding: 0; transition: border-color 0.2s; flex-shrink: 0; z-index: 1100; position: relative; }
  .hamburger:hover { border-color: var(--red); }
  .hamburger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ===== MOBILE BACKDROP ===== */
  .mobile-menu-backdrop { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 1050; opacity: 0; transition: opacity 0.3s ease; }
  .mobile-menu-backdrop.open { display: block; opacity: 1; }

  /* ===== MOBILE DRAWER ===== */
  .mobile-menu {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 85%; max-width: 320px;
    background: #ffffff; z-index: 1100;
    display: flex; flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 48px rgba(0,0,0,0.18);
    overflow-y: auto; overflow-x: hidden;
    height: 100%; min-height: 100vh;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0; background: #fff;
  }
  .mobile-drawer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
  .mobile-drawer-logo img { height: 32px; width: 32px; border-radius: 6px; object-fit: contain; }
  .mobile-drawer-logo-name { color: #111; font-size: 12px; font-weight: 800; }
  .mobile-drawer-close {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1.5px solid #ddd; background: #f5f5f5;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; flex-shrink: 0;
  }
  .mobile-drawer-close svg { width: 12px; height: 12px; stroke: #555; }
  .mobile-nav-links { list-style: none; display: block; padding: 0; margin: 0; flex: 1; width: 100%; }
  .mobile-nav-links li { display: block; width: 100%; border-bottom: 1px solid #f2f2f2; }
  .mobile-nav-links li a {
    display: flex; align-items: center; justify-content: space-between;
    color: #1a1a1a; text-decoration: none;
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.8px; text-transform: uppercase;
    padding: 16px 16px; width: 100%;
    transition: color 0.2s, background 0.2s;
  }
  .mobile-nav-links li a:hover { color: #e82b2b; background: #fff5f5; }
  .mobile-nav-links li a.active { color: #e82b2b; background: #fff5f5; }
  .mn-plus {
    width: 28px; height: 28px; border-radius: 6px;
    border: 1.5px solid #e0e0e0; display: flex;
    align-items: center; justify-content: center;
    flex-shrink: 0; background: #f7f7f7;
    font-size: 18px; font-weight: 300; color: #555; line-height: 1;
    transition: all 0.2s;
  }
  .mobile-nav-links li a:hover .mn-plus,
  .mobile-nav-links li a.active .mn-plus { border-color: #e82b2b; background: #e82b2b; color: #fff; }
  .mobile-menu-footer { padding: 16px; border-top: 1px solid #f0f0f0; flex-shrink: 0; background: #fff; }
  .mobile-contact-btn {
    background: #e82b2b; color: #fff; text-decoration: none;
    padding: 14px 20px; border-radius: 50px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.8px;
    text-transform: uppercase; text-align: center; display: block;
    transition: background 0.2s;
  }
  .mobile-contact-btn:hover { background: #c41e1e; }

  /* ─── HERO ─── */
  .contact-hero {
    min-height: 420px; background: #0a0a0a;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 120px 48px 80px; text-align: center;
  }
  .hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .hero-ring { position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,0.06); }
  .hr1 { width: 600px; height: 300px; top: 30%; left: 15%; transform: rotate(-20deg); animation: floatRing1 8s ease-in-out infinite; }
  .hr2 { width: 500px; height: 250px; top: 40%; left: 50%; transform: rotate(10deg); animation: floatRing2 10s ease-in-out infinite; border-color: rgba(255,255,255,0.04); }
  .hr3 { width: 700px; height: 350px; top: 20%; right: 5%; transform: rotate(-5deg); animation: floatRing3 12s ease-in-out infinite; border-color: rgba(255,255,255,0.03); }
  @keyframes floatRing1 { 0%,100%{transform:rotate(-20deg) translateY(0)} 50%{transform:rotate(-20deg) translateY(-30px)} }
  @keyframes floatRing2 { 0%,100%{transform:rotate(10deg) translateY(0)} 50%{transform:rotate(10deg) translateY(20px)} }
  @keyframes floatRing3 { 0%,100%{transform:rotate(-5deg) translateY(0)} 50%{transform:rotate(-5deg) translateY(-20px)} }

  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,43,43,0.12); border: 1px solid rgba(232,43,43,0.3); border-radius: 50px; padding: 8px 18px; margin-bottom: 28px; animation: fadeUp 0.6s ease both; position: relative; z-index: 2; }
  .hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #e82b2b; display: inline-block; animation: pulseDot 2s ease-in-out infinite; }
  .hero-badge-text { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
  @keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }

  .contact-hero h1 { position: relative; z-index: 2; color: #fff; font-size: clamp(36px, 5vw, 64px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px; animation: fadeUp 0.7s 0.1s ease both; opacity: 0; }
  .contact-hero h1 span { color: var(--red); }
  .contact-hero p { position: relative; z-index: 2; color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.7; max-width: 580px; margin: 0 auto; animation: fadeUp 0.7s 0.25s ease both; opacity: 0; }

  .breadcrumb { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; z-index: 2; animation: fadeUp 0.7s 0.4s ease both; opacity: 0; }
  .breadcrumb a { color: rgba(255,255,255,0.45); font-size: 13px; font-weight: 500; text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: #fff; }
  .breadcrumb span { color: rgba(255,255,255,0.25); font-size: 13px; }
  .breadcrumb strong { color: var(--red); font-size: 13px; font-weight: 600; }

  @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

  /* ─── INFO STRIP ─── */
  .info-strip { background: #ffffff; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-bottom: 1.5px solid var(--gray-border); border-top: 1.5px solid var(--gray-border); }
  .info-strip-item { display: flex; align-items: center; gap: 16px; padding: 28px 36px; border-right: 1.5px solid var(--gray-border); transition: background 0.2s; }
  .info-strip-item:last-child { border-right: none; }
  .info-strip-item:hover { background: #fafafa; }
  .strip-icon { width: 44px; height: 44px; border-radius: 10px; background: #fde8e8; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  .strip-text strong { display: block; color: #111; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
  .strip-text span { color: #777; font-size: 13px; line-height: 1.4; }
  .strip-text a { color: var(--red); text-decoration: none; font-size: 13px; display: block; transition: color 0.2s; }
  .strip-text a:hover { color: var(--red-dark); }

  /* ─── MAIN CONTACT AREA ─── */
  .contact-main { padding: 96px 48px; background: #f9f9f9; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; max-width: 1200px; margin: 0 auto; }

  .section-label { color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
  .info-left h2 { font-size: clamp(28px,3vw,42px); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
  .info-left > p { color: var(--gray-text); font-size: 15px; line-height: 1.7; margin-bottom: 40px; }

  .steps-block { margin-bottom: 44px; }
  .steps-block h3 { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
  .step-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
  .step-num { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid #d0d0d0; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #333; flex-shrink: 0; transition: all 0.2s; }
  .step-item:hover .step-num { background: var(--red); border-color: var(--red); color: #fff; }
  .step-text { color: #555; font-size: 14px; line-height: 1.65; padding-top: 8px; }

  .contact-links { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
  .clink { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #333; font-size: 14px; font-weight: 500; padding: 12px 16px; border-radius: 10px; border: 1.5px solid transparent; background: #fff; transition: all 0.2s; }
  .clink:hover { color: var(--red); border-color: rgba(232,43,43,0.25); box-shadow: 0 6px 20px rgba(232,43,43,0.08); }
  .clink-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
  .ci-email { background: #fde8e8; }
  .ci-phone { background: #e8eefa; }
  .ci-whatsapp { background: #e8fae8; }

  /* RIGHT FORM */
  .form-card { background: #fff; border-radius: 24px; padding: 48px 44px; box-shadow: 0 4px 50px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.04); }
  .form-card h3 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
  .form-card p { color: var(--gray-text); font-size: 14px; margin-bottom: 36px; line-height: 1.6; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
  .form-group { display: flex; flex-direction: column; gap: 0; }
  .form-group label { font-size: 12px; font-weight: 700; color: #999; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px; }
  .form-input { background: transparent; border: none; border-bottom: 1.5px solid #ddd; padding: 10px 0; font-size: 15px; font-family: var(--font-main); color: #222; outline: none; transition: border-color 0.2s; width: 100%; }
  .form-input:focus { border-bottom-color: var(--red); }
  .phone-prefix { display: flex; align-items: center; gap: 8px; border-bottom: 1.5px solid #ddd; transition: border-color 0.2s; }
  .phone-prefix:focus-within { border-bottom-color: var(--red); }
  .phone-flag { display: flex; align-items: center; gap: 6px; font-size: 14px; color: #555; padding: 10px 0; cursor: pointer; white-space: nowrap; border: none; background: none; }
  .phone-sep { color: #ccc; font-size: 16px; }
  .phone-prefix .form-input { border-bottom: none; flex: 1; }
  .form-textarea { background: transparent; border: none; border-bottom: 1.5px solid #ddd; padding: 10px 0; font-size: 15px; font-family: var(--font-main); color: #222; outline: none; resize: none; width: 100%; min-height: 100px; transition: border-color 0.2s; margin-bottom: 8px; }
  .form-textarea:focus { border-bottom-color: var(--red); }
  .char-count { font-size: 11px; color: #bbb; text-align: right; margin-bottom: 28px; }
  .form-submit-row { display: flex; align-items: center; justify-content: flex-end; gap: 0; }
  .submit-icon-btn { width: 52px; height: 52px; border-radius: 50%; background: var(--red); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; margin-right: -6px; z-index: 1; flex-shrink: 0; }
  .submit-icon-btn svg { width: 18px; height: 18px; stroke: #fff; }
  .submit-btn { background: var(--red); color: #fff; border: none; padding: 16px 36px 16px 44px; border-radius: 50px; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
  .submit-btn:hover { background: var(--red-dark); }
  .submit-btn:disabled { background: #aaa; cursor: not-allowed; }
  .form-note { font-size: 12px; color: #bbb; margin-top: 16px; text-align: center; }
  .form-msg { margin-top: 16px; font-size: 14px; font-weight: 600; text-align: right; display: none; }
  .form-msg.success { color: #16a34a; display: block; }
  .form-msg.error { color: var(--red); display: block; }

  /* ─── OUR OFFICES SECTION ─── */
  .offices-section { background: #fff; padding: 80px 48px; }
  .offices-inner { max-width: 900px; margin: 0 auto; text-align: center; }
  .offices-inner .section-label { display: block; margin-bottom: 14px; }
  .offices-inner h2 { font-size: clamp(26px,3vw,40px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
  .offices-inner > p { color: var(--gray-text); font-size: 15px; line-height: 1.7; margin-bottom: 52px; }
  .offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; text-align: left; }
  .office-big-card { background: #f9f9f9; border: 1.5px solid var(--gray-border); border-radius: 20px; padding: 32px 30px; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; position: relative; overflow: hidden; }
  .office-big-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); border-radius: 20px 20px 0 0; }
  .office-big-card:hover { border-color: rgba(232,43,43,0.3); box-shadow: 0 16px 48px rgba(0,0,0,0.09); transform: translateY(-4px); }
  .office-flag-big { font-size: 40px; margin-bottom: 16px; display: block; }
  .office-big-card h4 { font-size: 18px; font-weight: 800; color: #111; margin-bottom: 6px; }
  .office-big-card .office-city { color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; display: block; }
  .office-big-card address { font-style: normal; color: #666; font-size: 14px; line-height: 1.8; border-top: 1px solid var(--gray-border); padding-top: 16px; margin-top: 4px; }
  .office-big-card address strong { color: #333; font-weight: 600; font-size: 13px; display: block; margin-bottom: 4px; }
  .office-contact-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
  .office-chip { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1.5px solid var(--gray-border); border-radius: 50px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: #444; text-decoration: none; transition: all 0.2s; }
  .office-chip:hover { border-color: var(--red); color: var(--red); }

  /* ─── FAQ ─── */
  .faq-section { background: var(--gray-light); padding: 80px 48px; }
  .faq-inner { max-width: 820px; margin: 0 auto; }
  .faq-header { text-align: center; margin-bottom: 48px; }
  .faq-header h2 { font-size: clamp(24px,3vw,36px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
  .faq-header p { color: var(--gray-text); font-size: 15px; }
  .faq-item { background: #fff; border-radius: 14px; margin-bottom: 12px; border: 1.5px solid var(--gray-border); overflow: hidden; transition: border-color 0.2s; }
  .faq-item.open { border-color: rgba(232,43,43,0.25); }
  .faq-q { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; gap: 16px; }
  .faq-q-text { font-size: 15px; font-weight: 700; color: #111; }
  .faq-icon { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid #e0e0e0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; }
  .faq-item.open .faq-icon { background: var(--red); border-color: var(--red); transform: rotate(45deg); }
  .faq-icon svg { width: 14px; height: 14px; stroke: #555; transition: stroke 0.2s; }
  .faq-item.open .faq-icon svg { stroke: #fff; }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
  .faq-a-inner { padding: 0 24px 20px; color: #666; font-size: 14px; line-height: 1.7; }

  /* ─── FOOTER ─── */
  .site-footer { background: #0a0a0a; color: rgba(255,255,255,0.7); padding: 70px 48px 0; }
  .footer-top-band { display: flex; align-items: flex-start; gap: 60px; margin-bottom: 60px; }
  .footer-brand-col { max-width: 360px; }
  .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .footer-logo-text h3 { color: #fff; font-size: 20px; font-weight: 800; }
  .footer-logo-text span { color: #666; font-size: 12px; }
  .footer-brand-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); }
  .footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; flex: 1; }
  .footer-col-title { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 18px; position: relative; padding-bottom: 12px; }
  .footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--red); }
  .footer-links { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
  .footer-links li a { color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none; transition: color 0.2s; }
  .footer-links li a:hover { color: #fff; }
  .footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; align-items: center; justify-content: center; }
  .footer-bottom-bar p { color: rgba(255,255,255,0.35); font-size: 13px; }

  /* ─── SCROLL REVEAL ─── */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }

  .scroll-up { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(232,43,43,0.5); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 999; transition: all 0.2s; opacity: 0; pointer-events: none; }
  .scroll-up.show { opacity: 1; pointer-events: auto; }
  .scroll-up:hover { background: var(--red); border-color: var(--red); }
  .scroll-up svg { width: 18px; height: 18px; stroke: var(--red); transition: stroke 0.2s; }
  .scroll-up:hover svg { stroke: #fff; }

  /* ─── RESPONSIVE ─── */
  @media(max-width: 1024px) {
    nav { padding: 0 24px; }
    .contact-main, .offices-section, .faq-section { padding-left: 24px; padding-right: 24px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .info-strip { grid-template-columns: 1fr; }
    .info-strip-item { border-right: none; border-bottom: 1.5px solid var(--gray-border); }
    .info-strip-item:last-child { border-bottom: none; }
    .offices-grid { grid-template-columns: 1fr; }
    .footer-top-band { flex-direction: column; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
  }
  @media(max-width: 768px) {
    nav { padding: 0 16px; height: 60px; }
    .nav-links { display: none; }
    .nav-logo img { height: 36px; width: 36px; }
    .nav-logo { gap: 8px; }
    .nav-logo-name { font-size: 12px; letter-spacing: 0; }
    .nav-logo-tag { display: none; }
    .btn-icon { display: none; }
    .btn-discuss { display: none; }
    .hamburger { display: flex; }

    .contact-hero { padding: 90px 16px 80px; }
    .contact-hero h1 { font-size: 34px; }
    .contact-main { padding: 56px 16px; }
    .offices-section, .faq-section { padding: 56px 16px; }
    .site-footer { padding: 40px 16px 0; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px 20px; border-radius: 16px; }
    .footer-cols { grid-template-columns: 1fr; }
    .footer-bottom-bar p { font-size: 11px; text-align: center; }
    .form-submit-row { justify-content: center; }
    .submit-icon-btn { display: none; }
    .submit-btn { width: 100%; text-align: center; padding: 16px 32px; border-radius: 50px; }
    .form-msg { text-align: center; }
  }
