/* =============================================
   CONTACT PAGE CSS - Simplified Layout
   ============================================= */

.contact-simplified-page {
    padding: 60px 0 100px 0;
    background: #ffffff;
    color: #000;
}

/* Four column top grid */
.contact-info-top-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    margin-top: 40px;
}

.info-item {
    text-align: center;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #111;
}

.info-item h3 {
    font-family: var(--font-heading, "Arial", sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.info-item p {
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 700;
    color: #111;
}

/* Two column bottom grid */
.contact-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.section-heading {
    font-family: var(--font-heading, "Arial", sans-serif);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

/* Form Styling */
.simple-form-group {
    margin-bottom: 20px;
}

.simple-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.simple-form-group label .req {
    color: red;
}

.simple-form-group input,
.simple-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: var(--font-main, "Arial", sans-serif);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.simple-form-group input:focus,
.simple-form-group textarea:focus {
    border-color: #888;
}

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

.simple-submit-btn {
    padding: 10px 24px;
    background: #e6e6e6;
    border: 1px solid #d4d4d4;
    border-radius: 3px;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.simple-submit-btn:hover {
    background: #d4d4d4;
}

/* Map Styling */
.map-container {
    width: 100%;
    height: 440px;
    background: #eaeaea;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Errors & Success */
.error-box {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.error-box ul {
    margin: 0;
    padding-left: 20px;
}

.success-box {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-top-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-info-top-grid {
        grid-template-columns: 1fr;
    }
}