
/* =========================================================
   GLOBAL
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --green:#087b55;
    --green-dark:#04563c;
    --green-light:#eaf8f2;

    --orange:#ff6735;
    --orange-dark:#e95020;

    --black:#101714;
    --dark:#17211d;

    --text:#606b66;
    --white:#ffffff;

    --light:#f5f8f6;
    --border:#e2ebe6;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"DM Sans",sans-serif;
    color:var(--dark);
    background:#fff;
    line-height:1.6;
    overflow-x:hidden;
}

h1,
h2,
h3,
h4{
    font-family:"Plus Jakarta Sans",sans-serif;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea,
select{
    font-family:inherit;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(1180px,92%);
    margin:auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.topbar{
    background:var(--black);
    color:#fff;
   font-size:14px;
    padding:9px 0;
}

.topbar-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.logo img{width:300px;}
.topbar-left{
    display:flex;
    align-items:center;
    gap:8px;
}

.topbar-left i{
    color:#67dbaa;
}

.topbar-right{
    display:flex;
    align-items:center;
    gap:22px;
}

.topbar-right span{
    display:flex;
    align-items:center;
    gap:7px;
}

.topbar-right i{
    color:#67dbaa;
}


/* =========================================================
   HEADER
========================================================= */

header{
    position:sticky;
    top:0;
    z-index:1000;

    background:rgba(255,255,255,.97);

    backdrop-filter:blur(15px);

    border-bottom:1px solid var(--border);
}

.navbar{
    height:82px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;
}


/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:11px;
    flex-shrink:0;
}

.logo-mark{
    width:46px;
    height:46px;

    border-radius:13px;

    background:var(--green);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-family:"Plus Jakarta Sans";
    font-size:21px;
    font-weight:800;

    position:relative;
}

.logo-mark:after{
    content:"";

    position:absolute;

    width:9px;
    height:9px;

    border-radius:50%;

    background:var(--orange);

    right:-4px;
    top:-4px;
}

.logo-text{
    font-family:"Plus Jakarta Sans";
    font-weight:800;
    font-size:18px;
    line-height:1.05;
}

.logo-text span{
    color:var(--green);
}

.logo-text small{
    display:block;

    font-size:8px;

    letter-spacing:1.4px;

    color:#7b8580;

    margin-top:4px;
}


/* NAVIGATION */

.nav-links{
    display:flex;
    align-items:center;
    gap:27px;

    font-size:15px;
    font-weight:600;
}

.nav-links a{
    position:relative;
}

.nav-links a:after{
    content:"";

    position:absolute;

    width:0;
    height:2px;

    left:0;
    bottom:-8px;

    background:var(--orange);

    transition:.3s;
}

.nav-links a:hover:after,
.nav-links a.active:after{
    width:100%;
}

.nav-links a.active{
    color:var(--orange);
}


/* HEADER CALL */

.header-call{
    display:flex;
    align-items:center;
    gap:8px;

    background:var(--orange);

    color:#fff;

    padding:11px 17px;

    border-radius:9px;

   font-size:14px;
    font-weight:700;

    white-space:nowrap;

    transition:.3s;
}

.header-call:hover{
    background:var(--orange-dark);
    transform:translateY(-1px);
}

.menu-btn{
    display:none;

    border:0;

    background:none;

    font-size:24px;

    color:var(--dark);

    cursor:pointer;
}


/* =========================================================
   HERO IMAGE SLIDER
========================================================= */

.hero-slider{

    position:relative;

    width:100%;

    height:650px;

    overflow:hidden;

    background:#10241c;
}


/* SLIDES */

.hero-slide{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    opacity:0;

    transform:scale(1.06);

    transition:
        opacity 1.1s ease,
        transform 6s ease;
}

.hero-slide.active{

    opacity:1;

    transform:scale(1);
}


/* DARK OVERLAY */

.hero-slide:after{

    content:"";

    position:absolute;

    inset:0;

   
}


/* ARROWS */

.slider-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:52px;
    height:52px;

    border:1px solid rgba(255,255,255,.55);

    border-radius:50%;

    background:rgba(0,0,0,.28);

    backdrop-filter:blur(8px);

    color:#fff;

    font-size:20px;

    cursor:pointer;

    z-index:10;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
}

.slider-arrow:hover{

    background:var(--green);

    border-color:var(--green);

}

.slider-prev{
    left:30px;
}

