/* ==========================================================================
   contact-v2.css — New contact page design
   ========================================================================== */

/* ── Page base ─────────────────────────────────────── */
.cv2-page {
    background: #080d1a;
    color: #e2e8f0;
}

/* ── Layout: side-by-side, full-height ─────────────── */
.cv2-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* ══════════════════════════════════════════════════════
   LEFT COLUMN — intro + contact info
   ══════════════════════════════════════════════════════ */

.cv2-aside {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 64px 64px;
    background: linear-gradient(145deg, #0a0f1e 0%, #0e1628 55%, #140b26 100%);
    overflow: hidden;
    border-right: 1px solid rgba(114, 127, 222, 0.12);
}

/* Dot-grid texture */
.cv2-aside::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(114, 127, 222, 0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Top-right radial glow */
.cv2-aside::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(114, 127, 222, 0.14) 0%, transparent 65%);
    pointer-events: none;
}

.cv2-aside-inner {
    position: relative;
    z-index: 1;
}

/* Label */
.cv2-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #727fde;
    margin-bottom: 1.6rem;
}

/* Headline */
.cv2-headline {
    font-size: clamp(2.4rem, 3.6vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1.4rem;
}

.cv2-headline em {
    font-style: italic;
    background: linear-gradient(90deg, #a78bfa, #727fde, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.cv2-sub {
    font-size: 0.95rem;
    color: rgba(232, 227, 239, 0.887);
    line-height: 1.7;
    max-width: 340px;
    margin-bottom: 3rem;
}

/* Contact info list */
.cv2-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-bottom: 2.6rem;
}

.cv2-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cv2-info-num {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #727fde;
    min-width: 22px;
    padding-top: 3px;
}

.cv2-info-list div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cv2-info-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.35);
}

.cv2-info-value {
    font-size: 0.9rem;
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.25s ease;
}

.cv2-info-value:hover {
    color: #a78bfa;
}

/* Social icons */
.cv2-social {
    display: flex;
    gap: 18px;
}

.cv2-social a {
    color: rgba(226, 232, 240, 0.4);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.cv2-social a:hover {
    color: #727fde;
    transform: translateY(-2px);
}

/* Ghost word */
.cv2-ghost {
    position: absolute;
    bottom: -30px;
    right: -10px;
    font-size: 160px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.025);
    letter-spacing: -6px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}


/* ══════════════════════════════════════════════════════
   RIGHT COLUMN — form
   ══════════════════════════════════════════════════════ */

.cv2-form-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 64px 80px;
    background: #080d1a;
    overflow-y: auto;
}

.cv2-form {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

/* ── Field rows ── */
.cv2-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.cv2-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cv2-field-full {
    grid-column: 1 / -1;
}

.cv2-field label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.45);
}

.cv2-field input,
.cv2-field textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(114, 127, 222, 0.2);
    border-radius: 8px;
    padding: 14px 16px;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-family: "Merriweather", serif;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    resize: none;
}

.cv2-field input::placeholder,
.cv2-field textarea::placeholder {
    color: rgba(226, 232, 240, 0.2);
}

.cv2-field input:focus,
.cv2-field textarea:focus {
    border-color: #727fde;
    background: rgba(114, 127, 222, 0.07);
    box-shadow: 0 0 0 3px rgba(114, 127, 222, 0.12);
}

/* ── Service interest pills ── */
.cv2-fieldset {
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cv2-fieldset legend {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.45);
    margin-bottom: 0.4rem;
}

.cv2-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.cv2-pill {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
}

.cv2-pill input[type="checkbox"] {
    display: none;
}

.cv2-pill {
    padding: 7px 16px;
    border: 1px solid rgba(114, 127, 222, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: rgba(226, 232, 240, 0.6);
    background: transparent;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    user-select: none;
}

.cv2-pill:hover {
    border-color: #727fde;
    color: #e2e8f0;
}

.cv2-pill:has(input:checked) {
    background: rgba(114, 127, 222, 0.18);
    border-color: #727fde;
    color: #a78bfa;
}

/* ── Submit row ── */
.cv2-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.cv2-disclaimer {
    font-size: 0.7rem;
    color: rgba(226, 232, 240, 0.3);
    line-height: 1.5;
    max-width: 200px;
}

.cv2-submit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #727fde, #a78bfa);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-family: "Merriweather", serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    white-space: nowrap;
}

.cv2-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(114, 127, 222, 0.4);
}

.cv2-submit:active {
    transform: translateY(0);
}

.cv2-submit i {
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}

.cv2-submit:hover i {
    transform: translateX(4px);
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
    .cv2-aside {
        padding: 120px 48px 64px;
    }
    .cv2-form-section {
        padding: 120px 48px 80px;
    }
}

@media (max-width: 900px) {
    .cv2-main {
        grid-template-columns: 1fr;
    }

    .cv2-aside {
        position: relative;
        height: auto;
        min-height: 0;
        padding: 120px 32px 60px;
        border-right: none;
        border-bottom: 1px solid rgba(114, 127, 222, 0.12);
    }

    .cv2-ghost {
        font-size: 120px;
        bottom: -20px;
    }

    .cv2-form-section {
        padding: 60px 32px 80px;
    }
}

@media (max-width: 640px) {
    .cv2-aside {
        padding: 110px 24px 48px;
    }

    .cv2-form-section {
        padding: 48px 24px 64px;
    }

    .cv2-row {
        grid-template-columns: 1fr;
    }

    .cv2-submit-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cv2-submit {
        width: 100%;
        justify-content: center;
    }

    .cv2-disclaimer {
        max-width: 100%;
    }

    .cv2-ghost {
        font-size: 80px;
    }
}
