/* ================================================
   CONSTRUCTIONS PAGE - HERO SECTION
   ================================================ */

#constructions-hero {
    height: calc(100vh - var(--header-height));
    position: relative;
    display: flex;
    justify-content: flex-start; /* Aligns content to the left */
    align-items: center;
    padding: 0;
    overflow: hidden;
}

#constructions-hero .hero-image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
}

#constructions-hero .hero-image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay for text contrast */
#constructions-hero .hero-image-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

#constructions-hero .container {
    position: relative;
    z-index: 2;
}

#constructions-hero .hero-content {
    text-align: left;
}

#constructions-hero .hero-content h1 {
    font-family: 'Cormorant', serif;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 400;
    color: var(--cream-color);
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

#constructions-hero .contact-button {
    background-color: transparent;
    border: 2px solid var(--cream-color);
    color: var(--cream-color);
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

#constructions-hero .contact-button:hover {
    background-color: var(--cream-color);
    color: var(--primary-color);
}

/* ================================================
   SCROLL ANIMATION STYLES
   ================================================ */

.animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Staggered delay for the two items */
#constructions-hero .animate-item:nth-child(1) {
    transition-delay: 0.2s;
}

#constructions-hero .animate-item:nth-child(2) {
    transition-delay: 0.4s;
}

.animate-item.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ================================================
   CONSTRUCTIONS PAGE - INFO SECTION
   ================================================ */

.info-section {
    padding: 0;
    background-color: var(--gold-color);
    color: var(--cream-color);
}

.info-split-container {
    display: flex;
    align-items: stretch; /* Makes columns equal height */
    width: 100%;
}

.info-text-column {
    width: 50%;
    padding: 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-text-column .section-top-line {
    border: none;
    height: 1px;
    background-color: rgba(255, 250, 235, 0.7);
    width: 100%;
    max-width: 350px;
    margin: 0 0 3rem 0;
}

.info-text-column h2 {
    font-family: 'Cormorant', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.info-text-column ul {
    list-style: none;
    padding-left: 0;
}

.info-text-column li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2em;
    position: relative;
}

.info-text-column li::before {
    content: '•';
    color: var(--cream-color);
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1.5em;
    position: absolute;
}

.info-image-column {
    width: 50%;
    overflow: hidden;
}

.info-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.info-image-column:hover img {
    transform: scale(1.05);
}


/* Responsive adjustments */
@media (max-width: 900px) {
    .info-split-container {
        flex-direction: column-reverse; /* Stack image on top */
    }

    .info-text-column,
    .info-image-column {
        width: 100%;
    }

    .info-image-column {
        height: 400px;
    }
}
/* ================================================
   CONSTRUCTIONS PAGE - OFFER SECTION (CORRECTED)
   ================================================ */

.offer-section {
    padding: 6rem 0;
    background-color: var(--dark-brown);
    color: var(--cream-color);
    text-align: center;
}

.offer-section .section-top-line {
    border: none;
    height: 1px;
    background-color: rgba(255, 250, 235, 0.4);
    width: 100%;
    max-width: 500px;
    margin: 0 auto 3rem auto;
}

.offer-section h2 {
    font-family: 'Cormorant', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    color: var(--cream-color);
    margin-bottom: 1rem;
}

.offer-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.offer-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.offer-box {
    border: 1px solid rgba(255, 250, 235, 0.5);
    padding: 3rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    /* --- THIS IS THE FIX --- */
    transition: background-color 0.3s, transform 0.3s; /* Prepare the box for animation */
}

/* This new rule adds the hover effect */
.offer-box:hover {
    background-color: rgba(255, 255, 255, 0.05); /* Same subtle background as work-card */
    transform: translateY(-5px); /* Same lift effect */
}

.offer-box ul {
    list-style: none;
    padding-left: 0;
}

.offer-box li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    padding-left: 2em;
    position: relative;
}

.offer-box li:last-child {
    margin-bottom: 0;
}

.offer-box li::before {
    content: '•';
    color: var(--cream-color);
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -0.1em;
}