.slider-next{
    right:30px;
}


/* DOTS */

.slider-dots{

    position:absolute;

    left:50%;
    bottom:25px;

    transform:translateX(-50%);

    display:flex;

    gap:8px;

    z-index:10;
}

.slider-dot{

    width:9px;
    height:9px;

    padding:0;

    border:0;

    border-radius:50%;

    background:rgba(255,255,255,.55);

    cursor:pointer;

    transition:.3s;
}

.slider-dot.active{

    width:30px;

    border-radius:20px;

    background:var(--orange);

}


/* =========================================================
   MARQUEE
========================================================= */

.marquee{

    background:var(--green);

    color:#fff;

    overflow:hidden;

    white-space:nowrap;

    height:48px;

    display:flex;
    align-items:center;

    position:relative;

    z-index:5;
}

.marquee-track{

    display:flex;

    width:max-content;

    animation:marqueeMove 30s linear infinite;
}

.marquee-content{

    display:flex;

    align-items:center;

    gap:35px;

    padding-right:35px;

   font-size:14px;

    font-weight:600;

    letter-spacing:.2px;
}

.marquee-content i{

    color:#a4edca;

    margin-right:7px;

}

.marquee-content strong{

    color:#fff;

}

.marquee:hover .marquee-track{

    animation-play-state:paused;

}

@keyframes marqueeMove{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip{

    background:#fff;

    border-bottom:1px solid var(--border);
}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);
}

.trust-item{

    padding:25px 18px;

    display:flex;

    align-items:center;

    gap:13px;

    border-right:1px solid var(--border);
}

.trust-item:last-child{

    border-right:0;
}

.trust-icon{

    width:44px;
    height:44px;

    border-radius:12px;

    background:var(--green-light);

    color:var(--green);

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:18px;

    flex-shrink:0;
}

.trust-item strong{

    display:block;

    font-size:15px;
}

.trust-item span{

    display:block;

    font-size:11px;

    color:#8a938e;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section{

    padding:90px 0;
}

.section-heading{

    text-align:center;

    max-width:700px;

    margin:0 auto 45px;
}

.eyebrow{

    color:var(--green);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:10px;

    font-weight:800;

    margin-bottom:9px;
}

.section-heading h2{

    font-size:36px;

    line-height:1.2;

    letter-spacing:-1.5px;

    margin-bottom:12px;
}

.section-heading p{

    color:var(--text);

    font-size:14px;
}


/* =========================================================
   PEST TYPES
========================================================= */

.pest-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:17px;
}

.pest-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:17px;

    padding:27px 18px;

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:.3s;
}

.pest-card:before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    height:3px;
    width:0;

    background:var(--orange);

    transition:.3s;
}

.pest-card:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,0,0,.07);

}

.pest-card:hover:before{

    width:100%;
}

.pest-icon{

    width:67px;
    height:67px;

    margin:0 auto 16px;

    border-radius:19px;

    background:var(--green-light);

    color:var(--green);

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:28px;
}

.pest-card h3{

    font-size:15px;

    margin-bottom:5px;
}

.pest-card p{

    font-size:11px;

    color:#8a938e;
}


/* =========================================================
   SERVICES
========================================================= */

.services{

    background:var(--light);
}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;
}

.service-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    border:1px solid var(--border);

    transition:.3s;
}

.service-card:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.service-image{

    height:195px;

    overflow:hidden;
}

.service-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s;
}

.service-card:hover .service-image img{

    transform:scale(1.06);
}

.service-content{

    padding:22px;
}

.service-content h3{

    font-size:17px;

    margin-bottom:7px;
}

.service-content p{

    color:#777;

   font-size:14px;

    margin-bottom:13px;
}

.service-link{

    color:var(--green);

   font-size:14px;

    font-weight:800;
}

.service-link i{

    margin-left:4px;

    transition:.3s;
}

.service-link:hover i{

    transform:translateX(4px);
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:75px;

    align-items:center;
}

.about-image{

    height:510px;

    position:relative;
}

.about-image-main{

    width:88%;
    height:450px;

    border-radius:25px;

    overflow:hidden;
}

.about-image-main img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.experience-card{

    position:absolute;

    right:0;
    bottom:10px;

    background:var(--green);

    color:#fff;

    padding:22px;

    border-radius:17px;

    box-shadow:0 15px 35px rgba(0,0,0,.16);
}

