/* ==========================================================================
   CONTACT US PAGE - 2 COLUMN LAYOUT (30/70 Split)
   ========================================================================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(10, 61, 98, 0.9), rgba(10, 61, 98, 0.9)), 
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&q=80&w=1000');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero-section h1 { font-size: 3rem; margin: 0; letter-spacing: 2px; }
.divider { width: 60px; height: 4px; background: var(--accent-gold); margin: 20px auto; }

main { max-width: 1200px; margin: -50px auto 50px; padding: 0 20px; }

/* Info Cards Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.info-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info-card i { font-size: 2rem; color: var(--accent-gold); margin-bottom: 15px; }
.info-card h3 { color: var(--primary-blue); margin-bottom: 10px; font-size: 1.2rem; }
.info-card p, .info-card a { color: #7f8c8d; text-decoration: none; font-size: 0.9rem; }

/* --- 2 COLUMN CONTACT CONTAINER --- */
.contact-container {
    display: grid;
    grid-template-columns: 30% 70%; /* डावीकडे 30% आणि उजवीकडे 70% */
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    min-height: 600px; /* फॉर्मला एक चांगली उंची देण्यासाठी */
}

/* Left Sidebar (30%) */
.contact-sidebar {
    background: var(--primary-blue);
    color: white;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* मजकूर मध्यभागी ठेवण्यासाठी */
}

.contact-sidebar h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.contact-sidebar p {
    font-size: 1.1rem;
    color: #d1d8e0;
    line-height: 1.6;
}

/* Right Form Area (70%) */
.form-area {
    padding: 50px;
    background: #ffffff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
    font-family: inherit;
    box-sizing: border-box;
}

.btn-submit {
    background: var(--accent-gold);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #d35400;
}

/* Responsive Design for Mobile */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr; /* मोबाईलवर एका खाली एक दिसेल */
    }
    .contact-sidebar {
        padding: 40px 20px;
        text-align: center;
    }
    .form-area {
        padding: 30px 20px;
    }
}