

.service-area {
    text-align: center;
    padding: 60px 20px;
    background: white;
}

.service-area h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.locations {
    max-width: 900px;
    margin: 30px auto 0;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.locations span {
    padding: 10px 18px;
    background: #f5f5f5;
    border-radius: 25px;
    font-weight: bold;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;

    background: #25D366;
    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    text-decoration: none;

    box-shadow: 0 4px 15px rgba(0,0,0,0.3);

    z-index: 9999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* NAVIGATION */

.navbar {
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.nav-logo span {
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
}

.nav-links a:hover {
    color: #f59e0b;
}


/* PROJECTS */

.projects {
    text-align: center;
    padding: 70px 20px;
    background: #f5f5f5;
}

.projects h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.project-box {
    display: inline-block;
    vertical-align: top;
    width: 280px;
    min-height: 150px;
    margin: 10px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.project-box h3 {
    margin-bottom: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #f5f5f5;
}

/* HEADER */

header {
    background: #111827;
    color: white;
    text-align: center;
    padding: 25px 15px;
}

header h1 {
    font-size: 30px;
}

header p {
    font-size: 17px;
}


/* HERO */

.hero {
    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: white;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.62),
            rgba(0, 0, 0, 0.62)
        ),
        url("images/construction.png");

    background-size: cover;
    background-position: center;

    padding: 80px 20px;
}

.hero-content {
    max-width: 900px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.hero-small {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 58px;
    margin: 15px 0;
}

.hero-subtitle {
    font-size: 25px;
    font-weight: bold;
}

.hero-description {
    font-size: 18px;
    margin-top: 15px;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-btn {
    display: inline-block;

    padding: 15px 30px;
    margin: 8px;

    background: #f59e0b;
    color: white;

    text-decoration: none;
    font-weight: bold;

    border-radius: 5px;
}

.hero-btn.whatsapp {
    background: #25D366;
}

.hero-btn:hover {
    opacity: 0.85;
}

/* BUTTON */

.button {
    display: inline-block;
    padding: 14px 25px;
    margin: 10px;
    background: #f59e0b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.whatsapp {
    background: #16a34a;
}

.button:hover {
    opacity: 0.85;
}


/* SERVICES */

.services {
    padding: 90px 20px;
    background: #f7f7f7;
    text-align: center;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-heading p {
    color: #f59e0b;
    font-weight: bold;
    letter-spacing: 2px;
}

.section-heading h2 {
    font-size: 38px;
    margin: 10px 0;
}

.section-heading span {
    color: #666;
}

.services-container {
    max-width: 1150px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 35px 25px;

    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    font-size: 45px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 21px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-card a {
    color: #f59e0b;
    font-weight: bold;
    text-decoration: none;
}


/* ABOUT */
/*
.about {
    background: white;
    text-align: center;
    padding: 70px 20px;
}

.about p {
    max-width: 700px;
    margin: 10px auto;
}

.about h3 {
    margin-top: 25px;
}*/

.about {
    background: white;
    padding: 80px 7%;
}

.about-content {
    max-width: 1100px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 17px;
}

.about-text h3 {
    margin-top: 25px;
    font-size: 22px;
}

.about-highlights {
    flex: 0 0 300px;
}

.about-highlights div {
    padding: 20px;
    margin-bottom: 15px;

    background: #f5f5f5;
    border-left: 5px solid #f59e0b;

    border-radius: 5px;
}

.about-highlights strong {
    display: block;
    font-size: 22px;
}

.about-highlights span {
    display: block;
    margin-top: 5px;
}


/* CONTACT */

.contact {
    background: #111827;
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.contact p {
    margin: 8px;
}


/* FOOTER */

footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 18px;
}

.logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.project-gallery {
    max-width: 1150px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;

    display: block;
}

.project-info {
    padding: 20px;
    text-align: left;
}

.project-info h3 {
    margin-bottom: 5px;
}

.project-info p {
    color: #777;
}


.quote {
    text-align: center;
    padding: 70px 20px;
    background: white;
}

.quote h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.quote form {
    max-width: 600px;
    margin: 30px auto 0;
}

.quote input,
.quote textarea {
    width: 100%;
    padding: 15px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.quote button {
    padding: 14px 30px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    background: #f59e0b;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}


.why-us {
    padding: 80px 20px;
    text-align: center;
    background: #f5f5f5;
}

.why-us h2 {
    font-size: 34px;
    margin-bottom: 40px;
}

.why-container {
    max-width: 1100px;
    margin: auto;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.why-box {
    width: 240px;
    padding: 30px 20px;

    background: white;
    border-radius: 10px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.why-box h3 {
    margin-bottom: 10px;
}


/* MOBILE */

.mobile-contact-bar {
    display: none;
}

@media (max-width: 600px) {

    .mobile-contact-bar {
        display: flex;

        position: fixed;
        bottom: 0;
        left: 0;

        width: 100%;

        z-index: 9998;

        box-shadow: 0 -3px 12px rgba(0,0,0,0.2);
    }

    .mobile-contact-bar a {
        width: 50%;

        padding: 16px 10px;

        text-align: center;

        color: white;

        text-decoration: none;

        font-weight: bold;

        font-size: 16px;
    }

    .mobile-contact-bar a:first-child {
        background: #f59e0b;
    }

    .mobile-contact-bar a:last-child {
        background: #25D366;
    }

    body {
        padding-bottom: 60px;
    }

}

@media (max-width: 900px) {

    .project-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .project-gallery {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 900px) {

    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .services-container {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .hero {
    min-height: 600px;
}

.hero-logo {
    width: 90px;
    height: 90px;
}

.hero h2 {
    font-size: 38px;
}

.hero-subtitle {
    font-size: 19px;
}

.hero-description {
    font-size: 15px;
}

.hero-btn {
    display: block;
    max-width: 250px;
    margin: 10px auto;
}

    header h1 {
        font-size: 23px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 17px;
    }

    .service-box {
        width: 90%;
    }

.navbar {
    flex-direction: column;
    gap: 15px;
}

.nav-links {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-logo span {
    font-size: 17px;
}

.about-content {
    flex-direction: column;
}

.about-text h2 {
    font-size: 30px;
}

.about-highlights {
    width: 100%;
}

}
```
