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

html{
    scroll-behavior:smooth;
}

body{
    background:#090909;
    color:#fff;
    font-family:Arial,Helvetica,sans-serif;
    line-height:1.6;
}

/* -------------------- */
/* NAVBAR */
/* -------------------- */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;

    max-width:1600px;
    margin:0 auto;

    padding:18px 60px;

    background:#111;

    border-bottom:2px solid #49ff36;
}

.nav-logo{
    display:flex;
    align-items:center;
}

.nav-logo img{
    width:340px;
    height:auto;
    display:block;
    transition:.25s ease;
}

.nav-logo img:hover{
    transform:scale(1.03);
}

.nav-phone{
    display:flex;
    align-items:center;
}

.nav-phone a{
    color:#49ff36;
    text-decoration:none;
    font-size:28px;
    font-weight:700;
    white-space:nowrap;
    transition:.25s;
}

.nav-phone a:hover{
    color:#fff;
}

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

.hero{

    min-height:82vh;

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

    padding:40px 20px;

    background:
        radial-gradient(circle at top,#173517,#090909);

}

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

.hero h1{
    font-size:88px;
    color:#56ff3d;
    margin-bottom:25px;

    text-shadow:
        0 0 10px #49ff36,
        0 0 25px #49ff36;
}

.hero h2{
    font-size:34px;
    margin-bottom:25px;
}

.hero p{
    font-size:22px;
    color:#cfcfcf;
    margin-bottom:55px;
}

/* -------------------- */
/* BUTTONS */
/* -------------------- */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    text-decoration:none;
    padding:22px 60px;
    border-radius:10px;
    font-size:24px;
    font-weight:bold;
    transition:.25s;
}

.btn-green{
    background:#49ff36;
    color:#111;
}

.btn-green:hover{
    transform:translateY(-4px);
    box-shadow:0 0 25px #49ff36;
}

.btn-dark{
    background:#222;
    color:#fff;
    border:2px solid #49ff36;
}

.btn-dark:hover{
    background:#49ff36;
    color:#000;
}

/* -------------------- */
/* SERVICES */
/* -------------------- */

.services{
    padding:90px 8%;
}

.services h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#161616;
    border:2px solid #49ff36;
    border-radius:12px;
    padding:35px;
    text-align:center;
    font-size:22px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 20px #49ff36;
}

/* -------------------- */
/* ABOUT */
/* -------------------- */

.about{
    padding:90px 8%;
    background:#111;
}

.about h2{
    text-align:center;
    font-size:42px;
    margin-bottom:30px;
}

.about ul{
    list-style:none;
    max-width:700px;
    margin:auto;
}

.about li{
    padding:12px 0;
    font-size:24px;
}

/* -------------------- */
/* FORM */
/* -------------------- */

#quote{
    padding:90px 8%;
}

#quote h2{
    text-align:center;
    font-size:42px;
    margin-bottom:40px;
}

form{
    max-width:700px;
    margin:auto;
}

input,
textarea{
    width:100%;
    padding:18px;
    margin-bottom:20px;
    background:#1b1b1b;
    border:2px solid #49ff36;
    color:#fff;
    border-radius:10px;
    font-size:18px;
}

textarea{
    height:180px;
    resize:vertical;
}

button{
    width:100%;
    background:#49ff36;
    color:#000;
    border:none;
    padding:20px;
    border-radius:10px;
    font-size:22px;
    font-weight:bold;
    cursor:pointer;
    transition:.25s;
}

button:hover{
    box-shadow:0 0 20px #49ff36;
}

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

footer{
    text-align:center;
    background:#050505;
    padding:60px 20px;
    border-top:2px solid #49ff36;
}

footer h3{
    color:#49ff36;
    font-size:32px;
    margin-bottom:20px;
}

footer p{
    color:#bbb;
    font-size:20px;
}

/* -------------------- */
/* MOBILE */
/* -------------------- */

@media (max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
        padding:20px;
    }

    .nav-logo img{
        width: 320px;px;
    }

    .nav-phone a{
        font-size:22px;
    }

    .hero{
        min-height:75vh;
        padding:30px 20px;
    }

    .hero h1{
        font-size:54px;
    }

    .hero h2{
        font-size:28px;
    }

    .hero p{
        font-size:18px;
    }

    .btn{
        width:100%;
        max-width:320px;
        font-size:20px;
        padding:18px;
    }
}