/* ==========================================================================
   CONTACT PAGE STYLING (Modern Grid Layout)
   ========================================================================== */

.contact-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Hero Section */
.contact-hero {
    text-align: center;
    background: #fff;
    padding: 45px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.contact-hero h1 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 10px;
}
.contact-hero p {
    font-size: 17px;
    color: #718096;
}

/* Wrapper for Left & Right boxes */
.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

/* Left Section: Info */
.contact-info {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}
.contact-info h2 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 15px;
}
.contact-info p {
    color: #718096;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.info-item .material-icons {
    font-size: 30px;
    color: #28a745;
    background: #e6f4ea;
    padding: 10px;
    border-radius: 50%;
    margin-right: 15px;
}
.info-item h3 {
    font-size: 16px;
    color: #2d3748;
    margin-bottom: 3px;
}
.info-item p {
    margin-bottom: 0;
    font-size: 14px;
    color: #4a5568;
}

/* Right Section: Form Area */
.contact-form-area {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}
.contact-form-area h2 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-size: 15px;
    box-sizing: border-box;
    font-family: inherit;
    transition: border 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: #28a745;
    outline: none;
}
.contact-form-area button {
    background: #28a745;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}
.contact-form-area button:hover {
    background: #218838;
}

/* Success & Error Alerts */
.alert {
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}
.alert.success { background: #d4edda; color: #155724; }
.alert.error { background: #f8d7da; color: #721c24; }

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 768px) {
    .contact-content-wrapper {
        grid-template-columns: 1fr; /* Mobile par ek ke niche ek */
    }
    .contact-hero h1 { font-size: 28px; }
    .contact-info, .contact-form-area { padding: 25px; }
}