* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2937;
    background: #f8fafc;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}

section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 45px;
    color: #111827;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(15,23,42,0.35),
            rgba(15,23,42,0.35)
        ),
        url("img/hero-floor.png");

    background-size: cover;
    background-position: center;

    color: white;
}

.hero-content {
    max-width: 760px;
}

.label {
    color: #f59e0b;
    font-weight: bold;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 21px;
    color: #e5e7eb;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}



/* BUTTONS */
.btn {
    display: inline-block;
    background: #f59e0b;
    color: #111827;
    text-decoration: none;
    padding: 15px 34px;
    border-radius: 999px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #d97706;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #111827;
}

/* SERVICES */


.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card h3 {
    min-height: 80px;
}

.service-card span {
    display: inline-block;
    margin-top: 22px;
    color: #d97706;
    font-weight: 700;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 119, 6, 0.35);
}

html {
    scroll-behavior: smooth;
}

.card {
    background: #ffffff;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}



.card h3 {
    color: #d97706;
    margin-bottom: 14px;
    font-size: 23px;
     min-height: 80px;
    display: flex;
    align-items: flex-start;
}

.card p {
    color: #4b5563;
}

/* PROJECTS */
#projects {
    background: #111827;
    color: #ffffff;
}

#projects h2 {
    color: #ffffff;
}

.section-text {
    text-align: center;
    max-width: 650px;
    margin: -25px auto 40px;
    color: #cbd5e1;
    font-size: 18px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.project-item {
    border-radius: 20px;
    overflow: hidden;
    background: #1f2937;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.project-item h3 {
    margin-top: 14px;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.project-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.gallery-more {
    text-align: center;
    margin-top: 40px;
}

.gallery-more .btn {
    display: inline-block;
    padding: 14px 32px;
    background: #f59e0b;
    color: #111827;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.3s;
}

.gallery-more .btn:hover {
    transform: translateY(-2px);
}

/* WHY */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.why-grid div {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #f59e0b;
}

.why-grid h3 {
    margin-bottom: 12px;
    color: #111827;
}

.why-grid p {
    color: #4b5563;
}





/* CONTACT */
#contact {
    background: #f3f4f6;
    text-align: center;
}

.contact-box p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #4b5563;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.whatsapp-btn {
    background: #25d366;
    color: #111827;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

/* FOOTER */
footer {
    background: #111827;
    color: #cbd5e1;
    text-align: center;
    padding: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 90px 0;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 18px;
    }

    .services-grid,
    .projects-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 32px;
    }
}