/* ==========================================
   VARIABLES
========================================== */
:root{
    --primary:#6E8E86;
    --secondary:#AFC6BF;

    --background:#FAF7F2;
    --surface:#FFFFFF;

    --text:#333333;
    --text-light:#666666;

    --border:#E8E1D7;

    --shadow:0 5px 20px rgba(0,0,0,.08);

    --radius:16px;

    --transition:.3s ease;
}


/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ==========================================
   GLOBAL STYLES
========================================== */
body {
    font-family: Arial, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}
main{
    max-width:100%;
    overflow:hidden;
}

section{
    width:100%;
}

/* ==========================================
   NAVIGATION
========================================== */
header {
    background: var(--surface);
    box-shadow: var(--shadow);
}

.navbar {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 0;
}
.logo{
    text-decoration:none;
    font-size:1.8rem;
    font-weight:bold;
    color:var(--primary);
}
.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:var(--text);
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--primary);
}
/* ==========================================
   BUTTONS
========================================== */
/* ==========================
   HAMBURGER MENU
========================== */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:2rem;
    cursor:pointer;
    color:var(--primary);
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:30px;
}

/* ==========================================
   RESPONSIVE
========================================== */



/* ==========================
   HERO SECTION
========================== */

.hero{
    max-width:900px;
    margin:0 auto;
    padding:60px 40px;
}
.hero-content{
    max-width:900px;
    margin:0 auto;
}

.hero-content h1{
    font-size:3rem;
    margin-bottom:20px;
    line-height:1.2;
    text-align:left;
}

.hero-content p{
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:30px;
    color:#555;
    max-width:750px;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    background:#6E8E86;
    color:white;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
}

.btn:hover{
    background:#5b7770;
}

.hero-image{
    flex:1;
}

.hero-image img{
    width:100%;
    border-radius:20px;
}
/* ==========================
   ABOUT PREVIEW
========================== */

.about-preview{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    max-width:1400px;
    margin:70px auto;
    padding:0 40px;
}

.about-image{
    flex:0 0 500px;
}

.about-content{
    flex:1;
    max-width:700px;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.about-content h2{
    font-size:2.5rem;
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:20px;
    color:var(--text-light);
    line-height:1.8;
}
/* ==========================
   WHY CHOOSE
========================== */

.why-choose{
    max-width:1400px;
    margin:70px auto;
    padding:0 40px;
    text-align:center;
}

.why-choose h2{
    font-size:2.5rem;
    margin-bottom:50px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature-card{
    background:var(--surface);
    padding:30px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card h3{
    margin-bottom:15px;
    color:var(--primary);
}

.feature-card p{
    color:var(--text-light);
    line-height:1.7;
}
/* ==========================
   SERVICES PREVIEW
========================== */

.services-preview{
    max-width:1400px;
    margin:70px auto;
    padding:0 40px;
}

.services-preview h2{
    text-align:center;
    font-size:2.5rem;
    margin-bottom:50px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.service-card{
    background:var(--surface);
    padding:35px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    margin-bottom:15px;
    color:var(--primary);
}

.service-card p{
    margin-bottom:20px;
    color:var(--text-light);
}

.service-card a{
    color:var(--primary);
    text-decoration:none;
    font-weight:bold;
}
/* ==========================
   CALL TO ACTION
========================== */

.cta{
    background:var(--primary);
    color:white;
    text-align:center;
    padding:100px 40px;
    margin-top:100px;
}

.cta-content{
    max-width:700px;
    margin:0 auto;
}

.cta h2{
    font-size:2.5rem;
    margin-bottom:20px;
}

.cta p{
    margin-bottom:35px;
    font-size:1.1rem;
    line-height:1.8;
}

.cta .btn{
    background:white;
    color:var(--primary);
    font-weight:bold;
}

.cta .btn:hover{
    background:#f2f2f2;
}
/* ==========================
   FOOTER
========================== */

footer{
    background:#1f2937;
    color:white;
    padding:60px 40px 20px;
}

.footer-content{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-column h3{
    margin-bottom:20px;
    color:white;
}

.footer-column p,
.footer-column a{
    display:block;
    color:#d1d5db;
    text-decoration:none;
    margin-bottom:10px;
}

.footer-column a:hover{
    color:white;
}

.footer-bottom{
    text-align:center;
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
}
.nav-btn{
    padding:12px 24px;
}
.nav-links a.active{
    color:var(--primary);
    font-weight:600;
}
/* ==========================
   CONTACT PAGE
========================== */

.contact-section{
    max-width:800px;
    margin:70px auto;
    padding:0 40px;
    text-align:center;
}

.contact-section h2{
    font-size:2.5rem;
    margin-bottom:20px;
}

.contact-intro{
    color:var(--text-light);
    line-height:1.8;
    margin-bottom:40px;
}

.contact-section form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-section input,
.contact-section textarea{
    width:100%;
    padding:16px;
    border:1px solid var(--border);
    border-radius:var(--radius);
    font-size:1rem;
    font-family:inherit;
}

.contact-section textarea{
    resize:vertical;
    min-height:180px;
}

.contact-section .btn{
    align-self:center;
    margin-top:10px;
}

.contact-info{
    margin-top:60px;
    padding-top:40px;
    border-top:1px solid var(--border);
}

.contact-info h3{
    margin-bottom:20px;
    color:var(--primary);
}

.contact-info p{
    margin-bottom:20px;
    line-height:1.8;
    color:var(--text-light);
}

.contact-info a{
    color:var(--primary);
    text-decoration:none;
    font-weight:bold;
}

.contact-info a:hover{
    text-decoration:underline;
}
/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

    .navbar{
        width:100%;
        padding:20px;
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-wrap:wrap;
    }

    .logo{
        font-size:1.8rem;
    }

    .menu-toggle{
        display:block;
    }

    .nav-menu{
        display:none;
        width:100%;
        flex-direction:column;
        margin-top:20px;
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-links{
        width:100%;
        flex-direction:column;
        align-items:center;
        gap:20px;
    }

    .nav-btn{
        width:100%;
        text-align:center;
    }

    .hero{
        padding:40px 20px;
    }

    .hero-content h1{
        font-size:2.3rem;
        text-align:left;
    }

    .hero-content p{
        text-align:left;
    }

    .about-preview{
        flex-direction:column;
        padding:0 20px;
    }

    .about-image{
        width:100%;
        flex:none;
    }

    .about-content{
        text-align:left;
        max-width:100%;
    }

    .features,
    .service-grid{
        grid-template-columns:1fr;
    }

    .footer-content{
        grid-template-columns:1fr;
        text-align:center;
    }

}