/* ===================================================
   Victorie - Contact Page
   =================================================== */

.vct-contact {
    min-height: calc(100vh - 80px);
    background: var(--v-bg, #FAF9F9);
    display: flex;
    align-items: stretch;
    padding: 60px 24px;
}

.vct-contact__inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(62,49,51,.15);
    min-height: 600px;
}

/* ---- Left panel (dark) ---- */
.vct-contact__panel {
    background: #3e3133;
    background-image: var(--vct-bg, none);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.vct-contact__panel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(62,49,51,.78);
    z-index: 0;
}

.vct-contact__panel-deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 55%;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}
.vct-contact__panel-deco-img {
    width: 100%;
    height: auto;
    opacity: .8;
    display: block;
    filter: brightness(0) invert(1);
}

.vct-contact__panel-content {
    position: relative;
    z-index: 2;
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vct-contact__heading {
    font-family: var(--v-font-heading, Philosopher, serif);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.vct-contact__subtitle {
    font-size: .95rem;
    color: #c9c9c9;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 48px;
    max-width: 280px;
}

.vct-contact__info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.vct-contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #fff;
    font-size: .9rem;
    line-height: 1.5;
}

.vct-contact__info-item svg {
    flex-shrink: 0;
    margin-top: 1px;
    opacity: .85;
}

.vct-contact__socials {
    margin-top: 48px;
    display: flex;
    gap: 12px;
}

.vct-contact__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.35);
    transition: border-color .2s, background .2s;
    text-decoration: none;
    color: #fff;
}
.vct-contact__social-link i {
    font-size: 1rem;
    color: #fff;
    line-height: 1;
}
.vct-contact__social-link:hover {
    border-color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.08);
    color: #fff;
}

/* ---- Right panel (form) ---- */
.vct-contact__form-panel {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 48px;
}

.vct-contact__form-wrap {
    width: 100%;
    max-width: 520px;
}

.vct-contact__form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ---- Field rows ---- */
.vct-form__row {
    display: grid;
    gap: 24px;
}

.vct-form__row--half {
    grid-template-columns: 1fr 1fr;
}

/* ---- Individual field (floating label) ---- */
.vct-form__group {
    position: relative;
}

.vct-form__input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #d0c8c9;
    border-radius: 0;
    padding: 18px 0 8px;
    font-size: .95rem;
    color: #3e3133;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
    resize: none;
    display: block;
}

.vct-form__input:focus {
    border-bottom-color: #500814;
}

.vct-form__label {
    position: absolute;
    left: 0;
    top: 18px;
    font-size: .9rem;
    color: #9a8f91;
    pointer-events: none;
    transition: top .18s, font-size .18s, color .18s;
    line-height: 1;
}

.vct-form__input:focus ~ .vct-form__label,
.vct-form__input:not(:placeholder-shown) ~ .vct-form__label {
    top: 2px;
    font-size: .72rem;
    color: #500814;
}

.vct-form__textarea {
    min-height: 80px;
    padding-top: 20px;
}

/* ---- Reason selector (radio, horizontal row) ---- */
.vct-form__reasons {
    margin-top: -4px;
}

.vct-form__reasons-label {
    font-size: .78rem;
    color: #9a8f91;
    margin-bottom: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.vct-form__reasons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.vct-form__reason {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: .875rem;
    color: #3e3133;
    user-select: none;
}

/* Hide native radio */
.vct-form__reason input[type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Custom radio dot */
.vct-form__radio-dot {
    width: 18px;
    height: 18px;
    border: 1.5px solid #d0c8c9;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .15s;
    position: relative;
}

.vct-form__radio-dot::after {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #500814;
    transform: scale(0);
    transition: transform .15s;
}

.vct-form__reason input:checked ~ .vct-form__radio-dot {
    border-color: #500814;
}

.vct-form__reason input:checked ~ .vct-form__radio-dot::after {
    transform: scale(1);
}

.vct-form__reason-text {
    color: #3e3133;
    transition: color .15s;
}

.vct-form__reason input:checked ~ .vct-form__radio-dot + .vct-form__reason-text,
.vct-form__reason:has(input:checked) .vct-form__reason-text {
    color: #500814;
    font-weight: 500;
}

/* ---- Submit button (right-aligned) ---- */
.vct-form__submit-wrap {
    display: flex;
    justify-content: flex-end;
}

.vct-contact__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #500814;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 36px;
    font-size: .95rem;
    font-family: inherit;
    font-weight: 600;
    letter-spacing: .04em;
    cursor: pointer;
    transition: background .2s, transform .15s;
    min-width: 180px;
}

.vct-contact__submit:hover {
    background: #3d0610;
    transform: translateY(-1px);
}

.vct-contact__submit:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}

/* ---- Success state ---- */
.vct-contact__success {
    text-align: center;
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.vct-contact__success p {
    font-size: 1.05rem;
    color: #3e3133;
    font-style: italic;
    line-height: 1.6;
}

/* ---- Error ---- */
.vct-contact__error {
    font-size: .875rem;
    color: #c0392b;
    background: #fdf2f2;
    border-radius: 6px;
    padding: 10px 14px;
    border-left: 3px solid #c0392b;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .vct-contact { padding: 0; min-height: auto; }
    .vct-contact__inner { grid-template-columns: 1fr; border-radius: 0; box-shadow: none; }
    .vct-contact__panel-content { padding: 40px 24px; }
    .vct-contact__subtitle { max-width: none; }
    .vct-contact__form-panel { padding: 40px 24px; }
    .vct-form__row--half { grid-template-columns: 1fr; }
    .vct-form__reasons-row { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
    .vct-contact__heading { font-size: 1.6rem; }
    .vct-contact__form-panel { padding: 32px 20px; }
    .vct-contact__submit { width: 100%; }
}