/* =========================================================
   AAA LED — Contact Page
   Matches the dark neon pink/purple/violet theme used on the
   home and about pages.
========================================================= */

:root {
    --bg-dark: #0a0a12;
    --bg-dark-2: #11101c;
    --neon-pink: #ff2e88;
    --neon-purple: #8b2fff;
    --neon-violet: #b46bff;
    --text-light: #f4f2f8;
    --text-muted: #a7a3b8;
    --border-glow: rgba(180, 107, 255, 0.35);
    --radius-lg: 20px;
    --radius-md: 14px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
    margin-bottom: 24px;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--border-glow);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .3s var(--ease);
}

.breadcrumb a:hover {
    color: var(--neon-pink);
}

.breadcrumb li[aria-current="page"] {
    color: var(--neon-violet);
}

/* ---------- Contact hero ---------- */
.contact-hero {
    position: relative;
    background: var(--bg-dark);
    padding: 140px 0 100px;
    overflow: hidden;
    text-align: center;
}

.contact-hero__glow {
    position: absolute;
    top: -240px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 46, 136, .16), transparent 70%);
    pointer-events: none;
    animation: contactGlowPulse 8s ease-in-out infinite;
}

@keyframes contactGlowPulse {
    0%, 100% { opacity: .6; }
    50% { opacity: 1; }
}

.contact-hero__inner {
    position: relative;
    max-width: 820px;
}

.contact-hero__eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--neon-violet);
    margin-bottom: 16px;
}

.contact-hero__title {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin: 0 0 20px;
}

.contact-hero__text {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- Contact section ---------- */
.contact-section {
    background: var(--bg-dark-2);
    padding: 110px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ---------- Info panel ---------- */
.contact-info__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 32px;
}

.contact-info__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info__list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(180, 107, 255, .12);
}

.contact-info__list li:last-child {
    border-bottom: 0;
}

.contact-info__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    color: var(--neon-violet);
    background: linear-gradient(135deg, rgba(139, 47, 255, .18), rgba(255, 46, 136, .18));
    border: 1px solid var(--border-glow);
}

.contact-info__list h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 6px;
}

.contact-info__list p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

.contact-info__list a {
    color: var(--neon-violet);
    text-decoration: none;
    transition: color .3s var(--ease);
}

.contact-info__list a:hover {
    color: var(--neon-pink);
}

/* ---------- Form ---------- */
.contact-form-wrap {
    background: linear-gradient(160deg, #171627, #13121f);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

@media (max-width: 560px) {
    .contact-form-wrap {
        padding: 28px 22px;
    }
}

.contact-alert {
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-alert--success {
    color: #6ef3c0;
    background: rgba(52, 211, 153, .12);
    border: 1px solid rgba(52, 211, 153, .35);
}

.contact-alert--error {
    color: #ff9db8;
    background: rgba(255, 46, 136, .12);
    border: 1px solid rgba(255, 46, 136, .35);
}

.contact-form__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 28px;
}

.contact-form__field {
    margin-bottom: 22px;
}

.contact-form__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-form__input {
    width: 100%;
    padding: 13px 16px;
    font-size: 15px;
    color: var(--text-light);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(180, 107, 255, .25);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.contact-form__input::placeholder {
    color: rgba(167, 163, 184, .55);
}

.contact-form__input:focus {
    border-color: var(--neon-violet);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 0 0 3px rgba(180, 107, 255, .18);
}

.contact-form__input--error {
    border-color: var(--neon-pink);
    box-shadow: 0 0 0 3px rgba(255, 46, 136, .15);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.contact-form__error {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--neon-pink);
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 28px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
    border: 0;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s var(--ease);
}

.contact-form__submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 12px 30px rgba(255, 46, 136, .35);
}

.contact-form__submit:active {
    transform: translateY(0);
}