.experience-card i{

    font-size:14px;

    margin-bottom:8px;

    color:#8ce5bd;
}

.experience-card strong{

    display:block;

    font-size:20px;

    line-height:1.2;
}

.experience-card span{

    font-size:10px;

    opacity:.75;
}

.about-content h2{

    font-size:38px;

    line-height:1.15;

    letter-spacing:-1.5px;

    margin-bottom:15px;
}

.about-content > p{

    color:#777;

    font-size:14px;
}

.benefits{

    margin-top:25px;

    display:grid;

    gap:16px;
}

.benefit{

    display:flex;

    gap:13px;
}

.benefit-icon{

    width:28px;
    height:28px;

    border-radius:50%;

    background:var(--green-light);

    color:var(--green);

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:11px;

    flex-shrink:0;
}

.benefit strong{

    display:block;

    font-size:14px;
}

.benefit span{

    color:#888;

   font-size:14px;
}


/* =========================================================
   PROCESS
========================================================= */

.process{

    background:var(--black);

    color:#fff;
}

.process .eyebrow{

    color:#67dbaa;
}

.process .section-heading p{

    color:#929d98;
}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;
}

.process-step{

    padding:25px;

    border:1px solid rgba(255,255,255,.1);

    border-radius:17px;

    background:rgba(255,255,255,.025);

    transition:.3s;
}

.process-step:hover{

    background:rgba(255,255,255,.06);

    transform:translateY(-4px);
}

.step-number{

    color:#67dbaa;

    font-size:10px;

    font-weight:800;

    letter-spacing:1px;

    margin-bottom:24px;
}

.step-icon{

    width:42px;
    height:42px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:rgba(103,219,170,.1);

    color:#67dbaa;

    margin-bottom:15px;
}

.process-step h3{

    font-size:16px;

    margin-bottom:7px;
}

.process-step p{

    color:#929d98;

   font-size:14px;
}


/* =========================================================
   CTA
========================================================= */

.cta{

    padding:80px 0;
}

.cta-box{

    background:linear-gradient(
        110deg,
        var(--green-dark),
        var(--green)
    );

    color:#fff;

    border-radius:27px;

    padding:58px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    overflow:hidden;

    position:relative;
}

.cta-box:after{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border:1px solid rgba(255,255,255,.1);

    border-radius:50%;

    right:-110px;
    top:-180px;
}

.cta-content{

    position:relative;

    z-index:2;
}

.cta-content h2{

    font-size:35px;

    line-height:1.15;

    margin-bottom:9px;
}

.cta-content p{

    color:rgba(255,255,255,.72);

    font-size:15px;
}

.cta-buttons{

    display:flex;

    gap:10px;

    position:relative;

    z-index:2;
}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:14px 22px;

    border-radius:9px;

    font-size:15px;

    font-weight:700;

    transition:.3s;
}

.btn-orange{

    background:var(--orange);

    color:#fff;
}

.btn-orange:hover{

    background:var(--orange-dark);

    transform:translateY(-2px);
}

.btn-white{

    background:#fff;

    color:var(--dark);
}

.btn-white:hover{

    background:#f0f0f0;

    transform:translateY(-2px);
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials{

    background:var(--light);
}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;
}

.testimonial{

    background:#fff;

    padding:27px;

    border-radius:18px;

    border:1px solid var(--border);
}

.stars{

    color:#f3aa19;

    font-size:11px;

    letter-spacing:2px;
}

.testimonial p{

    color:#666;

    font-size:15px;

    margin:15px 0 22px;
}

.customer{

    display:flex;

    align-items:center;

    gap:11px;
}

.avatar{

    width:42px;
    height:42px;

    border-radius:50%;

    background:var(--green-light);

    color:var(--green);

    display:flex;

    align-items:center;
    justify-content:center;

    font-weight:800;
}

.customer strong{

    display:block;

    font-size:15px;
}

