.contact-section {
        padding: 10rem 2rem 6rem;
        min-height: 80vh;
        background: radial-gradient(circle at 50% 10%, rgba(191, 90, 242, 0.03) 0%, transparent 60%),
            repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.005) 0px, rgba(255, 255, 255, 0.005) 1px, transparent 1px, transparent 30px),
            repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.005) 0px, rgba(255, 255, 255, 0.005) 1px, transparent 1px, transparent 30px);
    }

    .contact-container {
        display: flex;
        gap: 6rem;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
    }

    .contact-left {
        flex: 1;
    }

    .contact-right {
        flex: 1.5;
    }

    .contact-heading {
        font-family: var(--font-heading);
        font-size: clamp(2.8rem, 5vw, 4.2rem);
        margin-bottom: 2rem;
        text-transform: uppercase;
        line-height: 1.05;
        letter-spacing: 1px;
        color: #fff;
    }

    .contact-desc {
        color: var(--text-secondary);
        font-size: 1.1rem;
        margin-bottom: 3rem;
        line-height: 1.8;
    }

    /* Sleek Contact Info Cards */
    .contact-info-card {
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.75rem 2rem;
        background: rgba(255, 255, 255, 0.01);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        margin-bottom: 1.5rem;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .contact-info-card:hover {
        border-color: rgba(191, 90, 242, 0.25);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(191, 90, 242, 0.04);
    }

    .contact-info-icon {
        color: #bf5af2;
        background: rgba(191, 90, 242, 0.08);
        padding: 12px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(191, 90, 242, 0.15);
        transition: all 0.3s ease;
    }

    .contact-info-card:hover .contact-info-icon {
        background: rgba(191, 90, 242, 0.15);
        border-color: #bf5af2;
        color: #fff;
        box-shadow: 0 0 15px rgba(191, 90, 242, 0.15);
    }

    .contact-info-details h3 {
        font-family: var(--font-heading);
        font-size: 0.95rem;
        text-transform: uppercase;
        margin-bottom: 0.35rem;
        letter-spacing: 0.5px;
        color: #fff;
    }

    .contact-info-details span {
        color: var(--text-secondary);
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Contact Form Panel */
    .contact-form-panel {
        background: rgba(255, 255, 255, 0.01);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 3.5rem;
        border-radius: 28px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        position: relative;
        overflow: hidden;
    }

    .contact-form-panel::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    }

    .form-row {
        display: flex;
        gap: 2rem;
        margin-bottom: 1.75rem;
    }

    .form-group {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        font-family: var(--font-heading);
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.65rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
        background: rgba(255, 255, 255, 0.01);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 1rem 1.25rem;
        color: var(--text-primary);
        font-family: var(--font-body);
        font-size: 1rem;
        outline: none;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: rgba(191, 90, 242, 0.4);
        background: rgba(191, 90, 242, 0.02);
        box-shadow: 0 0 20px rgba(191, 90, 242, 0.08);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 160px;
    }

    .services-group {
        margin-bottom: 2.25rem;
    }

    .services-group>label {
        display: block;
        font-family: var(--font-heading);
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1.25rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .checkbox-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .checkbox-grid .span-2 {
        grid-column: span 2;
    }

    /* Premium Checkbox Select Pill cards */
    .checkbox-label {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        font-size: 0.95rem;
        cursor: pointer;
        padding: 1rem 1.25rem;
        background: rgba(255, 255, 255, 0.01);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        user-select: none;
        word-break: break-word;
    }

    .checkbox-label:hover {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.15);
    }

    /* Use modern :has selector for checkbox check state */
    .checkbox-label:has(input[type="checkbox"]:checked) {
        border-color: rgba(191, 90, 242, 0.45);
        background: rgba(191, 90, 242, 0.06);
        box-shadow: 0 4px 15px rgba(191, 90, 242, 0.04);
        color: #fff;
    }

    .checkbox-label input[type="checkbox"] {
        appearance: none;
        background-color: transparent;
        margin: 0;
        font: inherit;
        color: currentColor;
        width: 1.2em;
        height: 1.2em;
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        border-radius: 4px;
        display: grid;
        place-content: center;
        cursor: pointer;
        flex-shrink: 0;
        transition: all 0.2s ease;
    }

    .checkbox-label input[type="checkbox"]::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em #bf5af2;
        transform-origin: center;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    }

    .checkbox-label input[type="checkbox"]:checked::before {
        transform: scale(1);
    }

    .checkbox-label input[type="checkbox"]:checked {
        border-color: #bf5af2;
    }

    .submit-btn {
        background-color: #bf5af2;
        color: #000;
        padding: 1rem 3rem;
        border-radius: 12px;
        border: none;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        min-width: 180px;
        justify-content: center;
    }

    .submit-btn:hover {
        color: #fff;
        background-color: #c97bf5;
        box-shadow: 0 8px 25px rgba(191, 90, 242, 0.3), 0 0 15px rgba(191, 90, 242, 0.15);
        transform: translateY(-2px);
    }

    .submit-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    /* ── Spinner animation ── */
    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .spin {
        animation: spin 0.8s linear infinite;
    }

    .char-counter {
        font-size: 0.75rem;
        color: var(--text-secondary);
        text-align: right;
        margin-top: 0.5rem;
        font-family: var(--font-body);
        opacity: 0.8;
    }

    /* ── Form feedback overlay ── */
    .form-feedback-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 9999;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .form-feedback-overlay.active {
        display: flex;
        opacity: 1;
    }

    .form-feedback-box {
        background: rgba(10, 10, 12, 0.95);
        border: 1px solid rgba(191, 90, 242, 0.25);
        border-radius: 24px;
        padding: 3.5rem;
        max-width: 480px;
        width: 90%;
        text-align: center;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(191, 90, 242, 0.08);
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }

    .form-feedback-overlay.active .form-feedback-box {
        transform: translateY(0);
    }

    .form-feedback-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

    .form-feedback-icon.success {
        background: rgba(80, 220, 140, 0.12);
        color: #50dc8c;
        border: 1px solid rgba(80, 220, 140, 0.25);
    }

    .form-feedback-icon.error {
        background: rgba(255, 80, 80, 0.12);
        color: #ff5050;
        border: 1px solid rgba(255, 80, 80, 0.25);
    }

    .form-feedback-box h3 {
        font-family: var(--font-heading);
        font-size: 1.6rem;
        color: #fff;
        margin-bottom: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .form-feedback-box p {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .form-feedback-close {
        background: #bf5af2;
        color: #000;
        border: none;
        padding: 0.8rem 2.5rem;
        border-radius: 12px;
        font-family: var(--font-heading);
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    }

    .form-feedback-close:hover {
        color: #fff;
        background-color: #c97bf5;
        box-shadow: 0 4px 15px rgba(191, 90, 242, 0.2);
    }

    /* honeypot — hide from humans */
    .hp-field {
        display: none !important;
    }

    @media (max-width: 900px) {
        .contact-section {
            padding: 8rem 1.5rem 4rem;
        }

        .contact-container {
            flex-direction: column;
            gap: 3rem;
        }

        .form-row {
            flex-direction: column;
            gap: 1.5rem;
        }

        .checkbox-grid {
            grid-template-columns: 1fr;
        }

        .checkbox-grid .span-2 {
            grid-column: auto;
        }

        .contact-desc {
            margin-bottom: 2rem;
        }

        .contact-form-panel {
            padding: 2.5rem 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .contact-section {
            padding: 6rem 1rem 3rem;
        }

        .contact-form-panel {
            padding: 2rem 1rem;
        }

        .checkbox-label {
            padding: 0.85rem 1rem;
            font-size: 0.9rem;
        }
    }

    /* ── intl-tel-input: dark theme overrides ── */
    .iti {
        width: 100%;
    }

    .iti__tel-input {
        width: 100% !important;
        background: rgba(255, 255, 255, 0.01) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 12px !important;
        padding: 1rem 1.25rem 1rem 3.5rem !important;
        color: var(--text-primary) !important;
        font-family: var(--font-body) !important;
        font-size: 1rem !important;
        outline: none !important;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .iti__tel-input:focus {
        border-color: rgba(191, 90, 242, 0.4) !important;
        background: rgba(191, 90, 242, 0.02) !important;
        box-shadow: 0 0 20px rgba(191, 90, 242, 0.08) !important;
    }

    .iti__flag-container {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        padding: 0 0.6rem;
    }

    .iti__selected-flag {
        display: flex;
        align-items: center;
        gap: 4px;
        cursor: pointer;
        padding: 0 0.5rem;
        border-radius: 12px 0 0 12px;
        height: 100%;
        background: transparent;
        border: none;
        color: var(--text-primary);
    }

    .iti__selected-flag:hover,
    .iti__selected-flag:focus {
        background: rgba(255, 255, 255, 0.06);
        outline: none;
    }

    .iti__arrow {
        border-top-color: rgba(255, 255, 255, 0.5);
    }

    .iti__dropdown-content {
        background: #101012 !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 16px !important;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 20px rgba(191, 90, 242, 0.05) !important;
        padding: 0.5rem !important;
        margin-top: 6px !important;
    }

    .iti__country-list {
        color: var(--text-primary);
        max-height: 280px;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(191, 90, 242, 0.3) transparent;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .iti__search-input {
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 8px !important;
        color: var(--text-primary) !important;
        font-family: var(--font-body) !important;
        font-size: 0.85rem !important;
        padding: 0.6rem 0.8rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        outline: none !important;
        margin-bottom: 0.5rem !important;
    }

    .iti__search-input:focus {
        border-color: #bf5af2 !important;
    }

    .iti__search-input::placeholder {
        color: rgba(255, 255, 255, 0.25);
    }

    .iti__country {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.6rem 0.8rem;
        border-radius: 8px;
        cursor: pointer;
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.15s ease;
    }

    .iti__country:hover,
    .iti__country.iti__highlight {
        background: rgba(191, 90, 242, 0.1);
        color: #fff;
    }

    .iti__country-name {
        flex: 1;
    }

    .iti__dial-code {
        color: rgba(255, 255, 255, 0.35);
        font-size: 0.8rem;
    }

    .iti__divider {
        border-color: rgba(255, 255, 255, 0.08);
        margin: 0.4rem 0;
    }

    .iti__no-results {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.35);
        padding: 0.8rem;
        text-align: center;
    }
