.contact-page {
    padding: 3rem 0 4rem;
    background:
        radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    min-height: calc(100vh - 64px);
}

.contact-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.contact-card__header {
    padding: 2rem 2rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.contact-card__body {
    padding: 2rem;
}

.contact-form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.4rem;
}

.contact-form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    font-size: 0.9375rem;
    background: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form-control:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-modul-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.65rem;
}

.contact-modul-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    cursor: pointer;
    font-size: 0.875rem;
    margin: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-modul-item:has(input:checked) {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.06);
}

.contact-modul-item input {
    accent-color: #2563eb;
}

.contact-info-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #fff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.contact-info-box h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
}

.contact-info-list i {
    color: #10b981;
    margin-top: 0.15rem;
}

.contact-info-box .contact-btn-back {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.contact-info-box .contact-btn-back:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
}

.contact-card .contact-btn-submit {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.28);
}

.contact-card .contact-btn-submit:hover,
.contact-card .contact-btn-submit:focus {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
    color: #fff !important;
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.34);
}

@media (max-width: 991.98px) {
    .contact-page {
        padding: 2rem 0 3rem;
    }

    .contact-card__header,
    .contact-card__body {
        padding: 1.25rem;
    }
}
