/* CONTACT HERO */
.contact-hero {
    background: linear-gradient(rgba(17,24,39,0.85), rgba(17,24,39,0.85)),
                url('portfolio/roof2.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

/* INFO CARDS */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 8%;
    flex-wrap: wrap;
}

.info-card {
    background: white;
    padding: 30px;
    width: 280px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

/* FORM SECTION */
.contact-form-section {
    padding: 80px 8%;
    background: #f8fafc;
}

.form-container {
    background: white;
    max-width: 600px;
    margin: auto;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-container h2 {
    margin-bottom: 30px;
    text-align: center;
}

form input, form textarea {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-family: 'Poppins';
}

form textarea {
    height: 120px;
    resize: none;
}

button {
    background: #2563eb;
    color: white;
    padding: 14px;
    border: none;
    width: 100%;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #1e40af;
}

/* MAP */
.map-section {
    margin-top: 40px;
}
