.xr-contact-wrapper {
    background: #f4f9fc;
    padding: 80px 5%;
    font-family: 'Roboto', Arial, sans-serif;
}

.xr-contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    animation: xrFadeUp 1s ease;
}

@keyframes xrFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.xr-contact-info {
    flex: 1;
}

.xr-contact-info h1 {
    font-size: 38px;
    color: #0a3d62;
}

.xr-subtitle {
    margin-bottom: 30px;
    color: #2f8f83;
}

.xr-info-block {
    margin-bottom: 18px;
}

.xr-info-block strong {
    display: block;
    color: #0a3d62;
    margin-bottom: 5px;
}

.xr-info-block a {
    color: #0a3d62;
    text-decoration: none;
    transition: 0.3s;
}

.xr-info-block a:hover {
    color: #2f8f83;
}

.xr-main-cta {
    display: inline-block;
    margin-top: 25px;
    background: #0a3d62;
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.xr-main-cta:hover {
    background: #2f8f83;
}

.xr-contact-form-box {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.xr-contact-form-box h2 {
    color: #0a3d62;
    margin-bottom: 20px;
}

.xr-contact-form input,
.xr-contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.xr-contact-form input:focus,
.xr-contact-form textarea:focus {
    border-color: #2f8f83;
    outline: none;
}

.xr-contact-form button {
    width: 100%;
    background: #0a3d62;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.xr-contact-form button:hover {
    background: #2f8f83;
}

#xr-success {
    display: none;
    margin-top: 15px;
    background: #e8f7f4;
    color: #2f8f83;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
}

@media (max-width: 900px) {
    .xr-contact-container {
        flex-direction: column;
    }
}