.customer span{

    color:#999;

    font-size:10px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid{

    display:grid;

    grid-template-columns:.85fr 1.15fr;

    gap:40px;
}

.contact-info{

    background:var(--black);

    color:#fff;

    border-radius:22px;

    padding:35px;
}

.contact-info .eyebrow{

    color:#67dbaa;
}

.contact-info h2{

    font-size:28px;

    line-height:1.2;

    margin-bottom:10px;
}

.contact-info > p{

    color:#98a29d;

    font-size:15px;

    margin-bottom:30px;
}

.contact-detail{

    display:flex;

    gap:13px;

    margin-bottom:20px;
}

.contact-icon{

    width:39px;
    height:39px;

    border-radius:10px;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;
    justify-content:center;

    color:#67dbaa;

    flex-shrink:0;
}

.contact-detail strong{

    display:block;

   font-size:14px;
}

.contact-detail span{

    color:#9ca6a1;

   font-size:14px;
}

.contact-detail a{

    color:#fff;
}

.contact-detail a:hover{

    color:#67dbaa;
}

.map{

    min-height:430px;

    border-radius:22px;

    overflow:hidden;

    background:#e9efec;
}

.map iframe{

    width:100%;

    height:100%;

    min-height:430px;

    border:0;
}


/* =========================================================
   FOOTER
========================================================= */

footer{

    background:#0b100e;

    color:#fff;

    padding:60px 0 20px;
}

.footer-grid{

    display:grid;

    grid-template-columns:1.5fr 1fr 1fr 1.2fr;

    gap:45px;

    padding-bottom:45px;
}

.footer-brand p{

    color:#7d8782;

   font-size:14px;

    max-width:310px;

    margin-top:17px;
}

.footer-title{

    font-weight:700;

    font-size:15px;

    margin-bottom:17px;
}

.footer-links{

    display:grid;

    gap:10px;
}

.footer-links a{

    color:#7d8782;

   font-size:14px;

    transition:.2s;
}

.footer-links a:hover{

    color:#fff;
}

.footer-contact{

    color:#7d8782;

   font-size:14px;

    line-height:1.8;
}

.footer-contact i{

    width:18px;

    color:#67dbaa;
}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:20px;

    display:flex;

    justify-content:space-between;

    color:#626b66;

    font-size:11px;
}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-buttons{

    position:fixed;

    right:18px;

    bottom:18px;

    z-index:999;

    display:flex;

    flex-direction:column;

    gap:9px;
}

.float-btn{

    width:51px;
    height:51px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:19px;

    box-shadow:0 8px 25px rgba(0,0,0,.2);

    transition:.3s;
}

.float-btn:hover{

    transform:scale(1.08);
}

.whatsapp{

    background:#25d366;
}

