/* Contact Section - Professional Dark Blue Theme */
.contact-section-pro {
    padding: 150px 20px;
    background: linear-gradient(135deg, #0a192f 0%, #152642 50%, #1e3a5f 100%);
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e6f1ff;
    min-height: 100vh;
    display: flex;
    align-items: center;

}

.contact-container-pro {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-top: 50px;
}

.section-header-pro {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-pro {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.section-title-pro::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #64ffda, #00b4d8);
    border-radius: 2px;
}

.section-subtitle-pro {
    font-size: 1.1rem;
    color: #a8b2d1;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.contact-content-pro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-cards-pro {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.address-section-pro {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card-pro, .address-card-pro {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card-pro {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.address-card-pro {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.card-icon-pro {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5282, #3182ce);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(44, 82, 130, 0.3);
}

.card-content-pro {
    flex: 1;
}

.card-title-pro {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 5px 0;
}

.card-subtitle-pro {
    font-size: 0.9rem;
    color: #718096;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.contact-info-pro {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item-pro {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4a5568;
}

.info-item-pro i {
    color: #2c5282;
    font-size: 1rem;
    width: 16px;
}

.info-item-pro a {
    color: #2c5282;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.info-item-pro a:hover {
    color: #3182ce;
    text-decoration: underline;
}

.address-info-pro p {
    margin: 0 0 8px 0;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

.address-info-pro p:last-child {
    margin-bottom: 0;
}

.card-hover-effect-pro {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.contact-card-pro:hover, .address-card-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.contact-card-pro:hover .card-hover-effect-pro, 
.address-card-pro:hover .card-hover-effect-pro {
    left: 100%;
}

.map-section-pro {
    width: 100%;
}

.map-container-pro {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.map-header-pro {
    padding: 20px;
    background: linear-gradient(90deg, #2c5282, #3182ce);
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.map-header-pro i {
    font-size: 1.2rem;
}

.map-header-pro h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.map-wrapper-pro {
    width: 100%;
    height: 400px;
    position: relative;
}

.map-address-pro {
    padding: 20px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.map-address-pro p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content-pro {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .map-wrapper-pro {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-section-pro {
        padding: 60px 15px;
    }
    
    .section-title-pro {
        font-size: 2rem;
    }
    
    .section-subtitle-pro {
        font-size: 1rem;
    }
    
    .contact-card-pro, .address-card-pro {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .card-icon-pro {
        margin: 0 auto;
    }
    
    .info-item-pro {
        justify-content: center;
    }
    
    .map-wrapper-pro {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-section-pro {
        padding: 40px 12px;
    }
    
    .section-header-pro {
        margin-bottom: 40px;
    }
    
    .section-title-pro {
        font-size: 1.8rem;
    }
    
    .contact-card-pro, .address-card-pro {
        padding: 15px;
    }
    
    .card-title-pro {
        font-size: 1.2rem;
    }
    
    .map-header-pro {
        padding: 15px;
    }
    
    .map-header-pro h3 {
        font-size: 1.1rem;
    }
    
    .map-wrapper-pro {
        height: 250px;
    }
    
    .map-address-pro {
        padding: 15px;
    }
    
    .map-address-pro p {
        font-size: 0.9rem;
    }
}

@media (min-width: 2000px) {
    .contact-container-pro {
        max-width: 1600px;
    }
    
    .section-title-pro {
        font-size: 3rem;
    }
    
    .section-subtitle-pro {
        font-size: 1.3rem;
    }
    
    .contact-card-pro, .address-card-pro {
        padding: 35px;
    }
    
    .card-icon-pro {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .card-title-pro {
        font-size: 1.6rem;
    }
    
    .card-subtitle-pro {
        font-size: 1.1rem;
    }
    
    .info-item-pro a, .address-info-pro p {
        font-size: 1.1rem;
    }
    
    .map-wrapper-pro {
        height: 500px;
    }
    
    .map-header-pro {
        padding: 25px;
    }
    
    .map-header-pro h3 {
        font-size: 1.5rem;
    }
    
    .map-address-pro p {
        font-size: 1.1rem;
    }
}