/* --- Page Header --- */
.page-header {
    background: linear-gradient(rgba(0,31,84,0.85), rgba(0,31,84,0.85)), url('https://kralmotoriranian.com/public/uploads/2026-02/general-1-1770815177-2be2df9dcbf1fa8a.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
}

/* --- Contact Info Cards --- */
.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
    border-bottom: 4px solid transparent;
}
.contact-card:hover {
    transform: translateY(-10px);
}
.contact-card.card-address:hover { border-bottom-color: var(--rasa-red); }
.contact-card.card-phone:hover { border-bottom-color: var(--rasa-blue); }
.contact-card.card-email:hover { border-bottom-color: var(--rasa-red); }

.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--rasa-blue);
    font-size: 1.8rem;
    transition: all 0.3s;
}
.contact-card:hover .icon-box {
    background-color: var(--rasa-blue);
    color: white;
}

/* --- Contact Form & Map Section --- */
.main-contact-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 60px;
}
.form-container {
    padding: 40px;
}
.map-container {
    height: 100%;
    min-height: 400px;
    background-color: #eee;
}
.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.form-control {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}
.form-control:focus {
    background-color: white;
    border-color: var(--rasa-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 31, 84, 0.15);
}

.btn-submit {
    background-color: var(--rasa-red);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    transition: all 0.3s;
}
.btn-submit:hover {
    background-color: #c01522;
    transform: translateY(-2px);
}