/* ═══════════════════════════════════════════════════════════
 *  css/pages/contact-us.css — Land of Profits
 *  Page-specific styles for contact-us.html.
 * ═══════════════════════════════════════════════════════════ */

*,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--sans);
        background: var(--cream);
        color: var(--ink);
        font-size: 15px;
        line-height: 1.7;
        overflow-x: hidden;
      }
      a {
        color: var(--gold-dark);
        text-decoration: none;
        transition: 0.15s;
      }
      a:hover {
        color: var(--gold);
      }

      /* ── HERO ── */
      .page-hero {
        background: linear-gradient(150deg, var(--navy) 0%, #0a1520 50%, #0d1a0a 100%);
        padding: 140px 40px 80px;
        position: relative;
        overflow: hidden;
      }
      .page-hero-pat {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: repeating-linear-gradient(
          45deg,
          rgba(201, 169, 110, 0.03) 0,
          rgba(201, 169, 110, 0.03) 1px,
          transparent 0,
          transparent 50%
        );
        background-size: 28px 28px;
      }
      .page-hero-glow {
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201, 169, 110, 0.055) 0%, transparent 70%);
        top: -180px;
        right: -80px;
        pointer-events: none;
      }
      .page-hero-glow2 {
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(46, 107, 72, 0.06) 0%, transparent 70%);
        bottom: -60px;
        left: -60px;
        pointer-events: none;
      }
      .page-hero-inner {
        position: relative;
        z-index: 1;
        max-width: 860px;
        margin: 0 auto;
        text-align: center;
      }
      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(201, 169, 110, 0.1);
        border: 1px solid rgba(201, 169, 110, 0.25);
        color: var(--gold);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 7px 18px;
        border-radius: 30px;
        margin-bottom: 24px;
      }
      .hero-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
      }
      .page-hero h1 {
        font-family: var(--serif);
        font-size: clamp(42px, 6vw, 70px);
        font-weight: 600;
        color: #fff;
        line-height: 1.1;
        margin-bottom: 20px;
      }
      .page-hero h1 em {
        color: var(--gold);
        font-style: italic;
      }
      .page-hero-sub {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 300;
        max-width: 540px;
        margin: 0 auto 44px;
        line-height: 1.85;
      }

      /* quick contact chips */
      .hero-chips {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
      }
      .hero-chip {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 11px 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--r12);
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        transition: 0.2s;
        text-decoration: none;
      }
      .hero-chip:hover {
        background: rgba(201, 169, 110, 0.1);
        border-color: rgba(201, 169, 110, 0.3);
        color: var(--gold);
      }
      .hero-chip svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
      }

      /* ── CONTACT CARDS ROW ── */
      .cards-section {
        background: var(--white);
        border-bottom: 1px solid var(--fog);
        padding: 52px 40px;
      }
      .cards-inner {
        max-width: 1160px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }
      .contact-card {
        background: var(--cream);
        border: 1px solid var(--fog);
        border-radius: var(--r20);
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        transition: 0.22s;
        position: relative;
        overflow: hidden;
        cursor: default;
      }
      .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(
          90deg,
          var(--cc-color, var(--gold)),
          var(--cc-color2, var(--gold2))
        );
        transform: scaleX(0);
        transform-origin: left;
        transition: 0.3s;
      }
      .contact-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(13, 27, 46, 0.09);
        border-color: rgba(201, 169, 110, 0.2);
      }
      .contact-card:hover::before {
        transform: scaleX(1);
      }
      .cc-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .cc-icon svg {
        width: 21px;
        height: 21px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.8;
      }
      .cc-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--slate);
        margin-bottom: 2px;
      }
      .cc-title {
        font-family: var(--serif);
        font-size: 19px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 4px;
      }
      .cc-desc {
        font-size: 13px;
        color: var(--slate);
        line-height: 1.65;
        font-weight: 300;
        flex: 1;
      }
      .cc-action {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.15s;
        margin-top: auto;
        padding-top: 4px;
      }
      .cc-action svg {
        width: 13px;
        height: 13px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.5;
        transition: transform 0.15s;
      }
      .cc-action:hover svg {
        transform: translateX(3px);
      }
      .cc-rt {
        font-size: 11px;
        color: var(--slate);
        margin-top: 6px;
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .cc-rt svg {
        width: 12px;
        height: 12px;
        stroke: var(--slate);
        fill: none;
        stroke-width: 2;
      }

      /* ── MAIN LAYOUT ── */
      .contact-layout {
        max-width: 1160px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 420px;
        gap: 52px;
        padding: 60px 40px 80px;
        align-items: start;
      }

      /* ── CONTACT FORM ── */
      .form-section {
      }
      .form-heading {
        margin-bottom: 32px;
      }
      .section-eyebrow {
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold-dark);
        margin-bottom: 10px;
      }
      .section-title {
        font-family: var(--serif);
        font-size: clamp(28px, 3.5vw, 42px);
        font-weight: 600;
        color: var(--navy);
        line-height: 1.15;
      }
      .gold-line {
        width: 48px;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold2));
        border-radius: 2px;
        margin-top: 16px;
      }

      /* department tabs */
      .dept-tabs {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 28px;
      }
      .dept-tab {
        padding: 8px 16px;
        border-radius: 20px;
        border: 1.5px solid var(--fog);
        background: var(--white);
        font-family: var(--sans);
        font-size: 12.5px;
        font-weight: 500;
        color: var(--slate);
        cursor: pointer;
        transition: 0.15s;
      }
      .dept-tab:hover {
        border-color: var(--gold-dark);
        color: var(--gold-dark);
      }
      .dept-tab.active {
        border-color: var(--gold);
        background: var(--gold);
        color: var(--navy);
        font-weight: 600;
      }

      /* form */
      .contact-form {
        background: var(--white);
        border: 1px solid var(--fog);
        border-radius: var(--r20);
        padding: 36px 36px 32px;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 16px;
      }
      .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 16px;
      }
      .form-group:last-of-type {
        margin-bottom: 0;
      }
      .form-group label {
        font-size: 12px;
        font-weight: 600;
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .form-req {
        color: var(--gold-dark);
        margin-left: 2px;
      }
      .form-input {
        padding: 11px 14px;
        border: 1.5px solid var(--fog);
        border-radius: var(--r6);
        font-family: var(--sans);
        font-size: 14px;
        color: var(--ink);
        outline: none;
        transition: 0.2s;
        background: var(--cream);
        width: 100%;
      }
      .form-input:focus {
        border-color: var(--gold);
        background: var(--white);
        box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
      }
      .form-input::placeholder {
        color: var(--slate);
      }
      select.form-input {
        appearance: none;
        background: var(--cream)
          url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6' fill='none' stroke='%238899AA' stroke-width='1.5'/%3E%3C/svg%3E")
          no-repeat right 12px center;
        cursor: pointer;
      }
      textarea.form-input {
        min-height: 120px;
        resize: vertical;
        line-height: 1.6;
      }
      .form-attach {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        border: 1.5px dashed var(--fog);
        border-radius: var(--r6);
        cursor: pointer;
        transition: 0.2s;
        background: var(--cream);
      }
      .form-attach:hover {
        border-color: var(--gold);
        background: rgba(201, 169, 110, 0.04);
      }
      .form-attach svg {
        width: 18px;
        height: 18px;
        stroke: var(--slate);
        fill: none;
        stroke-width: 1.8;
        flex-shrink: 0;
      }
      .form-attach span {
        font-size: 13px;
        color: var(--slate);
        font-weight: 300;
      }
      .form-attach strong {
        color: var(--gold-dark);
        font-weight: 600;
      }
      .form-note {
        font-size: 12px;
        color: var(--slate);
        line-height: 1.65;
        margin-top: 10px;
      }
      .btn-submit {
        width: 100%;
        padding: 14px;
        background: var(--navy);
        color: #fff;
        border: none;
        border-radius: var(--r12);
        font-family: var(--sans);
        font-size: 14.5px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.25s;
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
      }
      .btn-submit svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .btn-submit:hover {
        background: var(--gold);
        color: var(--navy);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(13, 27, 46, 0.15);
      }

      /* success state */
      .form-success {
        display: none;
        text-align: center;
        padding: 48px 32px;
      }
      .form-success-icon {
        font-size: 52px;
        margin-bottom: 18px;
      }
      .form-success h3 {
        font-family: var(--serif);
        font-size: 24px;
        color: var(--navy);
        margin-bottom: 10px;
      }
      .form-success p {
        font-size: 14px;
        color: var(--slate);
        line-height: 1.75;
        font-weight: 300;
        max-width: 340px;
        margin: 0 auto 24px;
      }
      .btn-send-another {
        padding: 11px 24px;
        background: var(--sand);
        color: var(--navy);
        border: 1px solid var(--fog);
        border-radius: var(--r12);
        font-family: var(--sans);
        font-size: 13.5px;
        font-weight: 500;
        cursor: pointer;
        transition: 0.2s;
      }
      .btn-send-another:hover {
        background: var(--fog);
      }

      /* ── SIDEBAR ── */
      .contact-sidebar {
        display: flex;
        flex-direction: column;
        gap: 24px;
        position: sticky;
        top: 92px;
      }

      /* info card */
      .info-card {
        background: var(--white);
        border: 1px solid var(--fog);
        border-radius: var(--r20);
        padding: 26px 24px;
      }
      .info-card-title {
        font-family: var(--serif);
        font-size: 18px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 16px;
      }
      .info-row {
        display: flex;
        gap: 13px;
        align-items: flex-start;
        padding: 12px 0;
        border-bottom: 1px solid var(--fog);
      }
      .info-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }
      .info-icon {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: rgba(201, 169, 110, 0.1);
        margin-top: 1px;
      }
      .info-icon svg {
        width: 15px;
        height: 15px;
        stroke: var(--gold-dark);
        fill: none;
        stroke-width: 2;
      }
      .info-row-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        color: var(--slate);
        margin-bottom: 3px;
      }
      .info-row-val {
        font-size: 13.5px;
        color: var(--ink);
        font-weight: 400;
        line-height: 1.5;
      }
      .info-row-val a {
        color: var(--gold-dark);
      }
      .info-row-val small {
        font-size: 12px;
        color: var(--slate);
        display: block;
        margin-top: 1px;
      }

      /* office cards */
      .office-mini {
        background: var(--white);
        border: 1px solid var(--fog);
        border-radius: var(--r20);
        overflow: hidden;
      }
      .office-mini-head {
        padding: 16px 20px 12px;
        border-bottom: 1px solid var(--fog);
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .office-mini-flag {
        font-size: 22px;
        line-height: 1;
      }
      .office-mini-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
      }
      .office-mini-role {
        font-size: 11px;
        color: var(--slate);
        margin-top: 1px;
      }
      .office-mini-list {
        padding: 12px 20px 16px;
        display: flex;
        flex-direction: column;
        gap: 9px;
      }
      .office-mini-row {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        font-size: 13px;
        color: var(--slate);
      }
      .office-mini-row svg {
        width: 13px;
        height: 13px;
        stroke: var(--gold-dark);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
        margin-top: 2px;
      }
      .office-mini-row span {
        line-height: 1.5;
        font-weight: 300;
      }
      .office-mini-row a {
        color: var(--gold-dark);
        font-weight: 400;
      }

      /* social strip */
      .social-card {
        background: var(--navy);
        border-radius: var(--r20);
        padding: 22px 24px;
      }
      .social-card p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 14px;
        font-weight: 300;
      }
      .social-row {
        display: flex;
        gap: 10px;
      }
      .social-btn {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 9px 14px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--r6);
        font-family: var(--sans);
        font-size: 12.5px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        cursor: pointer;
        transition: 0.15s;
        text-decoration: none;
        flex: 1;
        justify-content: center;
      }
      .social-btn:hover {
        background: rgba(201, 169, 110, 0.12);
        border-color: rgba(201, 169, 110, 0.3);
        color: var(--gold);
      }
      .social-btn svg {
        width: 14px;
        height: 14px;
        fill: currentColor;
        flex-shrink: 0;
      }

      /* ── OFFICES ── */
      .offices-section {
        background: var(--sand);
        padding: 80px 40px;
      }
      .offices-inner {
        max-width: 1160px;
        margin: 0 auto;
      }
      .offices-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 16px;
      }
      .offices-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
      }
      .offices-grid-row2 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 18px;
        max-width: calc(75% + 9px);
      }
      .office-card {
        background: var(--white);
        border: 1px solid var(--fog);
        border-radius: var(--r20);
        overflow: hidden;
        transition: 0.22s;
      }
      .office-card:hover {
        box-shadow: 0 12px 40px rgba(13, 27, 46, 0.09);
        transform: translateY(-3px);
        border-color: rgba(201, 169, 110, 0.25);
      }
      .office-card-top {
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        position: relative;
      }
      .office-card-pat {
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(
          45deg,
          rgba(255, 255, 255, 0.04) 0,
          rgba(255, 255, 255, 0.04) 1px,
          transparent 0,
          transparent 50%
        );
        background-size: 18px 18px;
      }
      .office-card-body {
        padding: 18px 20px 22px;
      }
      .office-city {
        font-family: var(--serif);
        font-size: 19px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 3px;
      }
      .office-role {
        font-size: 11.5px;
        color: var(--gold-dark);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
      }
      .office-detail {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 7px;
        font-size: 13px;
        color: var(--slate);
        font-weight: 300;
      }
      .office-detail:last-child {
        margin-bottom: 0;
      }
      .office-detail svg {
        width: 13px;
        height: 13px;
        stroke: var(--gold-dark);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
        margin-top: 2px;
      }
      .office-detail a {
        color: var(--gold-dark);
      }

      /* ── FAQ CTA ── */
      .faq-cta {
        background: var(--cream);
        padding: 72px 40px;
      }
      .faq-cta-inner {
        max-width: 1160px;
        margin: 0 auto;
        background: linear-gradient(135deg, var(--navy) 0%, #162236 55%, #1a2c1a 100%);
        border-radius: var(--r20);
        padding: 64px 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 48px;
        position: relative;
        overflow: hidden;
      }
      .faq-cta-inner::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(
          45deg,
          rgba(201, 169, 110, 0.025) 0,
          rgba(201, 169, 110, 0.025) 1px,
          transparent 0,
          transparent 50%
        );
        background-size: 24px 24px;
        pointer-events: none;
      }
      .faq-cta-text {
        position: relative;
        z-index: 1;
      }
      .faq-cta-text h2 {
        font-family: var(--serif);
        font-size: clamp(26px, 3.5vw, 40px);
        font-weight: 600;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 10px;
      }
      .faq-cta-text h2 em {
        color: var(--gold);
        font-style: italic;
      }
      .faq-cta-text p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 300;
        max-width: 420px;
        line-height: 1.75;
      }
      .faq-cta-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
      }
      .btn-gold {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 26px;
        background: var(--gold);
        color: var(--navy);
        font-size: 14px;
        font-weight: 600;
        border-radius: var(--r12);
        border: none;
        cursor: pointer;
        transition: 0.2s;
        font-family: var(--sans);
        white-space: nowrap;
        text-decoration: none;
      }
      .btn-gold:hover {
        background: var(--gold2);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
        color: var(--navy);
      }
      .btn-gold svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .btn-outline-light {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 26px;
        background: transparent;
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        font-weight: 500;
        border-radius: var(--r12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: 0.2s;
        font-family: var(--sans);
        white-space: nowrap;
        text-decoration: none;
      }
      .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        border-color: rgba(255, 255, 255, 0.4);
      }

      /* ─── FOOTER ──────────────────────────────────────────────── */
      footer {
        background: var(--navy);
        padding: 72px 5% 0;
        border-top: 1px solid rgba(201, 169, 110, 0.12);
      }
      .footer-inner {
        max-width: 1240px;
        margin: 0 auto;
      }
      .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 56px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .footer-brand p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.4);
        line-height: 1.75;
        margin-top: 16px;
        font-weight: 300;
        max-width: 260px;
      }
      .footer-social {
        display: flex;
        gap: 10px;
        margin-top: 24px;
      }
      .social-btn {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.4);
        transition: all 0.15s;
        cursor: pointer;
      }
      .social-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
      }
      .social-btn svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .footer-col h5 {
        font-size: 11px;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.25);
        font-weight: 500;
        margin-bottom: 20px;
      }
      .footer-col a {
        display: block;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 11px;
        transition: color 0.15s;
        font-weight: 300;
      }
      .footer-col a:hover {
        color: rgba(255, 255, 255, 0.85);
      }
      .footer-bottom {
        padding: 24px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
      }
      .footer-bottom p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.25);
      }
      .footer-reg {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.2);
      }
      .footer-badges {
        display: flex;
        gap: 8px;
      }
      .fbadge {
        padding: 4px 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 5px;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.3);
        letter-spacing: 0.5px;
      }

      /* ── ANIMATIONS ── */
      .fade-up {
        opacity: 0;
        transform: translateY(22px);
        transition:
          opacity 0.65s ease,
          transform 0.65s ease;
      }
      .fade-up.visible {
        opacity: 1;
        transform: none;
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 1024px) {
        .contact-layout {
          grid-template-columns: 1fr;
        }
        .contact-sidebar {
          position: static;
        }
        .cards-inner {
          grid-template-columns: repeat(2, 1fr);
        }
        .offices-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .offices-grid-row2 {
          grid-template-columns: 1fr 1fr;
          max-width: 100%;
        }
        .faq-cta-inner {
          flex-direction: column;
          padding: 48px 40px;
        }
        .faq-cta-btns {
          flex-direction: row;
          flex-wrap: wrap;
        }
      }
      @media (max-width: 768px) {
        nav {
          padding: 0 20px;
        }
        .nav-links {
          display: none;
        }
        .page-hero {
          padding: 110px 24px 64px;
        }
        .cards-section {
          padding: 40px 24px;
        }
        .cards-inner {
          grid-template-columns: 1fr;
          gap: 14px;
        }
        .contact-layout {
          padding: 36px 24px 60px;
          gap: 36px;
        }
        .offices-section {
          padding: 56px 24px;
        }
        .offices-grid {
          grid-template-columns: 1fr;
        }
        .offices-grid-row2 {
          grid-template-columns: 1fr;
          max-width: 100%;
        }
        .faq-cta {
          padding: 48px 24px;
        }
        .faq-cta-inner {
          padding: 36px 28px;
        }
        .faq-cta-btns {
          flex-direction: column;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 28px;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
        .contact-form {
          padding: 24px 20px;
        }
        .social-row {
          flex-direction: column;
        }
      }
      @media (max-width: 480px) {
        .footer-top {
          grid-template-columns: 1fr;
        }
        .hero-chips {
          flex-direction: column;
          align-items: center;
        }
      }