.contactb{
    /* Background Image + Blue Overlay */
    background: linear-gradient(135deg, rgba(32, 147, 196, 0.88) 0%, rgba(30, 85, 105, 0.82) 100%), 
                url('/images/church_gate9.jpeg') center/cover no-repeat !important;
}

/* Layout Container */
.contact-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Two-column Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr; /* Right side slightly wider */
    gap: 40px;
    align-items: flex-start;
}

/* Common Typography */
.section-title {
    font-family: 'Playfair Display', serif;
    color: #184153;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* ============================
   Left Column: Info Cards
   ============================ */
.info-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.icon-box {
    background-color: #f99b28; /* Orange color */
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    flex-shrink: 0;
    /* Soft orange shadow */
    box-shadow: 0 4px 10px rgba(249, 155, 40, 0.3);
}

.info-text h4 {
    color: #184153;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-text p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* WhatsApp Box */
.whatsapp-box {
    background-color: #eef8f0; /* Light green background */
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.whatsapp-box h4 {
    color: #1a202c;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.whatsapp-box p {
    color: #475569;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366; /* WhatsApp Green */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.btn-whatsapp:hover {
    background-color: #20b858;
}

/* ============================
   Right Column: Form
   ============================ */
.contact-form-container {
    background-color: #f8fafc; /* Very light blue/gray background */
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #f1f5f9;
}

.form-subtitle {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 24px;
    margin-top: -16px; /* Pull it closer to the heading */
}

/* Form Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two inputs side by side */
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #184153;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Inputs and Textarea */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #334155;
    background-color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f99b28; /* Orange focus border */
    box-shadow: 0 0 0 3px rgba(249, 155, 40, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background-color: #f99b28; /* Orange */
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(249, 155, 40, 0.2);
}

.btn-submit:hover {
    background-color: #e88d1d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 155, 40, 0.3);
}

/* ============================
   Responsive Design
   ============================ */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack columns on tablets/mobile */
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr; /* Stack Name and Phone fields on mobile */
    }
    
    .contact-form-container {
        padding: 24px; /* Reduce padding on small screens */
    }
}