/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    margin: auto;
}

/* NAVBAR */
.navbar {
    width: 100%;
    background: #0a7b39;
    padding: 15px 0;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.mobile-menu-icon {
    font-size: 28px;
    color: white;
    cursor: pointer;
    display: none;
}

/* HERO SECTION */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 5% 50px;
    background: #f4f4f4;
}

.hero-content {
    width: 50%;
}

.hero-content h1 {
    font-size: 38px;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
}

.hero-btns .btn,
.hero-btns .btn-outline {
    padding: 12px 18px;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
}

.btn {
    background: #0a7b39;
    color: #fff;
}

.btn-outline {
    border: 2px solid #0a7b39;
    color: #0a7b39;
}

/* HERO SLIDER */
.hero-slider {
    width: 45%;
    position: relative;
    height: 330px;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    opacity: 0;
    transition: 0.7s;
}

.hero-slider img.active {
    opacity: 1;
}

/* ------------------ MOBILE RESPONSIVE ------------------ */
@media (max-width: 900px) {

    /* NAV */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 15px;
        top: 60px;
        background: #0a7b39;
        width: 180px;
        border-radius: 8px;
        padding: 15px 0;
    }

    .nav-links a {
        padding: 10px 15px;
        font-size: 17px;
    }

    .mobile-menu-icon {
        display: block;
    }

    /* HERO */
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 130px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-slider {
        width: 100%;
        margin-top: 25px;
        height: 250px;
    }
}



/* ------------------ SERVICES SECTION ------------------ */
.services {
    padding: 70px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: bold;
    color: #0a7b39;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-box {
    background: #f6f6f6;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s ease;
    border: 1px solid #e5e5e5;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-icon {
    width: 60px;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0a7b39;
}

.service-box p {
    color: #555;
    font-size: 15px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* ------------------ RATES SECTION ------------------ */
.rates {
    padding: 70px 0;
    background: #f7f7f7;
}

.rates-table {
    max-width: 700px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}

.rate-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 20px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    transition: 0.3s ease;
}

.rate-row:hover {
    background: #e8ffee;
}

.material {
    font-size: 18px;
    font-weight: 600;
    color: #0a7b39;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.rate-note {
    margin-top: 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 600px) {
    .rate-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }
}

/* ------------------ PICKUP SECTION ------------------ */
.pickup {
    padding: 70px 0;
    background: #ffffff;
}

.pickup-flex {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.pickup-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f7f7f7;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
}

.pickup-form input,
.pickup-form select,
.pickup-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
}

.pickup-form input:focus,
.pickup-form select:focus,
.pickup-form textarea:focus {
    border-color: #0a7b39;
}

.btn-submit {
    padding: 14px;
    background: #0a7b39;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #055e2a;
}

.form-msg {
    margin-top: 8px;
    font-size: 15px;
    color: #0a7b39;
    font-weight: bold;
}

/* Contact Box */
.pickup-contact-box {
    width: 300px;
    background: #e9fff0;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #bbf5d1;
}

.pickup-contact-box h3 {
    margin-bottom: 10px;
    color: #0a7b39;
}

.btn {
    display: block;
    margin-top: 12px;
    padding: 12px 14px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.call-btn {
    background: #0a7b39;
    color: #fff;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.contact-info {
    margin-top: 18px;
    font-size: 14px;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 850px) {
    .pickup-flex {
        flex-direction: column;
    }

    .pickup-contact-box {
        width: 100%;
    }
}


/* ------------------ WHY CHOOSE US ------------------ */
.why-us {
    padding: 70px 0;
    background: #f7fff9;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #d1f3df;
    text-align: center;
    transition: 0.3s ease;
}

.why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.why-icon {
    width: 60px;
    margin-bottom: 15px;
}

.why-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #0a7b39;
}

.why-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* ------------------ TESTIMONIALS SECTION ------------------ */
.testimonials {
    padding: 70px 0;
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-box {
    background: #f8fefb;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #c8efd9;
    transition: 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-name {
    font-size: 16px;
    color: #0a7b39;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* ------------------ FOOTER ------------------ */
.footer {
    background: #0a7b39;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-box {
    width: 30%;
    min-width: 250px;
}

.footer-box h3,
.footer-box h4 {
    margin-bottom: 15px;
}

.footer-box p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-box ul li a {
    color: #d9ffe7;
    text-decoration: none;
    transition: 0.2s;
}

.footer-box ul li a:hover {
    color: #ffffff;
}

.footer-whatsapp {
    display: inline-block;
    margin-top: 12px;
    background: #25D366;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 14px;
}

/* Mobile */
@media (max-width: 780px) {
    .footer-flex {
        flex-direction: column;
        text-align: center;
    }

    .footer-box {
        width: 100%;
    }
}

