.elementor-17 .elementor-element.elementor-element-433cd4d > .elementor-container{max-width:1398px;}/* Start custom CSS for html, class: .elementor-element-6bde4df *//* CONTACT HERO */
.contact-hero {
    position: relative;
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,50,130,0.9), rgba(0,160,255,0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

/* CONTACT SECTION */
.contact-section {
    padding: 100px 0;
    background: #f4f9ff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
}

/* FORM */
.contact-form {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,86,179,0.08);
}

.contact-form h2 {
    margin-bottom: 30px;
    color: #003d99;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #dce6f5;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0,123,255,0.2);
}

.btn-primary {
    padding: 14px 35px;
    background: linear-gradient(to right, #0056b3, #00aaff);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

/* CONTACT INFO */
.contact-info h2 {
    margin-bottom: 30px;
    color: #003d99;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,86,179,0.05);
    transition: 0.3s;
}

.info-card i {
    font-size: 22px;
    color: #0056b3;
    margin-top: 5px;
}

.info-card h4 {
    margin-bottom: 5px;
    color: #002b80;
}

.info-card:hover {
    transform: translateY(-5px);
}

/* MAP */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 28px;
    }
}/* End custom CSS */