/* =========================================
   CONTACT PAGE CSS
   ========================================= */
   
header {
    background: #1f2937;
    color: #fff;
    padding: 15px 0;
}

.page-header {
    background-image: linear-gradient(rgba(26, 37, 48, 0.9), rgba(26, 37, 48, 0.8)), url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    margin-bottom: 60px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-section {
    padding:0;
    background-color: #f9f9f9;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 Split */
    gap: 50px;
    align-items: start;
}

/* --- Left Column: Info & Map --- */
.contact-info h2 {
    color: #1a2530;
    margin-bottom: 15px;
    font-size: 2rem;
}

.contact-info > p {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.info-list {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item .icon-wrap {
    /* Reuses the icon-wrap style from your service pages! */
    background-color: #fff4e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-item .icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: #f39c12;
}

.info-item .text strong {
    display: block;
    color: #1a2530;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item .text p,
.info-item .text a {
    margin: 0;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
}

.info-item .text a:hover {
    color: #f39c12;
}

/* Map Styling */
.map-wrapper {
    border-radius: 12px;
    overflow: hidden; /* Clips the iframe to the rounded corners */
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

/* --- Right Column: Form Card --- */
.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
}

.contact-form-card h3 {
    color: #1a2530;
    margin-bottom: 25px;
    font-size: 1.5rem;
    border-bottom: 2px solid #f39c12;
    display: inline-block;
    padding-bottom: 5px;
}

/* Modern Form Elements */
.modern-form .form-group {
    margin-bottom: 20px;
}

.modern-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fcfcfc;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modern-form textarea {
    resize: vertical; /* Only allow vertical resizing */
}

.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: #f39c12;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1); /* Soft orange glow */
}

.modern-form .btn {
    margin-top: 10px;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 6px;
}

/* --- Mobile Responsiveness --- */
@media screen and (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr; /* Stack the columns */
        gap: 40px;
    }
    
    .contact-form-card {
        padding: 30px 20px; /* Slightly less padding on mobile */
    }
}