/* COMPLETE CONTACT PAGE CSS - FULL WIDTH MOBILE FORM + MAP */
/* BANNER */
.contact-banner {
    background-image: url('https://media.istockphoto.com/id/638377134/photo/doctor-man-with-stethoscope-in-hospital.jpg?s=612x612&w=0&k=20&c=xldnHCxhAhi4VYWsrucaABm_jyUcn9vN1Azh2XcLQ_0=');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #448AFF;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.8" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.heading {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.icon-logo img {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.contact-banner h2 {
    font-size: 3.5em;
    margin: 0 0 15px 0;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.contact-banner p {
    font-size: 1.3em;
    opacity: 0.9;
    margin: 0;
}

/* CONTACT INFO */
.contact-info-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.contact-info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.contact-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #448AFF, #39b49b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.phone .contact-icon { 
    background: linear-gradient(135deg, #448AFF, #667eea); 
}
.email .contact-icon { 
    background: linear-gradient(135deg, #39b49b, #26de81); 
}
.address .contact-icon { 
    background: linear-gradient(135deg, #ff6b6b, #ee5a24); 
}

.contact-details h4 {
    color: #333;
    font-size: 22px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    font-size: 18px;
    margin: 0 0 5px 0;
    line-height: 1.5;
}

.contact-details p a {
    color: #448AFF;
    text-decoration: none;
    font-weight: 500;
}

.contact-details p a:hover {
    color: #39b49b;
}

.contact-details span {
    color: #999;
    font-size: 14px;
    font-style: italic;
}

/* COMBINED CONTACT FORM + MAP SECTION */
.contact-combo-section {
    padding: 100px 20px;
    background: white;
}

.combo-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    height: 650px;
}

.form-side {
    flex: 1;
    background: #f8f9fa;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-side h3 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
    font-family: 'Times New Roman', Times, serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #448AFF;
    box-shadow: 0 0 0 3px rgba(68, 138, 255, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #448AFF, #39b49b);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(68, 138, 255, 0.4);
}

.map-side {
    flex: 1;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.map-container {
    width: 100%;
    height: 100%;
}

/* RESPONSIVE - FULL WIDTH MOBILE */
@media (max-width: 1024px) {
    .combo-container {
        flex-direction: column;
        height: auto;
        gap: 40px;
    }
    
    .form-side {
        order: 2;
        width: 100%; /* FULL WIDTH */
        padding: 50px 30px;
    }
    
    .map-side {
        order: 1;
        height: 400px;
        width: 100%; /* FULL WIDTH */
    }
}

@media (max-width: 768px) {
    .contact-banner {
        padding: 80px 15px;
        min-height: 50vh;
    }
    
    .contact-banner h2 {
        font-size: 2.5em;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-item {
        padding: 30px 25px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-side {
        padding: 40px 20px;
        width: 100%; /* FULL WIDTH */
        margin: 0;
    }
    
    .form-side h3 {
        font-size: 2em;
    }
    
    .contact-combo-section {
        padding: 60px 15px;
    }
    
    .map-side {
        width: 100%; /* FULL WIDTH */
        height: 350px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        padding: 60px 10px;
    }
    
    .contact-banner h2 {
        font-size: 2em;
    }
    
    .icon-logo img {
        width: 100px;
    }
    
    .contact-info-section {
        padding: 60px 15px;
    }
    
    .form-side {
        padding: 30px 15px;
        width: 100vw; /* EDGE-TO-EDGE */
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        border-radius: 0;
        box-shadow: none;
    }
    
    .map-side {
        width: 100vw; /* EDGE-TO-EDGE */
        height: 300px;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        border-radius: 0;
        box-shadow: none;
    }
    
    .contact-combo-section {
        padding: 40px 0;
    }
}
