/* ========================================= */
/* GOOGLE FONT */
/* ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');





/* ========================================= */
/* GLOBAL */
/* ========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f5f5;
    overflow-x:hidden;
    color:#111;
}

a{
    text-decoration:none;
}

img{
    width:100%;
    display:block;
}

ul{
    list-style:none;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}





/* ========================================= */
/* HEADER */
/* ========================================= */

.header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:#006313;
    border-bottom:1px solid rgba(255,255,255,0.08);
    transition:0.3s;
}

.navbar{
    height:95px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}





/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo img{
    width:78px;
    height:78px;
    object-fit:contain;
}

.logo-text h2{
    color:#fff;
    font-size:26px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:6px;
}

.logo-text p{
    color:#ffd500;
    font-size:14px;
    font-weight:600;
}





/* MENU */

.nav-menu{
    display:flex;
    align-items:center;
    gap:52px;
}

.nav-menu a{
    color:#fff;
    font-size:17px;
    font-weight:500;
    transition:0.3s;
    position:relative;
}

.nav-menu a:hover,
.nav-menu a.active{
    color:#ffd500;
}





/* RIGHT */

.header-right{
    display:flex;
    align-items:center;
    gap:25px;
}





/* LANGUAGE */

.language{
    display:flex;
    align-items:center;
    position:relative;
}

.language-toggle{
    height:44px;
    padding:0 14px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius:12px;
    background:rgba(255,255,255,0.08);
    color:#fff;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.language-menu{
    position:absolute;
    top:calc(100% + 12px);
    right:0;
    width:150px;
    padding:8px;
    border-radius:14px;
    background:#fff;
    box-shadow:0 14px 35px rgba(0,0,0,0.18);
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:0.3s;
}

.language-switcher.open .language-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.language-menu button{
    width:100%;
    border:none;
    border-radius:10px;
    background:transparent;
    color:#045321;
    cursor:pointer;
    font-size:15px;
    font-weight:700;
    padding:10px 12px;
    text-align:left;
}

.language-menu button:hover,
.language-menu button.active{
    background:#fff7bf;
}

.header-youtube{
    width:48px;
    height:48px;
    border-radius:14px;
    background:#ff0000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:0.3s;
}

.header-youtube:hover{
    transform:translateY(-3px);
}





/* WHATSAPP */

.header-whatsapp{
    height:60px;
    padding:0 28px;
    background:#ffd500;
    border-radius:14px;
    color:#111;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:16px;
    font-weight:700;
    transition:0.3s;
}

.header-whatsapp:hover{
    transform:translateY(-3px);
}

.header-whatsapp i{
    font-size:26px;
}





/* MOBILE */

.menu-toggle{
    display:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}





/* ========================================= */
/* HERO SECTION */
/* ========================================= */

.hero-section{
    width:100%;
    background:
    linear-gradient(rgba(0,70,15,0.88),rgba(0,70,15,0.88)),
    url('../images/hero-bg.jpg');
    background-size:cover;
    background-position:center;
    padding-top:150px;
    padding-bottom:80px;
    position:relative;
    overflow:hidden;
}





/* LEAF */

.leaf{
    position:absolute;
    width:55px;
    opacity:0.9;
}

.leaf1{
    left:20px;
    top:280px;
}

.leaf2{
    right:40px;
    top:250px;
}

.leaf3{
    right:100px;
    bottom:80px;
}

.leaf4{
    left:80px;
    bottom:120px;
}





/* HERO CONTAINER */

.hero-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
}





/* LEFT */

.hero-left h1{
    font-size:74px;
    line-height:1.1;
    color:#fff;
    font-weight:800;
    margin-bottom:25px;
}

.hero-left h1 span{
    display:block;
    color:#ffd500;
}

.hero-left p{
    color:#fff;
    font-size:20px;
    font-weight:500;
    max-width:600px;
    line-height:1.6;
    margin-bottom:35px;
}





/* BUTTONS */

.hero-buttons{
    display:flex;
    align-items:center;
    gap:20px;
}

.book-btn{
    background:#ffd500;
    color:#111;
    padding:18px 32px;
    border-radius:12px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:20px;
    transition:0.3s;
}

.book-btn:hover{
    transform:translateY(-3px);
}

.whatsapp-outline{
    border:2px solid #ffd500;
    color:#fff;
    padding:16px 32px;
    border-radius:12px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:20px;
}

