/* =========================
   HOME PAGE (RESTORED DESIGN)
========================= */

/* HERO SECTION */
.highlight-strip {
    background-color: #2c473c;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px 0;
    overflow: visible;

    margin-bottom: 120px;
}

/* HERO IMAGE */
.highlight-strip img {
    width: 90%;
    height: 700px;
    object-fit: cover;
    display: block;
    object-position: center 30%;
    margin-bottom: -150px;
}

/* CENTER CARD */
.white-rect {

    position: absolute;

    top: 55%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: clamp(180px, 22vw, 320px);
    height: clamp(240px, 30vw, 420px);

    background: #f0f0f0;

    z-index: 10;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}


/* HERO TEXT */
.rect-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.rect-text span {
    line-height: 0.8;
}

.rect-text .top-word {

    font-family: "Courier New";
    font-size: clamp(42px, 5vw, 74px);
    font-weight: 300;

}


.rect-text .bottom-word {

    font-family: "Courier New";
    font-size: clamp(52px, 6.5vw, 96px);
    font-weight: 300;

}

/* CORNER TEXT */

.corner-text {
    position:absolute;
    left:20px;
    bottom:20px;
    text-align:left;
    font-family: "Courier New";
    font-size:16px;
    font-weight:500;
    letter-spacing:0.2px;
    line-height:normal;
    opacity:0.85;
    color:#333;

}

.corner-text p {
    margin: 0;
    line-height: 1;
}


/* =========================
   INTRO TEXT
========================= */

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 120px auto 25px;
    padding: 0 20px;
}

.top-section-Home {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c473c;
}

.bottom-section-Home {
    font-size: 18px;
    line-height: 1.6;
}

/* CTA */
.home-cta-wrapper {
    display: flex;
    justify-content: center;
    margin: 10px 0 80px; 
}

.home-cta {
    padding: 14px 38px;
    background: #2c473c;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.home-cta:hover {
    background: #3a6c5e;
    transform: translateY(-3px);
}

/* =========================
   SERVICES SECTION (HOME)
========================= */


#services {
    margin-top: 15px;
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 80px 0;
    overflow: hidden;
}

/* =========================
   BACKGROUND (clean version)
========================= */

#services::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        #f0f0f0 30%,
        #D6C0B3 70%
    );

    z-index: -1;
}

.services-anchor {
    scroll-margin-top: 150px;
}


/* =========================
   IMAGES
========================= */

.services-image-container {
    width: 80%;
    max-width: 1200px;

    display: flex;
    justify-content: center;
    gap: 20px;

    margin-bottom: 30px;
}

.services-image-container img {
    width: 50%;
    height: 420px;

    object-fit: cover;
    border-radius: 14px;
}

/* =========================
   TITLE
========================= */

.service-title-main {
    font-size: 32px;
    margin: 20px 0 40px;
    text-align: center;
}


/* =========================
   SERVICE CARDS (FIXED GRID)
========================= */

.services-columns {
    width: 90%;
    max-width: 1200px;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* =========================
   CARD STYLE
========================= */

.service-column {
    text-align: center;

    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(6px);

    padding: 18px;
    border-radius: 12px;

    transition: 0.3s ease;

    display: flex;
    flex-direction: column;
    align-items: center;   /* 👈 IMPORTANT CENTER FIX */
}

.service-column:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* =========================
   ICON IMAGE
========================= */

.service-column img {
    width: 85px;
    height: 85px;

    object-fit: cover;

    margin: 0 auto 12px;
    display: block;

    border-radius: 12px;
}

/* =========================
   TEXT
========================= */

.service-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

/* =========================
   MOBILE FIXES
========================= */

@media (max-width:768px){

    /* =========================
       HERO
    ========================= */

    .highlight-strip {
        padding:20px 0;
        margin-bottom:40px;
    }

    .highlight-strip img {
        width:92%;
        height:400px;
        margin-bottom:0;
    }

    .white-rect {
        width:190px;
        height:250px;
    }

    .rect-text span {
        letter-spacing:-2px;
    }

    .rect-text .top-word {
        font-size:36px;
    }

    .rect-text .bottom-word {
        font-size:46px;
    }

    .corner-text {
        left:10px;
        bottom:10px;
        font-size:12px;
    }

    /* =========================
       INTRO
    ========================= */

    .intro-text {
        margin:30px auto 1cqh;
    }

    .top-section-Home {
        font-size:32px;
    }

    .bottom-section-Home {
        font-size:16px;
    }


    /* =========================
       BUTTON
    ========================= */

    .home-cta-wrapper {
        margin-bottom:30px;
    }


    /* =========================
       SERVICES IMAGES
    ========================= */

    .services-image-container {

        width:90%;
        flex-direction:column;

    }

    .services-image-container img {

        width:100%;
        height:280px;

    }

    /* =========================
       SERVICES GRID
    ========================= */

    .services-columns {

        width:90%;
        grid-template-columns:1fr;
        gap:20px;

    }

    .service-column {

        width:100%;

    }

    .service-column img {

        width:75px;
        height:75px;

    }

    .service-desc {

        font-size:14px;

    }

}



/* =========================
   SMALL PHONES
========================= */

@media(max-width:480px){

    .highlight-strip img {

        height:330px;

    }

    .white-rect {

        width:160px;
        height:220px;

    }

    .rect-text .top-word {

        font-size:30px;

    }

    .rect-text .bottom-word {

        font-size:38px;

    }

    .corner-text {

        left:8px;
        bottom:8px;
        font-size:11px;

    }

    .service-title-main {

        font-size:26px;

    }

}
