/* Hero Section */
.construction-hero {
    background: url('CONSTRUCTION-SITE-scaled.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.construction-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.construction-hero h1, .construction-hero p {
    position: relative;
    z-index: 2;
}

.construction-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.construction-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
}

/* Details Section */
.construction-details {
    background-color: #fff;
    padding: 60px 20px;
}

.construction-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.construction-text {
    flex: 1;
}

.construction-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.construction-text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.construction-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.construction-text ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

.construction-image {
    flex: 1;
}

.construction-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Quote Form (shared design) */
.quote-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.quote-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.quote-section p {
    margin-bottom: 30px;
    color: #666;
}

.quote-form {
    max-width: 700px;
    margin: auto;
    text-align: left;
}

.quote-form .form-group {
    margin-bottom: 15px;
}

.quote-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1rem;
}

.quote-form textarea {
    resize: vertical;
}

.quote-form .cta-button {
    width: 100%;
    margin-top: 10px;
    background-color: #007bff;
    border: none;
    font-size: 1.1rem;
    padding: 12px;
    cursor: pointer;
    border-radius: 5px;
    color: #fff;
}

.quote-form .cta-button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .construction-content {
        flex-direction: column;
    }

    .construction-text, .construction-image {
        width: 100%;
    }

    .construction-hero h1 {
        font-size: 2rem;
    }

    .construction-hero p {
        font-size: 1rem;
    }
}
