/* -------- GLOBAL -------- */

body {
    margin: 0;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    color: #243245;
}

h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

/* -------- HERO SECTION -------- */

.hero {
    background-color: #243245; /* Fixro navy */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px;
    flex-wrap: wrap;
}

.logo {
    width: 170px;
    margin-bottom: 30px;
}

.hero-content {
    max-width: 45%;
    text-align: left;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 16px;
    opacity: 0.9;
}

.hero-image {
    width: 50%;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* -------- SERVICES (Improved Styling) -------- */

.services {
    padding: 80px 40px;
    background: #ffffff;
    text-align: center;
}

.services h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 45px;
    color: #243245;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 60px;
}

.services-grid div {
    font-size: 18px;
    padding: 10px 0;
    text-align: left;
    border-bottom: 1px solid #e4e7eb;
    color: #243245;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .services-grid div {
        font-size: 17px;
    }
}


/* -------- GALLERY -------- */

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 50px 30px;
}

.gallery img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 12px;
}

/* -------- FOOTER -------- */

footer {
    background-color: #f3f4f6;
    text-align: center;
    padding: 40px 20px;
}

.footer-logo {
    width: 130px;
    margin-bottom: 20px;
}

footer p {
    color: #243245;
    font-size: 14px;
    margin: 5px 0;
}

/* -------- RESPONSIVE -------- */

@media (max-width: 900px) {
    .hero {
        padding: 50px 25px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: left;
    }

    .hero-image {
        width: 100%;
        margin-top: 30px;
    }

    .services ul {
        columns: 1;
    }

    .gallery {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .gallery img {
        height: 260px;
    }
}
