/* Extracted from contact.html */
:root {
        --light-blue-bg: #EAF3FA;
        --navy-dark: #07132B;
        --navy-main: #0B2559;
        --brand-blue: #0A4FCC;
        --accent-main: #0A4FCC;
        --gray-text: #5A6A85;
        --white: #FFFFFF;
        --input-border: #DDE5ED;
    }
    
    body {
        background: var(--light-blue-bg);
        margin: 0;
        font-family: 'Inter', sans-serif;
        color: var(--navy-dark);
        overflow-x: hidden;
    }

    /* Fixed Background Graphics (Optional subtle overlay) */
    body::before {
        content: '';
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background-image: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.6) 0%, transparent 60%);
        pointer-events: none;
        z-index: 0;
    }

    .contact-page-wrapper {
        padding-top: 100px;
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 2rem;
        padding-right: 2rem;
        position: relative;
        z-index: 2;
    }

    /* Pill Menu Bar */
    .pill-nav-container {
        display: flex;
        justify-content: center;
        margin-bottom: 2.5rem;
        position: sticky;
        top: 80px;
        z-index: 900;
        margin-top: 1rem;
    }
    .pill-nav-inner {
        align-items: center;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border-radius: 50px;
        padding: 8px;
        display: flex;
        gap: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    }
    .pill-home-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        padding: 0 !important;
        margin-left: 4px;
    }
    .pill-home-btn:hover {
        background: #f8f9fa !important;
    }
    .pill-divider {
        width: 1px;
        height: 24px;
        background: rgba(11, 37, 89, 0.15);
        margin: 0 8px;
    }
    .pill-nav-inner a {
        white-space: nowrap;
        text-decoration: none;
        color: var(--navy-main);
        font-size: 0.9rem;
        font-weight: 500;
        padding: 10px 20px;
        border-radius: 30px;
        transition: all 0.3s ease;
    }
    .pill-nav-inner a:hover {
        background: rgba(255, 255, 255, 0.9);
    }

    /* Main Contact Card */
    .contact-card {
        background: var(--white);
        border-radius: 24px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        box-shadow: 0 15px 50px rgba(0,0,0,0.04);
        margin-bottom: 3rem;
        overflow: hidden;
    }

    /* Left Column */
    .c-left {
        padding: 4rem;
        position: relative;
    }
    .c-label {
        color: var(--navy-main);
        font-weight: 800;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        display: inline-block;
        background: rgba(11, 37, 89, 0.06);
        padding: 6px 14px;
        border-radius: 6px;
    }
    .c-left h1 {
        font-size: 2.8rem;
        line-height: 1.15;
        margin-top: 0;
        margin-bottom: 1.5rem;
        color: var(--navy-dark);
        font-weight: 800;
        max-width: 80%;
    }
    .c-left p.c-desc {
        font-size: 1.1rem;
        color: var(--navy-main);
        margin-bottom: 3rem;
        line-height: 1.6;
        max-width: 65%;
        position: relative;
        z-index: 2;
    }
    .c-hero-image {
        position: absolute;
        top: 3rem;
        right: -100px;
        width: 320px;
        pointer-events: none;
        z-index: 10;
    }
    .c-hero-image img {
        width: 100%;
        height: auto;
    }

    hr.c-divider {
        border: 0;
        height: 1px;
        background: rgba(0,0,0,0.05);
        margin: 3rem 0;
    }

    .c-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .cf-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .cf-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--light-blue-bg);
        color: var(--brand-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }
    .cf-icon svg {
        width: 18px;
        height: 18px;
    }
    .cf-item h3,
    .cf-item h4 {
        margin: 0 0 5px 0;
        font-size: 0.95rem;
        color: var(--navy-dark);
        font-weight: 800;
    }
    .cf-item p {
        margin: 0;
        font-size: 0.8rem;
        color: var(--gray-text);
        line-height: 1.4;
    }

    /* Right Column (Form) */
    .c-right {
        padding: 4rem;
        background: rgba(234, 243, 250, 0.2);
        border-left: 1px solid rgba(0,0,0,0.03);
    }
    .c-right h2 {
        font-size: 1.6rem;
        color: var(--navy-dark);
        margin: 0 0 2rem 0;
        font-weight: 800;
    }
    .c-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .form-row {
        display: flex;
        gap: 1.5rem;
    }
    .form-group {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .form-group label {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--navy-dark);
        margin-bottom: 8px;
    }
    .form-control {
        background: var(--white);
        border: 1px solid var(--input-border);
        border-radius: 8px;
        padding: 14px 16px;
        font-family: inherit;
        font-size: 0.95rem;
        color: var(--navy-dark);
        transition: all 0.2s;
    }
    .form-control::placeholder {
        color: #A0B0C0;
    }
    .form-control:focus {
        outline: none;
        border-color: var(--brand-blue);
        box-shadow: 0 0 0 4px rgba(10, 79, 204, 0.1);
    }
    textarea.form-control {
        resize: vertical;
        min-height: 120px;
    }
    select.form-control {
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B2559' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 16px;
        padding-right: 40px;
    }

    .form-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-top: 0.5rem;
    }
    .form-checkbox input[type="checkbox"] {
        margin-top: 3px;
        width: 16px;
        height: 16px;
        accent-color: var(--brand-blue);
    }
    .form-checkbox label {
        font-size: 0.8rem;
        color: var(--gray-text);
        line-height: 1.4;
        font-weight: 400;
        margin: 0;
    }
    .form-checkbox label a {
        color: var(--navy-main);
        text-decoration: underline;
    }

    .btn-submit {
        background: var(--navy-dark);
        color: var(--white);
        border: none;
        padding: 16px 32px;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s;
        margin-top: 0.5rem;
        align-self: flex-start;
    }
    .btn-submit:hover {
        background: #040914;
        transform: translateY(-2px);
    }

    .secure-note {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-top: 1.5rem;
    }
    .secure-note svg {
        width: 18px;
        height: 18px;
        color: var(--gray-text);
        flex-shrink: 0;
        margin-top: 2px;
    }
    .secure-note p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--gray-text);
        line-height: 1.5;
    }
    .secure-note a {
        color: var(--navy-main);
        text-decoration: underline;
    }

    /* Newsletter Banner */
    .newsletter-banner {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        padding: 2.5rem 3rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4rem;
        border: 1px solid rgba(255,255,255,0.8);
        box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    }
    .nl-left {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    .nl-icon {
        width: 48px;
        height: 48px;
        background: var(--white);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-blue);
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    .nl-icon svg {
        width: 24px;
        height: 24px;
    }
    .nl-text h3 {
        margin: 0 0 5px 0;
        font-size: 1.1rem;
        color: var(--navy-dark);
        font-weight: 800;
    }
    .nl-text p {
        margin: 0;
        font-size: 0.85rem;
        color: var(--gray-text);
    }
    
    .nl-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .nl-form {
        display: flex;
        gap: 0;
        background: var(--white);
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid var(--input-border);
        box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        width: 400px;
        margin-bottom: 0.8rem;
    }
    .nl-form input {
        flex: 1;
        border: none;
        padding: 14px 20px;
        font-size: 0.95rem;
        outline: none;
    }
    .nl-form button {
        background: var(--navy-dark);
        color: var(--white);
        border: none;
        padding: 0 24px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
    }
    .nl-form button:hover {
        background: #040914;
    }
    .nl-spam {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.75rem;
        color: var(--gray-text);
    }
    .nl-spam svg {
        width: 12px;
        height: 12px;
    }

    @media (max-width: 1200px) {
        .c-left, .c-right { padding: 3rem; }
        .c-hero-image { position: relative; top: 0; width: 100%; max-width: 300px; margin: 2rem auto; display: block; }
        .nl-form { width: 300px; }
    }
    @media (max-width: 992px) {
        .contact-card { grid-template-columns: 1fr; }
        .c-right { border-left: none; border-top: 1px solid rgba(0,0,0,0.05); }
        .newsletter-banner { flex-direction: column; gap: 2rem; align-items: stretch; text-align: center; }
        .nl-left { flex-direction: column; }
        .nl-right { align-items: center; }
        .nl-form { width: 100%; max-width: 400px; flex-direction: column; gap: 10px; background: transparent; border: none; box-shadow: none; }
        .nl-form input { border-radius: 8px; border: 1px solid var(--input-border); width: 100%; }
        .nl-form button { border-radius: 8px; padding: 14px; width: 100%; }
    }
    @media (max-width: 768px) {
        .c-left, .c-right { padding: 2rem; }
        .c-features { grid-template-columns: 1fr; }
        .form-row { flex-direction: column; gap: 1.5rem; }
        .pill-nav-container { justify-content: flex-start; overflow-x: auto; padding-bottom: 5px; -ms-overflow-style: none; scrollbar-width: none; }
        .pill-nav-container::-webkit-scrollbar { display: none; }
        .pill-nav-inner { flex-wrap: nowrap; justify-content: flex-start; width: max-content; padding-right: 20px; }
        .contact-page-wrapper { padding-left: 1rem; padding-right: 1rem; }
        .btn-submit { width: 100%; }
        .c-left h1 { font-size: 2.2rem; }
    }

@media (max-width: 768px) { .pill-nav-container { position: relative !important; top: auto !important; margin-bottom: 1rem !important; } }
