/* ── Contact page local styles ── */
.vk-contact-section {
    padding: 60px 0 80px;
    background: #f8f5f1;
}
:root.vk-dark .vk-contact-section { background: #0d1b2a; }

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

/* ── Left info panel ── */
.vk-contact-info {
    background: #0d1b2a;
    border-radius: 20px;
    padding: 44px 40px;
    color: #c5cdd8;
    position: sticky;
    top: 90px;
}

.vk-contact-info h2 {
    color: #fff !important;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.3px;
    border: none !important;
}

.vk-contact-info .vk-ci-tagline {
    color: #8fa3b8;
    font-size: 14px;
    margin: 0 0 32px;
}

.vk-ci-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.vk-ci-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(212,133,10,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 17px;
    color: #d4850a;
}

.vk-ci-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5a7a96;
    margin-bottom: 3px;
}

.vk-ci-value {
    font-size: 14px;
    color: #c5cdd8;
    line-height: 1.6;
}

.vk-ci-value a {
    color: #f0a62e;
    text-decoration: none;
}

.vk-ci-value a:hover { text-decoration: underline; }

.vk-ci-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin: 28px 0;
}

.vk-ci-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.vk-ci-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    color: #c5cdd8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.vk-ci-social a:hover {
    background: #d4850a;
    color: #fff;
}

/* ── Right form panel ── */
.vk-contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

:root.vk-dark .vk-contact-form-wrap {
    background: #152237;
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.vk-contact-form-wrap h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0d1b2a !important;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
    border: none !important;
}

:root.vk-dark .vk-contact-form-wrap h2 { color: #fff !important; }

.vk-cf-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 30px;
}

:root.vk-dark .vk-cf-subtitle { color: #8fa3b8; }

.vk-cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vk-cf-group {
    margin-bottom: 18px;
}

.vk-cf-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    letter-spacing: 0.1px;
}

:root.vk-dark .vk-cf-group label { color: #c5cdd8; }

.vk-cf-group input,
.vk-cf-group select,
.vk-cf-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: #1a1a2e;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
}

:root.vk-dark .vk-cf-group input,
:root.vk-dark .vk-cf-group select,
:root.vk-dark .vk-cf-group textarea {
    background: #0d1b2a;
    border-color: #1e3246;
    color: #e5e7eb;
}

.vk-cf-group input:focus,
.vk-cf-group select:focus,
.vk-cf-group textarea:focus {
    border-color: #d4850a;
    box-shadow: 0 0 0 3px rgba(212,133,10,0.12);
    background: #fff;
}

:root.vk-dark .vk-cf-group input:focus,
:root.vk-dark .vk-cf-group select:focus,
:root.vk-dark .vk-cf-group textarea:focus {
    background: #152237;
}

.vk-cf-group textarea {
    resize: vertical;
    min-height: 90px;
}

.vk-cf-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.vk-cf-counter {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: #fafafa;
    transition: border-color 0.2s;
}

:root.vk-dark .vk-cf-counter {
    background: #0d1b2a;
    border-color: #1e3246;
}

.vk-cf-counter:focus-within {
    border-color: #d4850a;
    box-shadow: 0 0 0 3px rgba(212,133,10,0.12);
}

.vk-cf-counter button {
    width: 38px;
    height: 42px;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
    padding: 0;
}

.vk-cf-counter button:hover {
    background: rgba(212,133,10,0.10);
    color: #d4850a;
}

.vk-cf-counter input {
    flex: 1;
    width: 100%;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    padding: 0 !important;
    min-width: 0;
}

:root.vk-dark .vk-cf-counter input { color: #e5e7eb; }

.vk-cf-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 24px;
    background: #25D366;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    font-family: inherit;
    margin-top: 8px;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.30);
}

.vk-cf-submit:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.40);
    color: #fff;
    text-decoration: none;
}

.vk-cf-submit svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.vk-cf-note {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin: 12px 0 0;
}

/* Responsive */
@media (max-width: 991px) {
    .vk-contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .vk-contact-info { position: static; }
    .vk-contact-info, .vk-contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 600px) {
    .vk-cf-row { grid-template-columns: 1fr; }
    .vk-contact-section { padding: 40px 0 60px; }
}
