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

:root {
    --primary-color: #87a04b;
    --primary-hover: #6d823d;
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f9fbf7;
    --bg-white: #ffffff;
    --error-red: #e74c3c;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --header-height: 80px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.body-no-scroll {
    overflow: hidden;
}

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

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

.loader-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.98);
    }
}

/* Ad Bar Top */
.ad-bar-top {
    background: #f0f4e8;
    color: #555;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid #e0ebd1;
}

.ad-bar-text {
    margin: 0;
}

/* Header */
.main-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

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

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(135, 160, 75, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 160, 75, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
    padding: 5px;
    border-radius: 4px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: rgba(135, 160, 75, 0.05);
}

.toggle-line {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu Side */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    /* Changed from -80% to ensure it's hidden */
    width: 75%;
    height: 100vh;
    background: var(--bg-white);
    z-index: 3000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 40px 30px;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.mobile-close {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.close-btn-circle {
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.close-btn-circle:hover {
    background: #eee;
    transform: rotate(90deg);
}

.close-icon {
    font-size: 24px;
    color: var(--text-main);
    line-height: 1;
}

.mobile-nav-link {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at 70% 30%, #f0f4e8 0%, #ffffff 100%);
}

.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-tag {
    background: #eef3e6;
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image-wrap {
    flex: 1;
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Feature Section (Why Us) */
.why-us-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.features-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--bg-white);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.about-text {
    flex: 1;
}

/* Stats */
.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: left;
}

.stat-val {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Testimonials */
.reviews-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.reviews-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.reviewer {
    font-weight: 700;
    color: var(--secondary-color);
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.faq-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

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

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-icon-plus::before {
    content: '+';
}

.faq-item.active .faq-icon-plus::before {
    content: '-';
}

/* Footer */
.main-footer {
    background: #111;
    color: white;
    padding: 80px 0 20px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    border-bottom: 1px solid #333;
    padding-bottom: 50px;
}

.footer-column h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-info-text {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-ad-note-bottom {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto 20px;
    font-size: 0.8rem;
    color: #777;
    text-align: center;
    padding-top: 20px;
}

.footer-bottom-info {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #666;
}

.footer-copy {
    margin: 0;
}

/* Return Policy Inner */
.policy-content-box {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #333;
}

.policy-text {
    font-size: 0.85rem;
    color: #bbb;
}

/* Cookies Modal */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 5000;
    display: none;
}

.cookie-active {
    display: block;
}

.cookie-h {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.cookie-p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

.cookie-btn-acc {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    flex: 1;
}

.cookie-btn-rej {
    background: #eee;
    color: #666;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

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

    .hero-container,
    .about-container {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-description {
        margin: 0 auto 35px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}