/* Modern Contact Page UI */
.contact-hero {
    background: linear-gradient(135deg, #0A1325 0%, #1a2b48 100%);
    padding: 100px 0 160px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease-out;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 5;
    margin-bottom: 60px;
}

.info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
    border-color: #5191fa;
}

.info-card i {
    width: 70px;
    height: 70px;
    background: rgba(81, 145, 250, 0.1);
    color: #5191fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.info-card:hover i {
    background: #5191fa;
    color: #fff;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0A1325;
}

.info-card p {
    color: #5e6d77;
    margin-bottom: 0;
    font-size: 15px;
}

.contact-section-main {
    padding: 60px 0 100px;
}

.contact-container-modern {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
}

.contact-form-side {
    flex: 1;
    padding: 60px;
    min-width: 320px;
}

.contact-map-side {
    flex: 1;
    min-width: 320px;
    background: #f8f9fa;
    position: relative;
}

.contact-map-side iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 450px;
}

.modern-form-group {
    margin-bottom: 25px;
}

.modern-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0A1325;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-form-control {
    width: 100%;
    padding: 15px 20px;
    background: #f4f7fa;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    color: #1a2b48;
}

.modern-form-control:focus {
    background: #fff;
    border-color: #5191fa;
    box-shadow: 0 5px 15px rgba(81, 145, 250, 0.1);
    outline: none;
}

.modern-btn-submit {
    background: linear-gradient(135deg, #5191fa 0%, #2f64d6 100%);
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(81, 145, 250, 0.3);
}

.modern-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(81, 145, 250, 0.4);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .contact-form-side { padding: 40px 25px; }
    .contact-hero h1 { font-size: 36px; }
}

