.contact-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 16px;
    padding: 48px 40px;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: -42%;
    right: -10%;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.contact-hero::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -14%;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.contact-hero h1,
.contact-hero p {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-hero p {
    font-size: 1rem;
    opacity: 0.92;
}

.contact-alert {
    margin-bottom: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start;
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.info-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.1);
}

.info-card .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.icon-box.blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.icon-box.green {
    background: #d1fae5;
    color: #059669;
}

.icon-box.purple {
    background: #ede9fe;
    color: #7c3aed;
}

.icon-box.orange {
    background: #ffedd5;
    color: #ea580c;
}

.info-card .info-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-card .info-text p {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
}

.form-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.form-card .form-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.form-card .form-label {
    font-weight: 600;
    font-size: 13px;
    color: #374151;
    margin-bottom: 6px;
}

.form-card .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-card .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-card textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.field-validation-error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
}

.validation-summary-valid {
    display: none;
}

.btn-send {
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    min-width: 170px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-send:hover {
    background: #1d4ed8;
    color: #fff;
}

.btn-send:active {
    transform: scale(0.98);
}

.btn-send:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.btn-send:disabled {
    cursor: not-allowed;
    opacity: 0.9;
}

.btn-send-default,
.btn-send-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-send-loading {
    display: none;
}

.btn-send.is-loading .btn-send-default {
    display: none;
}

.btn-send.is-loading .btn-send-loading {
    display: inline-flex;
}

.btn-send .spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

.faq-section {
    margin-top: 48px;
}

.faq-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.faq-icon {
    color: #2563eb;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.faq-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 24px;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: #bfdbfe;
}

.faq-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.faq-item p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 36px 24px;
    }

    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}
