/* ===================================
   CONTACT FORM SECTION
   =================================== */

.altimmo-contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: system-ui, -apple-system, sans-serif;
}

.altimmo-form-contact-info {
    flex: 1;
    min-width: 300px;
}

.altimmo-form-contact-info h2 {
    color: #0b2748;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
}

.altimmo-form-contact-info p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: #f1f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.info-text strong {
    display: block;
    color: #0b2748;
    font-size: 14px;
}

.info-text span {
    color: #4b5563;
    font-size: 16px;
}

.contact-form-container {
    flex: 1.2;
    min-width: 300px;
}

.form-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #0b2748;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    background: #f8faff;
    transition: border-color 0.2s;
    font-family: system-ui, -apple-system, sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #0b3a78;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: system-ui, -apple-system, sans-serif;
}

.btn-submit:hover {
    background: #082a56;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Honeypot field - must be invisible */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 640px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}