/* --- CONTACT HEADER --- */
/* (Header style About page se milti julti hai par image change kar di hai) */
.contact-header {
    background: linear-gradient(rgba(0, 33, 71, 0.9), rgba(0, 33, 71, 0.8)), url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.contact-header h1 { font-size: 3rem; font-weight: 700; margin-bottom: 10px; }
.breadcrumb { font-size: 1.1rem; color: #ccc; }
.breadcrumb .current { color: var(--secondary); font-weight: 600; }

/* --- INFO CARDS --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.info-icon {
    width: 70px; height: 70px;
    background: rgba(0, 33, 71, 0.05); /* Light Blue bg */
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.info-card:hover .info-icon {
    background: var(--secondary);
    color: var(--white);
}

.info-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--primary); }
.info-card p { color: #666; font-size: 0.95rem; margin-bottom: 5px; }

/* --- FORM & MAP CONTAINER --- */
.shadow-box {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex; /* Flexbox for Side-by-Side */
    overflow: hidden; /* Taake map corners round rahain */
}

/* Left: Form */
.form-wrapper {
    flex: 1; /* 50% width */
    padding: 50px;
}

.form-wrapper h3 { margin-bottom: 30px; color: var(--primary); font-size: 1.8rem; }

.contact-form .input-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea { resize: none; margin-bottom: 20px; }

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 8px rgba(16, 196, 92, 0.1);
}

/* Right: Map */
.map-wrapper {
    flex: 1; /* 50% width */
    min-height: 400px;
    background: #eee;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .shadow-box { flex-direction: column; } /* Tablet/Mobile pe map neechay chala jaye */
    .map-wrapper { height: 350px; }
}

@media (max-width: 768px) {
    .input-group { flex-direction: column; gap: 15px; margin-bottom: 15px; } /* Inputs stack ho jayen */
    .form-wrapper { padding: 30px 20px; }
    .contact-header h1 { font-size: 2.2rem; }
}