/* Google Fonts import is in HTML */

:root {
    --primary-green: #80b435;
    --dark-green: #00814a;
    --light-green: #cde1a6;
    --dark-grey: #444444;
    --text-color: #333333;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-main: 'Outfit', sans-serif;
}

/* Reset & Base Styles */
.web-reset {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.web-body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.web-link {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.web-list {
    list-style: none;
}

.web-img {
    max-width: 100%;
    display: block;
}

.web-btn {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 40px;
}

.center-text {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 129, 74, 0.3);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 3rem;
    color: var(--dark-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-green);
    border-top: 5px solid var(--dark-green);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Ad Disclaimer Top */
.ad-disclaimer-top {
    background-color: #f8f9fa;
    color: #666;
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-green);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-grey);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-green);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

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

.header-cta {
    padding: 10px 25px;
    font-size: 0.9rem;
}

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

.hamburger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--dark-green);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: var(--white);
    z-index: 1002;
    padding: 80px 30px 40px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    font-size: 2rem;
    color: var(--dark-grey);
    transition: var(--transition);
}

.close-menu:hover {
    color: var(--dark-green);
    transform: rotate(90deg);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-grey);
}

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

.mobile-cta {
    text-align: center;
    margin-top: auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-cta {
    font-size: 1rem;
    padding: 15px 40px;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-decription {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}

.text-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.text-link:hover {
    color: var(--dark-green);
}

.about-image-wrapper {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img {
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

/* Why Us Section */
.why-us-section {
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark-grey);
}

.feature-text {
    color: #666;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--dark-green);
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.freq-icon {
    transition: transform 0.3s ease;
}

.faq-question.active .freq-icon {
    transform: rotate(45deg);
}

.faq-question.active {
    color: var(--primary-green);
}

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

.faq-answer p {
    padding-bottom: 20px;
    color: #666;
}

/* FooterStyles */
.main-footer {
    background-color: #222;
    color: #ccc;
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
}

.footer-heading {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-green);
}

.footer-contact,
.legal-text {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--light-green);
}

.footer-contact a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-link-btn {
    transition: var(--transition);
}

.footer-links a:hover,
.footer-link-btn:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-link-btn {
    background: none;
    color: inherit;
    font-size: inherit;
    padding: 0;
    text-align: left;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-disclaimer-section {
    background-color: #1a1a1a;
    padding: 30px 0;
    border-top: 1px solid #333;
    text-align: center;
}

.ad-note-footer {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #666;
}

.highlight-disclaimer {
    color: #999;
    font-size: 0.85rem;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.5;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 5px;
}

.copyright-row {
    font-size: 0.9rem;
    color: #666;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    z-index: 10000;
    display: none;
    /* JS will toggle */
    border-left: 5px solid var(--primary-green);
}

.cookie-content h3 {
    margin-bottom: 10px;
    color: var(--dark-green);
}

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #666;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.accept-btn {
    flex: 1;
    padding: 8px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
}

.reject-btn {
    flex: 1;
    padding: 8px;
    background-color: #f0f0f0;
    color: #333;
    border-radius: 5px;
    font-weight: 600;
}

.accept-btn:hover {
    background-color: var(--dark-green);
}

.reject-btn:hover {
    background-color: #e0e0e0;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: #999;
    background: none;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--dark-green);
}

.modal-body {
    margin-top: 20px;
}

.modal-body p,
.modal-body ul {
    margin-bottom: 15px;
    color: #555;
}

.modal-body ul {
    padding-left: 20px;
    list-style: disc;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .about-container {
        flex-direction: column;
    }

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

@media (max-width: 768px) {

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

    .hamburger-menu {
        display: flex;
    }

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

    .section {
        padding: 50px 0;
    }
}