.bottom-card .whatsapp-outline,
.pickup-form .whatsapp-outline{
    color:#045321;
}

.bottom-card .whatsapp-outline:hover,
.pickup-form .whatsapp-outline:hover{
    background:#ffd500;
    color:#111;
}





/* RIGHT */

.hero-right{
    display:flex;
    justify-content:center;
}

.hero-right img{
    width:100%;
    max-width:520px;
}





/* ========================================= */
/* MAIN SECTION */
/* ========================================= */

.main-section{
    background:#f5f5f5;
    padding:70px 0;
}





/* ========================================= */
/* SERVICES */
/* ========================================= */

.services-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
}

.services-box h2{
    font-size:42px;
    margin-bottom:35px;
    color:#045321;
    position:relative;
}

.services-box h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:70px;
    height:4px;
    background:#ffd500;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}





/* CARD */

.service-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    text-align:center;
    box-shadow:0 2px 12px rgba(0,0,0,0.08);
    border:1px solid #eee;
    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:14px;
    margin-bottom:20px;
}

.service-card i{
    font-size:58px;
    color:#045321;
    margin-bottom:20px;
}

.service-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#045321;
}

.service-card p{
    font-size:17px;
    color:#444;
    line-height:1.6;
}





/* ========================================= */
/* WHY SECTION */
/* ========================================= */

.why-box{
    background:#eef5ef;
    padding:70px 0;
}

.why-box h2{
    font-size:42px;
    margin-bottom:35px;
    color:#045321;
    position:relative;
}

.why-box h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:70px;
    height:4px;
    background:#ffd500;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}





/* ITEM */

.why-item{
    display:flex;
    gap:18px;
}

.why-icon{
    min-width:70px;
    height:70px;
    border-radius:50%;
    background:#045321;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.why-item h4{
    font-size:22px;
    margin-bottom:8px;
    color:#045321;
}

.why-item p{
    font-size:16px;
    line-height:1.5;
    color:#444;
}





/* ========================================= */
/* BOTTOM CARD */
/* ========================================= */

.bottom-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 2px 12px rgba(0,0,0,0.06);
}

.bottom-card h2{
    font-size:38px;
    margin-bottom:25px;
    color:#045321;
}

.bottom-card p{
    font-size:17px;
    color:#444;
    line-height:1.8;
    margin-bottom:16px;
}





/* ========================================= */
/* PROCESS */
/* ========================================= */

.process-grid{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
}

.process-item{
    text-align:center;
    width:130px;
}

.process-icon{
    width:75px;
    height:75px;
    background:#045321;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:15px;
    font-size:28px;
}

.process-arrow{
    font-size:24px;
    color:#045321;
}





/* ========================================= */
/* PICKUP FORM */
/* ========================================= */

