        /* ── Tokens ── */
        :root {
            --uw-blue: #1a73e8;
            --uw-blue-light: #e8f0fe;
            --uw-green: #0f9d58;
            --uw-green-light: #e6f4ea;
            --uw-coral: #d85a30;
            --uw-coral-light: #fce8e6;
            --uw-dark: #0d1117;
            --uw-text: #1c1c1e;
            --uw-muted: #6e7a8a;
            --uw-border: #e4e7ec;
            --uw-bg: #f7f8fc;
            --uw-white: #ffffff;
            --uw-radius: 16px;
            --uw-radius-sm: 10px;
            font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
        }

        /* ── Hero ── */
        .uw-contact-hero {
            position: relative;
            background: var(--uw-dark);
            padding: 120px 0 90px;
            overflow: hidden;
            text-align: center;
        }

        .uw-contact-hero__bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 60% at 50% 0%, #1a2e4a 0%, #0d1117 70%);
        }

        .uw-contact-hero__inner {
            position: relative;
            z-index: 2;
        }

        .uw-contact-hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(26, 115, 232, 0.15);
            border: 1px solid rgba(26, 115, 232, 0.3);
            color: #7baef5;
            padding: 7px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.3px;
            margin-bottom: 24px;
        }

        .uw-dot {
            width: 7px;
            height: 7px;
            background: #1a73e8;
            border-radius: 50%;
            display: inline-block;
            animation: uwPulse 2s ease-in-out infinite;
        }

        @keyframes uwPulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: .6;
                transform: scale(1.3);
            }
        }

        .uw-contact-hero__title {
            font-size: clamp(2.8rem, 6vw, 5rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.1;
            margin: 0 0 20px;
            letter-spacing: -0.02em;
        }

        .uw-highlight {
            color: #1a73e8;
            position: relative;
        }

        .uw-contact-hero__sub {
            font-size: 1.1rem;
            color: #9aabbf;
            max-width: 540px;
            margin: 0 auto 32px;
            line-height: 1.7;
        }

        .uw-breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #6e7a8a;
        }

        .uw-breadcrumb a {
            color: #9aabbf;
            text-decoration: none;
            transition: color .2s;
        }

        .uw-breadcrumb a:hover {
            color: #fff;
        }

        .uw-breadcrumb span {
            color: #4a5568;
            font-size: 11px;
        }

        .uw-breadcrumb span:last-child {
            color: #9aabbf;
        }

        /* Shapes */
        .uw-contact-hero__shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .uw-shape {
            position: absolute;
            border-radius: 50%;
            opacity: .05;
            background: #1a73e8;
        }

        .uw-shape--1 {
            width: 500px;
            height: 500px;
            top: -200px;
            right: -100px;
        }

        .uw-shape--2 {
            width: 300px;
            height: 300px;
            bottom: -80px;
            left: -60px;
        }

        .uw-shape--3 {
            width: 150px;
            height: 150px;
            top: 40%;
            left: 20%;
            opacity: .03;
        }

        /* ── Info Strip ── */
        .uw-info-strip {
            background: var(--uw-bg);
            padding: 0;
            margin-top: -1px;
        }

        .uw-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border: 1px solid var(--uw-border);
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 4px 40px rgba(0, 0, 0, .06);
            transform: translateY(-50px);
            background: #fff;
            border-radius: var(--uw-radius);
        }

        .uw-info-card {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 32px 28px;
            border-right: 1px solid var(--uw-border);
            background: #fff;
            transition: background .25s;
        }

        .uw-info-card:last-child {
            border-right: none;
        }

        .uw-info-card:hover {
            background: var(--uw-bg);
        }

        .uw-info-icon {
            width: 54px;
            height: 54px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .uw-info-card--blue .uw-info-icon {
            background: var(--uw-blue-light);
            color: var(--uw-blue);
        }

        .uw-info-card--green .uw-info-icon {
            background: var(--uw-green-light);
            color: var(--uw-green);
        }

        .uw-info-card--coral .uw-info-icon {
            background: var(--uw-coral-light);
            color: var(--uw-coral);
        }

        .uw-info-body h3 {
            font-size: 15px;
            font-weight: 600;
            color: var(--uw-text);
            margin: 0 0 6px;
        }

        .uw-info-body p,
        .uw-info-body a {
            font-size: 14px;
            color: var(--uw-muted);
            text-decoration: none;
            display: block;
            line-height: 1.7;
        }

        .uw-info-body a:hover {
            color: var(--uw-blue);
        }

        /* ── Main Section ── */
        .uw-contact-main {
            background: var(--uw-bg);
            padding: 20px 0 100px;
        }

        .uw-contact-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            align-items: start;
        }

        /* ── Form Wrap ── */
        .uw-form-wrap {
            background: #fff;
            border-radius: var(--uw-radius);
            border: 1px solid var(--uw-border);
            padding: 44px 44px 48px;
        }

        .uw-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--uw-blue);
            display: block;
            margin-bottom: 10px;
        }

        .uw-form-header h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--uw-text);
            margin: 0 0 10px;
            line-height: 1.2;
        }

        .uw-form-header p {
            font-size: 14.5px;
            color: var(--uw-muted);
            margin: 0 0 36px;
            line-height: 1.7;
        }

        .uw-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .uw-form-group label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: var(--uw-text);
            margin-bottom: 8px;
        }

        .uw-form-group input,
        .uw-form-group textarea,
        .uw-form-group select {
            width: 100%;
            box-sizing: border-box;
            padding: 13px 16px;
            border: 1.5px solid var(--uw-border);
            border-radius: var(--uw-radius-sm);
            font-size: 14px;
            color: var(--uw-text);
            background: #fff;
            outline: none;
            transition: border-color .2s, box-shadow .2s;
            font-family: inherit;
            -webkit-appearance: none;
        }

        .uw-form-group input:focus,
        .uw-form-group textarea:focus,
        .uw-form-group select:focus {
            border-color: var(--uw-blue);
            box-shadow: 0 0 0 3px rgba(26, 115, 232, .1);
        }

        .uw-form-group textarea {
            resize: vertical;
            min-height: 130px;
        }

        .uw-form-group--full {
            margin-bottom: 28px;
        }

        .uw-select-wrap {
            position: relative;
        }

        .uw-select-wrap select {
            padding-right: 40px;
            cursor: pointer;
        }

        .uw-select-wrap i {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--uw-muted);
            pointer-events: none;
            font-size: 14px;
        }

        .uw-submit-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--uw-blue);
            color: #fff;
            border: none;
            cursor: pointer;
            padding: 15px 36px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            font-family: inherit;
            transition: background .2s, transform .15s, box-shadow .2s;
            box-shadow: 0 6px 24px rgba(26, 115, 232, .3);
        }

        .uw-submit-btn:hover {
            background: #1557b0;
            transform: translateY(-1px);
            box-shadow: 0 10px 30px rgba(26, 115, 232, .35);
        }

        .uw-submit-btn:active {
            transform: translateY(0);
        }

        .uw-submit-btn i {
            font-size: 17px;
        }

        /* ── Map Wrap ── */
        .uw-map-wrap {
            position: sticky;
            top: 100px;
        }

        .uw-map-header {
            background: #fff;
            border-radius: var(--uw-radius);
            border: 1px solid var(--uw-border);
            padding: 36px 36px 32px;
            margin-bottom: 20px;
        }

        .uw-map-header h2 {
            font-size: 1.65rem;
            font-weight: 700;
            color: var(--uw-text);
            margin: 0 0 10px;
            line-height: 1.2;
        }

        .uw-map-header p {
            font-size: 14px;
            color: var(--uw-muted);
            margin: 0 0 22px;
            line-height: 1.7;
        }

        .uw-office-badge {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--uw-bg);
            border: 1px solid var(--uw-border);
            border-radius: var(--uw-radius-sm);
            padding: 14px 18px;
        }

        .uw-office-badge i {
            font-size: 22px;
            color: var(--uw-blue);
            flex-shrink: 0;
        }

        .uw-office-badge strong {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--uw-text);
            margin-bottom: 2px;
        }

        .uw-office-badge span {
            font-size: 13px;
            color: var(--uw-muted);
        }

        .uw-map-frame {
            border-radius: var(--uw-radius);
            overflow: hidden;
            border: 1px solid var(--uw-border);
            box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
        }

        .uw-map-frame iframe {
            width: 100%;
            height: 340px;
            display: block;
            border: none;
        }

        /* ── Responsive ── */
        @media (max-width: 992px) {
            .uw-contact-grid {
                grid-template-columns: 1fr;
            }

            .uw-map-wrap {
                position: static;
            }

            .uw-info-grid {
                grid-template-columns: 1fr;
                transform: translateY(-30px);
            }

            .uw-info-card {
                border-right: none;
                border-bottom: 1px solid var(--uw-border);
            }

            .uw-info-card:last-child {
                border-bottom: none;
            }
        }

        @media (max-width: 640px) {
            .uw-form-wrap {
                padding: 28px 22px 32px;
            }

            .uw-form-row {
                grid-template-columns: 1fr;
            }

            .uw-contact-hero {
                padding: 90px 0 70px;
            }

            .uw-map-header {
                padding: 24px 22px;
            }
        }
  