:root {
    --primary: #7fb2a4;
    --primary-dark: #67aa98;
    --primary-light: #82ceba;

    --dark: #1f2937;
    --gray: #6b7280;
    --light-bg: #f4f8f7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light-bg);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 80%;
    max-width: 2000px;
    margin: auto;
}

/* HERO */

.hero {
    min-height: 100vh;

    background:
        linear-gradient(
            rgba(20, 30, 30, 0.45),
            rgba(20, 30, 30, 0.55)
        ),

        url("../img/hero.png");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    color: white;

    background-attachment: fixed;
}

.hero-content {
    max-width: 760px;
}

/* LOGO */

.logo {
    width: 200px;
    height: 200px;

    margin-bottom: 30px;

    border-radius: 24px;

    background: rgb(255, 255, 255);

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

    padding-top: 0;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 10px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}

/* TYPO */

h1 {
    font-size: 3.7rem;
    line-height: 1.1;

    margin-bottom: 25px;

    font-weight: 500;
}

.hero p {
    font-size: 1.2rem;

    margin-bottom: 35px;

    color: #e5e7eb;
}

/* BUTTON */

.cta-button {
    display: inline-block;

    background: var(--primary);

    color: white;

    padding: 16px 32px;

    border-radius: 14px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.25s ease;
}

.cta-button:hover {
    background: var(--primary-dark);

    transform: translateY(-3px);
}

/* SECTION */

section {
    padding: 100px;
}

.section-title {
    text-align: center;

    font-size: 3rem;

    margin-bottom: 60px;

    color: var(--dark);
}

/* SERVICES */

.services {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 38px;
}

.card {
    background: white;

    padding: 42px;

    border-radius: 24px;

    box-shadow: 0 8px 30px rgba(0,0,0,0.06);

    border: 1px solid rgba(105,161,150,0.1);

    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.card h3 {
    margin-bottom: 15px;

    font-size: 1.25rem;

    color: var(--primary-dark);
}

.card p {
    color: var(--gray);
}

/* ABOUT */

.about {
    background: white;
}

.about-wrapper {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.about-image {
    width: 100%;
    height: 480px;

    border-radius: 28px;

    background:
        url("../img/hero2.png");

    background-size: cover;
    background-position: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about-text h2 {
    font-size: 2.5rem;

    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;

    color: var(--gray);

    font-size: 1.05rem;
}

/* CONTACT */

.contact {
    text-align: center;
}

.contact-box {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color: white;

    padding: 60px;

    border-radius: 30px;

    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.contact-box h2 {
    margin-bottom: 20px;

    font-size: 2.2rem;
}

.contact-box p {
    margin-bottom: 12px;

    color: rgba(255,255,255,0.92);

    font-size: 1.05rem;
}

.phone {
    font-size: 1.9rem;

    font-weight: 700;

    margin-top: 25px;
}

/* FOOTER */

footer {
    padding: 35px 0;

    text-align: center;

    color: #94a3b8;

    font-size: 0.95rem;
}

/* MOBILE */

@media(max-width: 900px) {

    h1 {
        font-size: 2.6rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 320px;
    }

    .hero {
        padding: 80px 0;
    }

    .contact-box {
        padding: 40px 25px;
    }

    .phone {
        font-size: 1.5rem;
    }
}