@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
html{
    scroll-behavior: smooth;
}
:root{
    --primary:#B87333;
    --primary-dark:#8B5A2B;
    --dark:#1F2937;
    --light:#FAFAFA;
    --text:#555;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:var(--light);
}

/* Navbar */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo img{
    height:75px;
    width:auto;
    transition:.3s;
}

.logo img:hover{
    transform:scale(1.05);
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#1F2937;
    font-weight:600;
    font-size:16px;
    transition:.3s;
    position:relative;
}

.nav-links a:hover{
    color:#B87333;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#B87333;
    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    background:#FFF9F4;
    padding:90px 8%;
}

.hero-content{
    max-width:1200px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-text h1{

    font-size:48px;
    color:#1F2937;
    line-height:1.2;
    margin-bottom:20px;

}

.hero-text p{

    font-size:18px;
    color:#555;
    line-height:1.8;
    margin-bottom:35px;

}

.btn{

    display:inline-block;
    background:#B87333;
    color:#fff;
    text-decoration:none;

    padding:16px 36px;

    border-radius:8px;

    font-size:17px;
    font-weight:600;

    transition:.3s;

}

.btn:hover{

    background:#8B5A2B;
    transform:translateY(-3px);

}

.hero-image{

    flex:1;
    text-align:right;

}

.hero-image img{

    width:100%;
    max-width:520px;

}
/* =========================
   ABOUT SECTION
========================= */

.about{
    padding:90px 8%;
    background:#ffffff;
    text-align:center;
}

.about h2{
    font-size:38px;
    color:#1F2937;
    margin-bottom:15px;
    position:relative;
}

.about h2::after{
    content:"";
    width:70px;
    height:4px;
    background:#B87333;
    display:block;
    margin:12px auto 0;
    border-radius:10px;
}

.about p{
    max-width:750px;
    margin:35px auto;
    color:#555;
    font-size:18px;
    line-height:1.9;
}

.about .btn{
    margin-top:10px;
}
/* SERVICES */

.services{
    padding:90px 8%;
    background:#F8F8F8;
    text-align:center;
}

.services h2{
    font-size:38px;
    color:#1F2937;
    margin-bottom:15px;
}

.services-subtitle{
    color:#666;
    margin-bottom:50px;
    font-size:18px;
}

.service-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.service-card{
    width:340px;
    background:#fff;
    padding:35px 30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
    border-top:5px solid #B87333;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,0.12);
}

.service-card h3{
    color:#B87333;
    font-size:24px;
    margin-bottom:20px;
}

.service-card p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}
/* =========================
   CONTACT SECTION
========================= */

.contact{
    padding:90px 8%;
    text-align:center;
    background:#FFF9F4;
}

.contact h2{
    font-size:38px;
    color:#1F2937;
    margin-bottom:12px;
}

.contact p{
    color:#666;
    margin-bottom:40px;
    font-size:17px;
}

