@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #8DB600;
    --secondary-color: #1A1A1A;
    --text-color: #333333;
    --light-text: #666666;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.body-container {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

/* Ad Note at Top */
.top-ad-banner {
    background-color: #f1f1f1;
    color: #666;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #ddd;
}

/* Header */
.main-header {
    background: var(--white);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    position: sticky;
    top: 38px;
    /* Offset for the top banner */
    z-index: 1000;
}

.logo-container .logo-link {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo-container .logo-link span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item .nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-item .nav-link:hover {
    color: var(--primary-color);
}

/* CTA Button */
.cta-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(141, 182, 0, 0.2);
}

.cta-button:hover {
    background: #7aa100;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(141, 182, 0, 0.4);
}

/* Hamburger Menu */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary-color);
    background: none;
    border: none;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    list-style: none;
    padding: 0;
}

.mobile-nav-item .mobile-nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    padding: 120px 5%;
    display: flex;
    align-items: center;
    gap: 50px;
    background: radial-gradient(circle at top right, #f1f9e6 0%, #ffffff 70%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    opacity: 0.03;
    border-radius: 50%;
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-image-container {
    flex: 1;
    text-align: center;
}

.hero-img {
    max-width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

/* Section Common */
.section-wrapper {
    padding: 100px 5%;
}

.section-text-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

/* About Us / Why Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #edf5d9;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
}

/* FAQs */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    background: var(--bg-light);
    overflow: hidden;
}

.faq-question-btn {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.faq-answer.show {
    padding: 0 20px 20px 20px;
    max-height: 200px;
}

/* Cookies Popup */
.cookies-overlay {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    display: none;
}

.cookies-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cookies-text {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.cookies-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn-accept {
    flex: 1;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-reject {
    flex: 1;
    background: #eee;
    color: var(--text-color);
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

/* Footer */
.main-footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 12px;
}

.footer-link-item .footer-link {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link-item .footer-link:hover {
    color: var(--primary-color);
}

.footer-contact-info {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-ad-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* Modals */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4000;
    transition: var(--transition);
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    border: none;
    background: none;
    color: var(--secondary-color);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.modal-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.7;
}

/* Utilities */
.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 992px) {

    .nav-menu,
    .header-cta {
        display: none;
    }

    .hamburger-toggle {
        display: flex;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }
}