/* ================= GOOGLE FONT ================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');


/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #6f7a61;
    background: #fff;
    overflow-x: hidden;
}


/* ================= GLOBAL CONTAINER ================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


/* ================= TYPOGRAPHY ================= */
h1, h2, h3, h4 {
    color: #6f7a61;
    font-weight: 600;
}

p {
    color: #6f7a61;
    font-size: 16px;
    line-height: 1.6;
}


/* ================= NAVBAR ================= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #6f7a61;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #6f7a61;
}


/* ================= HERO (HOME) ================= */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 80px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1s ease;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-text {
    position: absolute;
    bottom: 60px;
    left: 50px;
    max-width: 700px;
    color: #fff;
}

.hero-text h1 {
    font-size: 42px;
    color: #fff;
}


/* ================= SERVICES ================= */
.services {
    padding: 60px 20px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}

.card {
    padding: 25px;
    border: 1px solid rgba(111,122,97,0.3);
    text-decoration: none;
    color: #6f7a61;
    transition: 0.3s;
}

.card:hover {
    background: #6f7a61;
    color: #fff;
}


/* ================= CONTACT ================= */
.contact {
    padding: 60px 20px;
    text-align: center;
    background: #f7f7f7;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ccc;
    font-family: 'Montserrat', sans-serif;
}

.contact-form button {
    padding: 12px;
    background: #6f7a61;
    color: #fff;
    border: none;
    cursor: pointer;
}


/* ================= POPUP ================= */
.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 30px;
    text-align: center;
}


/* ================= WHATSAPP ================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
}


/* ================= SERVICE HERO ================= */
.service-hero {
    position: relative;
    height: 90vh;
    margin-top: 80px;
}

.service-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1s ease;
}

.service-slide.active {
    opacity: 1;
}

.service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.service-hero-text {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: #fff;
}


/* ================= SECTIONS ================= */
.service-intro,
.service-gallery,
.service-faq,
.service-cta {
    padding: 60px 20px;
    text-align: center;
}


/* ================= GALLERY ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-item p {
    margin-top: 10px;
}


/* ================= FAQ ================= */
.faq-item {
    max-width: 800px;
    margin: 10px auto;
    border-bottom: 1px solid rgba(111,122,97,0.3);
}

.faq-question {
    width: 100%;
    padding: 15px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    color: #6f7a61;
}

.faq-answer {
    display: none;
    padding: 10px 15px;
}


/* ================= CTA ================= */
.service-cta {
    background: #6f7a61;
    color: #fff;
}

.service-cta h2,
.service-cta p {
    color: #fff;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #fff;
    color: #6f7a61;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 500;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #fff;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-text {
        left: 20px;
        right: 20px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .service-hero-text {
        left: 20px;
        right: 20px;
    }
}
/* ================= FORCE HERO TEXT WHITE ================= */
.hero-text,
.hero-text h1,
.hero-text p,
.hero-text .subtext,
.service-hero-text,
.service-hero-text h1,
.service-hero-text p {
    color: #ffffff !important;
}