.contact-section {
    padding: 60px 0;
    background-color: #fcfcfc;
}

.map-banner-full {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-header p {
    color: #666;
    font-size: 1.1rem;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 10px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #0d47a1;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(13, 71, 161, 0.2);
}

.info-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.info-content p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    padding: 40px;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.1);
    border-color: #0d47a1;
}

.btn-premium {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(13, 71, 161, 0.2);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(13, 71, 161, 0.3);
    color: white;
}

.map-banner {
    display: none;
}

.map-banner iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-header h2 {
        font-size: 2rem;
    }
}