.phone{

    background:var(--orange);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1050px){

    .nav-links{
        gap:17px;
    }

    .header-call{
        display:none;
    }

    .hero-slider{
        height:560px;
    }

    .pest-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-image{
        max-width:650px;
    }

    .cta-box{
        display:block;
    }

    .cta-buttons{
        margin-top:25px;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}


@media(max-width:750px){

    .topbar{
        display:none;
    }

    .navbar{
        height:72px;
    }

    .logo-text{
        font-size:15px;
    }

    .logo-mark{
        width:40px;
        height:40px;
    }

    .menu-btn{
        display:block;
    }

    .nav-links{

        display:none;

        position:absolute;

        top:72px;

        left:0;

        width:100%;

        background:#fff;

        flex-direction:column;

        align-items:flex-start;

        padding:24px;

        gap:19px;

        border-bottom:1px solid var(--border);

        box-shadow:0 15px 30px rgba(0,0,0,.08);
    }

    .nav-links.active{
        display:flex;
    }

    .hero-slider{
        height:440px;
    }

    .slider-arrow{

        width:42px;
        height:42px;

        font-size:16px;
    }

    .slider-prev{
        left:12px;
    }

    .slider-next{
        right:12px;
    }

    .slider-dots{
        bottom:18px;
    }

    .marquee{
        height:44px;
    }

    .marquee-content{
        font-size:11px;
    }

    .trust-grid{
        grid-template-columns:1fr;
    }

    .trust-item{

        border-right:0;

        border-bottom:1px solid var(--border);
    }

    .trust-item:last-child{
        border-bottom:0;
    }

    .section{
        padding:65px 0;
    }

    .section-heading h2{
        font-size:29px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .service-image{
        height:220px;
    }

    .about-image{
        height:400px;
    }

    .about-image-main{
        height:350px;
    }

    .about-content h2{
        font-size:30px;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

    .cta-box{
        padding:38px 25px;
    }

    .cta-content h2{
        font-size:28px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-buttons .btn{
        width:100%;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .contact-info{
        padding:27px;
    }

    .map,
    .map iframe{
        min-height:330px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .footer-bottom{
        display:block;

        line-height:2;
    }

    .floating-buttons{
        right:13px;
        bottom:13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:500px){

    .hero-slider{
        height:380px;
    }

    .pest-grid{
        grid-template-columns:1fr 1fr;

        gap:10px;
    }

    .pest-card{
        padding:20px 10px;
    }

    .pest-icon{
        width:54px;
        height:54px;

        font-size:23px;
    }

    .pest-card h3{
        font-size:15px;
    }

    .pest-card p{
        font-size:10px;
    }

    .about-image{
        height:340px;
    }

    .about-image-main{
        height:300px;
    }

    .experience-card{
        padding:17px;
    }

    .experience-card strong{
        font-size:16px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

    html{
        scroll-behavior:auto;
    }

    .hero-slide{
        transition:none;
        transform:none;
    }

    .marquee-track{
        animation:none;
    }

}


/* =========================================================
   INNER PAGES STYLING
========================================================= */

.page-banner{
    background: linear-gradient(rgba(16, 23, 20, 0.85), rgba(16, 23, 20, 0.85)), url('img/banner1.jpg') center/cover no-repeat;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-banner h1{
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.page-banner p{
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin: 0 auto 20px;
}

.breadcrumbs{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumbs a{
    color: var(--green-light);
    transition: color 0.3s;
}

.breadcrumbs a:hover{
    color: var(--orange);
}

.breadcrumbs .separator{
    font-size: 10px;
    color: rgba(255,255,255,0.5);
}

.breadcrumbs .active{
    color: var(--orange);
    font-weight: 600;
}

/* Form Controls & Alerts */
.contact-form{
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
}

.form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media(max-width: 768px){
    .form-row{
        grid-template-columns: 1fr;
    }
}

.form-group{
    margin-bottom: 20px;
}

.form-group label{
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-control{
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--light);
}

.form-control:focus{
    outline: none;
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(8, 123, 85, 0.1);
}

textarea.form-control{
    resize: vertical;
    min-height: 120px;
}

.btn-submit{
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: var(--orange);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover{
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.alert{
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success{
    background: #e6f9f0;
    color: #04563c;
    border: 1px solid #b3eccf;
}

.alert-error{
    background: #fde8e8;
    color: #9b1c1c;
    border: 1px solid #f8b4b4;
}

/* Service Detail Layout */
.service-detail-grid{
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 40px;
}

@media(max-width: 992px){
    .service-detail-grid{
        grid-template-columns: 1fr;
    }
}

.service-main-content img.service-hero-img{
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 25px;
}

.service-main-content h2{
    font-size: 28px;
    margin: 25px 0 15px;
    color: var(--dark);
}

.service-features-list{
    list-style: none;
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media(max-width: 600px){
    .service-features-list{
        grid-template-columns: 1fr;
    }
}

.service-features-list li{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    background: var(--light);
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.service-features-list li i{
    color: var(--green);
    font-size: 18px;
}

/* Sidebar Widgets */
.sidebar-widget{
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.sidebar-widget h3{
    font-size: 20px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light);
    color: var(--dark);
}

.widget-menu{
    list-style: none;
}

.widget-menu li{
    margin-bottom: 10px;
}

.widget-menu a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--light);
    border-radius: 8px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s;
}

.widget-menu a:hover,
.widget-menu a.active{
    background: var(--green);
    color: #fff;
}

.widget-contact-box{
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
}

.widget-contact-box h3{
    color: #fff;
    border-bottom: none;
    font-size: 22px;
}

.widget-contact-box p{
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.widget-contact-box .btn{
    width: 100%;
    margin-top: 10px;
}

/* FAQ Accordion / Cards */
.faq-grid{
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-card{
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-card h3{
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-card h3 i{
    color: var(--green);
}

.faq-card p{
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================================
   HEADER DROPDOWN MENU
========================================================= */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.nav-item-dropdown .nav-arrow {
    font-size: 11px;
    margin-left: 4px;
    transition: transform 0.3s;
}

.nav-item-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-item-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 1100;
}

.nav-item-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--orange);
}

.dropdown-menu a:after {
    display: none !important;
}

@media(max-width: 750px) {
    .nav-item-dropdown {
        width: 100%;
    }
    .nav-item-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 5px 0 5px 15px;
        display: block;
        background: transparent;
    }
    .dropdown-menu a {
        padding: 8px 10px;
        font-size: 14px;
    }
}
