/* Banner start */

.con-section {
    background: linear-gradient(rgba(0, 35, 102, 0.7), rgba(0, 35, 102, 0.7)), url('../img/contact.jpeg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.con-title {
    color: #ffffff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -1px; 
}

/* Banner end */



.form-map-section {
    padding: 60px 10%;
    background-color: #ffffff;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 20px; 
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    line-height: 0; 
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    transition: all 0.5s ease;
}


@media (max-width: 768px) {
    .form-map-section {
        padding: 40px 20px;
    }
    
    .map-wrapper {
        height: 300px; 
        border-radius: 15px;
    }
}

.contact-cards-section,
.contact-section {
    padding: 80px 10%;
    background: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.info-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #eee;
}

.info-card i {
    font-size: 2.5rem;
    color: #0047AB; 
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}


.contact-info-box {
    flex: 1;
    background-color: #011740; 
    color: #ffffff;
    padding: 50px;
    border-radius: 24px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.5;
}


.icon-group {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.contact-form-container {
    flex: 1.5;
}

.section-tag {
    color: #0047AB;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

.contact-form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid transparent;
    background-color: #f5f5f5;
    border-color: #666;
    border-radius: 15px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    background-color: #ffffff;
    border-color: #011740;
    box-shadow: 0 5px 15px rgba(0, 71, 171, 0.05);
}


.submit-btn {
    background-color: #011740;
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.submit-btn:hover {
    background-color: #c4191f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
}


@media (max-width: 1024px) {
    .contact-cards-section, .contact-section { 
        padding: 60px 5%; 
    }

    .contact-form-container h2 { 
        font-size: 2rem; 
    }
}

@media (max-width: 768px) {
    .contact-wrapper, .form-row {
        flex-direction: column;
        display: flex;
    }
    
    .contact-info-box { 
        padding: 40px 30px; 
    }

    .contact-form-container { 
        order: 1; 
    }

    .contact-info-box { 
        order: 2; 
    }
}