/* Contact Page Custom Styles */

.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-section {
    min-width: 300px;
}

.contact-form-section {
    flex: 2;
    min-width: 350px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.contact-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--rgba-primary-1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-card .card-content h5 {
    margin-bottom: 5px;
    font-size: 18px;
    color: #333;
}

.contact-card .card-content p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

/* Form Styling */
.dzForm .form-control {
    border-radius: 8px;
    padding: 12px 20px;
    border: 1px solid #e1e1e1;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.dzForm .form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px var(--rgba-primary-1);
}

.dzForm label {
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
}

.btn-submit {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    background: var(--primary);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 117, 188, 0.3);
}

/* Map Section */
.map-container {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 5px solid #fff;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .contact-form-section {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card .icon-box {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .map-container {
        height: 350px;
    }
}