.contact form{
    max-width:650px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact input,
.contact textarea{
    width:100%;
    padding:15px 18px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:8px;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    transition:.3s;
}

.contact input:focus,
.contact textarea:focus{
    outline:none;
    border-color:#B87333;
    box-shadow:0 0 8px rgba(184,115,51,.15);
}

.contact textarea{
    height:150px;
    resize:none;
}

.contact button{
    background:#B87333;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:8px;
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact button:hover{
    background:#8B5A2B;
    transform:translateY(-2px);
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#1F2937;
    color:#fff;
    text-align:center;
    padding:50px 20px 35px;
}

.footer h3{
    font-size:30px;
    margin-bottom:8px;
    color:#B87333;
}

.footer p{
    color:#D1D5DB;
    margin:7px 0;
    font-size:15px;
}

.footer p:last-child{
    margin-top:25px;
    font-size:14px;
    color:#9CA3AF;
}
/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px){

    .navbar{
        flex-direction: column;
        padding: 15px 5%;
    }

    .nav-links{
        margin-top: 15px;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content{
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1{
        font-size: 38px;
    }

    .hero-image{
        text-align: center;
        margin-top: 30px;
    }

    .hero-image img{
        max-width: 100%;
    }

    .service-container{
        flex-direction: column;
        align-items: center;
    }

    .service-card{
        width: 100%;
        max-width: 400px;
    }

    .about,
    .services,
    .contact{
        padding: 70px 6%;
    }

}
/* =========================
   MOBILE MENU
========================= */

.menu-toggle{
    display:none;
    width:32px;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    height:3px;
    margin:6px 0;
    background:#B87333;
    border-radius:5px;
    transition:0.3s;
}

@media (max-width:768px){

    .navbar{
        flex-direction:row;
        padding:12px 5%;
    }

    .logo img{
        height:65px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:center;
        gap:0;
        padding:15px 0;
        box-shadow:0 8px 15px rgba(0,0,0,0.08);
    }
    .nav-links.active{
    display:flex;
}

    .nav-links li{
        width:100%;
        text-align:center;
    }

    .nav-links a{
        display:block;
        padding:12px;
    }

}
.menu-toggle.open span:nth-child(1){
    transform:rotate(45deg) translate(6px, 6px);
}

.menu-toggle.open span:nth-child(2){
    opacity:0;
}

.menu-toggle.open span:nth-child(3){
    transform:rotate(-45deg) translate(6px, -6px);
}
/* =========================
   SCROLL ANIMATION
========================= */

.about,
.services,
.contact {
    animation: fadeUp 1s ease both;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
/* =========================
   SERVICE CARD POLISH
========================= */

.service-card{
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#B87333;
}

.service-card h3{
    margin-top:8px;
    margin-bottom:18px;
    font-size:22px;
}

.service-card p{
    font-size:16px;
    line-height:1.8;
}
/* =========================
   SERVICE DETAIL PAGE
========================= */

.service-detail{
    padding:90px 8%;
    text-align:center;
    background:#FFF9F4;
    min-height:70vh;
}

.service-detail h1{
    font-size:48px;
    color:#1F2937;
    margin-bottom:20px;
}

.service-detail-intro{
    max-width:750px;
    margin:0 auto 60px;
    color:#555;
    font-size:17px;
    line-height:1.8;
}

.service-detail h2{
    font-size:36px;
    color:#1F2937;
    margin-bottom:35px;
}

.included-services{
    max-width:1100px;
    margin:0 auto 50px;
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.included-card{
    width:320px;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    text-align:left;
    transition:.3s;
}

.included-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(184,115,51,.18);
}

.included-card h3{
    color:#1F2937;
    font-size:21px;
    margin-bottom:12px;
    position:relative;
    padding-left:30px;
}

.included-card h3::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#B87333;
    font-size:22px;
    font-weight:700;
}

.included-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

.service-detail .btn{
    margin-top:10px;
}
/* Service page improvements */

.service-detail{
    padding:100px 8%;
    background:#FFF9F4;
    text-align:center;
}

.service-detail h1{
    font-size:52px;
    font-weight:700;
    color:#1F2937;
    margin-bottom:20px;
}

.service-detail-intro{
    max-width:750px;
    margin:0 auto 65px;
    font-size:18px;
    line-height:1.8;
    color:#555;
}

.service-detail h2{
    font-size:38px;
    color:#1F2937;
    margin-bottom:40px;
}

.included-services{
    max-width:1100px;
    margin:0 auto 55px;
}

.included-card{
    min-height:180px;
}
/* =========================
   SERVICE PAGES - MOBILE
========================= */

@media (max-width: 768px){

    .service-detail{
        padding:70px 20px;
    }

    .service-detail h1{
        font-size:38px;
    }

    .service-detail-intro{
        font-size:16px;
        margin-bottom:45px;
    }

    .service-detail h2{
        font-size:30px;
        margin-bottom:30px;
    }

    .included-services{
        width:100%;
    }

    .included-card{
        width:100%;
        min-height:auto;
        padding:25px;
    }

    .included-card h3{
        font-size:19px;
    }

    .included-card p{
        font-size:15px;
    }

}
/* =========================
   SERVICES - MOBILE FIX
========================= */

@media (max-width: 768px){

    .services{
        padding:60px 18px;
    }

    .services h2{
        font-size:32px;
        margin-bottom:10px;
    }

    .services-subtitle{
        font-size:15px;
        line-height:1.6;
        margin:0 auto 30px;
        max-width:330px;
    }

    .service-container{
        gap:18px;
    }

    .service-card{
        width:100%;
        max-width:350px;
        padding:25px 22px;
        border-radius:12px;
        margin:0 auto;
    }

    .service-card h3{
        font-size:22px;
        margin-bottom:12px;
    }

    .service-card p{
        font-size:14px;
        line-height:1.65;
        margin-bottom:18px;
    }

    .service-btn{
        font-size:14px;
        padding:10px 18px;
        border-radius:7px;
    }

}
/* =========================
   SERVICE READ MORE BUTTON
========================= */

.service-btn{
    display:inline-block;
    margin-top:10px;
    padding:11px 22px;

    background:#B87333;
    color:#fff !important;

    text-decoration:none !important;

    border-radius:7px;
    font-size:15px;
    font-weight:600;

    transition:0.3s;
}

.service-btn:hover{
    background:#9C612C;
    transform:translateY(-2px);
}
@media (max-width: 768px){

    .services h2{
        text-align: center !important;
        margin: 0 auto 10px !important;
        padding: 0 !important;
    }

    .services-subtitle{
        text-align: center !important;
        margin: 0 auto 30px !important;
        padding: 0 !important;
        max-width: 330px;
    }

}
@media (max-width: 768px){

    .services h2{
        width:100% !important;
        text-align:center !important;
        margin:0 auto 10px !important;
        padding:0 !important;
        left:auto !important;
        transform:none !important;
    }

}
@media (max-width: 768px){

    .services-title{
        width:100%;
        text-align:center !important;
        margin:0 auto 10px !important;
        padding:0 !important;
        transform:none !important;
        position:static !important;
    }

}
.services-title{
    width:100%;
    text-align:center;
    margin:0 auto 20px;
}
@media (min-width: 769px){

    .services-title{
        font-size: 40px !important;
        text-align: center !important;
        margin: 0 auto 20px !important;
    }

    .services-subtitle{
        text-align: center !important;
        margin: 0 auto 40px !important;
        max-width: 700px;
    }

}
.service-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:20px;
}

.secondary-btn{
    background:transparent !important;
    color:#B87333 !important;
    border:2px solid #B87333;
}

.secondary-btn:hover{
    background:#B87333 !important;
    color:#fff !important;
}
@media (max-width: 768px){

    .service-actions{
        flex-direction:column;
        width:100%;
        gap:12px;
    }

    .service-actions .btn{
        width:100%;
        max-width:280px;
        text-align:center;
        box-sizing:border-box;
    }

}
/* =========================
   CONTACT SECTION
========================= */

.contact{
    text-align:center;
    padding:70px 20px;
}

.contact h2{
    font-size:40px;
    margin-bottom:15px;
}

.contact > p{
    font-size:18px;
    margin-bottom:35px;
}

.contact form{
    max-width:600px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact input,
.contact textarea{
    width:100%;
    box-sizing:border-box;
    padding:15px 18px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
    font-family:inherit;
    outline:none;
}

.contact textarea{
    min-height:150px;
    resize:vertical;
}

.contact input:focus,
.contact textarea:focus{
    border-color:#B87333;
}

.contact button{
    align-self:center;
    padding:13px 28px;
    border:none;
    border-radius:7px;
    background:#B87333;
    color:white;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}
@media (max-width:768px){

    .contact{
        padding:50px 18px;
    }

    .contact h2{
        font-size:32px;
    }

    .contact > p{
        font-size:16px;
    }

    .contact form{
        width:100%;
    }

}
@media (max-width: 768px){

    .services{
        padding-top: 30px !important;
    }

    .services-title{
        font-size: 36px !important;
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }

}
.contact-email{
    margin: -15px auto 30px;
    font-size: 16px;
}

.contact-email a{
    color: #B87333;
    text-decoration: none;
    font-weight: 600;
}

.contact-email a:hover{
    text-decoration: underline;
}

   
