.sv-contact {
    background: #ffffff;
}

.sv-contact h1,
.sv-contact h2,
.sv-contact h3,
.sv-contact h4 {
    color: var(--sv-brand-blue);
}

.sv-contact-hero {
    padding: 30px 0 20px !important;
    text-align: left;
}

.sv-contact-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
}

.sv-contact-hero-copy {
    max-width: 100%;
}

.sv-contact-hero-spacer {
    min-height: 1px;
}

.sv-contact-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.sv-contact-hero p {
    color: #5a6375;
    max-width: 640px;
}

.sv-contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
    width: 100%;
}

.sv-contact-badges--form {
    justify-content: space-between;
}

.sv-contact-form .sv-contact-badges {
    margin-top: 10px;
    margin-bottom: 18px;
}

.sv-contact-badges span {
    background: #fff;
    border: 1px solid rgba(16, 19, 28, 0.1);
    border-radius: 12px;
    padding: 6px 10px;
    font-size: 12px;
    color: #1f2430;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
    min-width: 0;
    text-align: center;
}

.sv-contact-badges span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sv-brand-blue);
}

.sv-contact-badges span:nth-child(2)::before {
    background: var(--sv-brand-red);
}

.sv-contact-badges span:nth-child(3)::before {
    background: #1f2430;
}

.sv-contact-main {
    padding: 10px 0 80px !important;
}

.sv-contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
}

.sv-contact-form {
    background: #fff;
    border: 1px solid rgba(16, 19, 28, 0.08);
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.sv-contact-form h2 {
    margin-bottom: 8px;
}

.sv-contact-form p {
    color: #5a6375;
    margin-bottom: 20px;
}

.sv-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

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

.sv-contact-form label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: #1f2430;
    margin-bottom: 14px;
}

.sv-contact-form input,
.sv-contact-form textarea {
    width: 100%;
    box-sizing: border-box;
}

.sv-contact-form input,
.sv-contact-form textarea {
    border: 1px solid rgba(16, 19, 28, 0.14);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 14px;
}

.sv-contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.sv-contact-submit {
    background: var(--sv-brand-red);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
}

.sv-contact-submit:hover {
    background: var(--sv-brand-blue);
}

.sv-contact-success {
    background: #e9f7ee;
    color: #1f7a42;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 14px;
}

.sv-contact-error {
    background: #fdeaea;
    color: #b42318;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 14px;
}

.sv-hidden {
    display: none;
}

.sv-contact-info {
    display: grid;
    gap: 16px;
}

.sv-contact-image {
    background: #f6f7fb;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(16, 19, 28, 0.08);
    min-height: 320px;
}

.sv-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sv-contact-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #5a6375;
    font-size: 13px;
}

.sv-contact-card {
    background: #fff;
    border: 1px solid rgba(16, 19, 28, 0.08);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

.sv-contact-card,
.sv-contact-card h3,
.sv-contact-card p,
.sv-contact-card a {
    color: #1f2430;
}

.sv-contact-card-title {
    margin-bottom: 6px;
    font-size: 22px;
    font-weight: 700;
}

.sv-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--sv-brand-blue);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}

.sv-contact-link:hover {
    background: var(--sv-brand-red);
    color: #fff;
}

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

    .sv-field-grid {
        grid-template-columns: 1fr;
    }
}
