/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Open Sans',sans-serif;
    background:#FAF8F5;
    color:#333;
    line-height:1.7;
}

/* ===========================
   CONTAINER
=========================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   HEADER
=========================== */

header{
    position:sticky;
    top:0;
    background:#ffffff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    z-index:1000;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    gap:15px;
}

.logo img{
    width:70px;
    height:auto;
}

.logo-text h2{
    font-family:'Poppins',sans-serif;
    color:#6B2737;
    font-size:28px;
}

.logo-text span{
    color:#777;
    font-size:14px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#6B2737;
}

.call-button{
    background:#7A9E4B;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.call-button:hover{
    background:#66863d;
}

/* ===========================
   HERO
=========================== */

.hero{
    padding:80px 0;
}

.hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-family:'Poppins',sans-serif;
    font-size:52px;
    color:#6B2737;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-text p{
    font-size:18px;
    margin-bottom:35px;
    color:#555;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    background:#6B2737;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:8px;
    transition:.3s;
    font-weight:600;
}

.btn:hover{
    background:#521d2a;
}

.btn-secondary{
    border:2px solid #6B2737;
    color:#6B2737;
    text-decoration:none;
    padding:12px 28px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn-secondary:hover{
    background:#6B2737;
    color:#fff;
}

.hero-image{
    flex:1;
}

.hero-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/* ===========================
   SECTIONS
=========================== */

section{
    padding:80px 0;
}

section h2{
    font-family:'Poppins',sans-serif;
    font-size:36px;
    color:#6B2737;
    margin-bottom:25px;
    text-align:center;
}

/* ===========================
   ABOUT
=========================== */

.about-container{
    display:flex;
    align-items:center;
    gap:60px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.about-text{
    flex:1;
}

.about-text h2{
    text-align:left;
}

.about-text p{
    margin-bottom:18px;
}

/* ===========================
   SERVICES
=========================== */

.services{
    background:#F5F6F7;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.service-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    color:#6B2737;
    margin-bottom:15px;
}

/* ===========================
   WHY US
=========================== */

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    margin-top:50px;
}

.why-card{
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.why-card h3{
    color:#6B2737;
    margin-bottom:15px;
}

/* ===========================
   CTA
=========================== */

.cta{
    background:#6B2737;
    color:#fff;
    text-align:center;
}

.cta h2{
    color:#fff;
}

.cta p{
    max-width:700px;
    margin:20px auto 35px;
}

.cta .btn{
    background:#D4AF37;
    color:#333;
}

.cta .btn:hover{
    background:#c59f25;
}

/* ===========================
   CONTACT
=========================== */

.contact{
    text-align:center;
}

.contact p{
    margin-bottom:15px;
    font-size:18px;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#222;
    color:#ddd;
    text-align:center;
    padding:30px 0;
}

footer p{
    margin:8px 0;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:900px){

    .nav-container{
        flex-direction:column;
        gap:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .about-container{
        flex-direction:column;
    }

    .about-text h2{
        text-align:center;
    }

    .hero-text h1{
        font-size:38px;
    }

    section h2{
        font-size:30px;
    }
}

@media(max-width:600px){

    .hero-text h1{
        font-size:32px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn,
    .btn-secondary,
    .call-button{
        width:100%;
        text-align:center;
    }

    .logo{
        flex-direction:column;
        text-align:center;
    }

    .logo-text h2{
        font-size:24px;
    }
}