.pickup-form{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.form-top{
    background:#045321;
    color:#fff;
    padding:22px;
    display:flex;
    align-items:center;
    gap:15px;
}

.form-top img{
    width:70px;
}

.form-top h2{
    font-size:30px;
}

.pickup-form form{
    padding:25px;
}





/* INPUT */

.input-box{
    width:100%;
    height:58px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:16px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.input-box i{
    width:55px;
    text-align:center;
    color:#045321;
    font-size:18px;
}

.input-box input,
.input-box select{
    width:100%;
    height:100%;
    border:none;
    outline:none;
    padding-right:15px;
    font-size:16px;
    background:transparent;
}





/* BUTTON */

.pickup-form button{
    width:100%;
    height:58px;
    border:none;
    background:#0b7a33;
    color:#fff;
    border-radius:10px;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.form-note{
    text-align:center;
    margin-top:18px;
    color:#666;
    font-size:15px;
}





/* ========================================= */
/* RATE TABLE */
/* ========================================= */

.old-rate-table{
    display:none;
}

.rate-notice{
    display:flex;
    gap:22px;
    align-items:flex-start;
    padding:28px;
    margin-bottom:28px;
    border:1px solid rgba(255,213,0,0.65);
    border-radius:20px;
    background:linear-gradient(135deg,#fff7bf,#fffdf0);
    box-shadow:0 12px 32px rgba(0,0,0,0.08);
}

.notice-icon{
    min-width:62px;
    width:62px;
    height:62px;
    border-radius:50%;
    background:#ffd500;
    color:#4d3b00;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.rate-notice h2{
    font-size:26px;
    color:#045321;
    margin-bottom:8px;
}

.rate-notice p{
    color:#3d3d3d;
    font-size:16px;
    line-height:1.7;
}

.scrap-rate-card{
    overflow:hidden;
}

.rate-heading{
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:flex-start;
    margin-bottom:28px;
}

.rate-heading h2{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:8px;
}

.rate-heading h2 i{
    color:#0b7a33;
}

.rate-heading p{
    margin:0;
    color:#5b5b5b;
    font-weight:700;
}

.rate-category-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
}

.rate-category{
    border:1px solid #e6eadf;
    border-radius:16px;
    background:#fbfdf9;
    padding:22px;
    box-shadow:0 4px 16px rgba(0,0,0,0.04);
}

.rate-category h3{
    display:flex;
    align-items:center;
    gap:10px;
    color:#045321;
    font-size:22px;
    margin-bottom:16px;
}

.rate-category h3 i{
    color:#d6b300;
}

.rate-category li{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:16px;
    padding:12px 0;
    border-bottom:1px dashed #d8dfd4;
    color:#333;
    font-size:16px;
}

.rate-category li:last-child{
    border-bottom:none;
}

.rate-category span{
    min-width:0;
}

.rate-category strong{
    color:#045321;
    white-space:nowrap;
}

.rate-table-wrapper{
    overflow-x:auto;
    margin-top:30px;
}

.rate-table{
    width:100%;
    border-collapse:collapse;
}

.rate-table thead{
    background:#045321;
    color:#fff;
}

.rate-table th{
    padding:18px;
    text-align:left;
}

.rate-table td{
    padding:18px;
    border-bottom:1px solid #ddd;
}

.rate-table tbody tr:hover{
    background:#f7f7f7;
}





/* ========================================= */
/* FAQ */
/* ========================================= */

.faq-box{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.faq-item{
    border:1px solid #ddd;
    border-radius:10px;
    padding:18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    transition:0.3s;
}

.faq-item.active{
    background:#045321;
    color:#fff;
}





/* ========================================= */
/* MAP */
/* ========================================= */

.map-box{
    margin-top:30px;
    border-radius:18px;
    overflow:hidden;
}





/* ========================================= */
/* FOOTER */
/* ========================================= */

.main-footer{
    background:#022b0d;
    color:#fff;
    padding-top:70px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:40px;
    padding-bottom:50px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.footer-logo img{
    width:75px;
}

.footer-logo h2{
    font-size:28px;
    margin-bottom:4px;
}

.footer-logo p{
    color:#ffd500;
    font-size:14px;
}

.footer-about{
    color:#ddd;
    line-height:1.8;
    margin-bottom:25px;
}

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    transition:0.3s;
}

.footer-social a:hover{
    background:#ffd500;
    color:#111;
}

.footer-col h3{
    font-size:24px;
    margin-bottom:22px;
}

.footer-col ul li{
    margin-bottom:14px;
    color:#ddd;
}

.footer-col ul li a{
    color:#ddd;
}

.footer-contact p{
    margin-bottom:18px;
    display:flex;
    gap:12px;
    line-height:1.7;
    color:#ddd;
}

.footer-contact i{
    color:#ffd500;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    padding:22px 0;
    color:#ccc;
}





/* ========================================= */
/* FLOAT BUTTONS */
/* ========================================= */

.call-float,
.whatsapp-float,
.youtube-float{
    position:fixed;
    right:20px;
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    z-index:999;
}

.call-float{
    bottom:180px;
    background:#045321;
}

.whatsapp-float{
    bottom:100px;
    background:#25d366;
}

.youtube-float{
    bottom:20px;
    background:#ff0000;
}





/* ========================================= */
/* ANIMATION */
/* ========================================= */

.service-card,
.why-item,
.bottom-card,
.rate-notice,
.rate-category{
    opacity:0;
    transform:translateY(40px);
    transition:all 0.6s ease;
}

.service-card.show,
.why-item.show,
.bottom-card.show,
.rate-notice.show,
.rate-category.show{
    opacity:1;
    transform:translateY(0);
}
.footer-bottom p a{
    color: #2f9e44;
    font-weight: 600;
}

.footer-bottom p a:hover{
    text-decoration: underline;
}
