/* Color Palette & Custom Variables */
:root {
    --deep-navy: #0A192F;
    --golden-yellow: #9bdb41;
    --light-sand: #F4F1EA;
    --mint-green: #98FF98;
    --brown-shade: #085047;
    --white: #FFFFFF;
    --dark-bg: #112240;
}

/* Reset using class */
.site-body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--deep-navy);
    background: linear-gradient(120deg, var(--light-sand) 0%, #e8e3d8 100%);
    background-size: 200% 200%;
    animation: gradientBg 15s ease infinite;
    overflow-x: hidden;
}

@keyframes gradientBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--deep-navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.loader-circle {
    border: 5px solid var(--light-sand);
    border-top: 5px solid var(--golden-yellow);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
.loader-text {
    color: var(--golden-yellow);
    font-size: 1.5rem;
    font-weight: bold;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Ad Banner */
.top-ad-banner {
    background-color: var(--deep-navy);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
}
.ad-text { margin: 0; }

/* Header */
.main-header {
    background-color: var(--brown-shade);
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo-text {
    color: var(--golden-yellow);
    font-size: 1.8rem;
    font-weight: bold;
}
.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}
.nav-link:hover { color: var(--golden-yellow); }
.shop-btn {
    background-color: var(--golden-yellow);
    color: var(--deep-navy);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
}
.shop-btn:hover {
    background-color: var(--mint-green);
    transform: translateY(-2px);
}

/* Mobile Menu */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}
.close-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 20px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
}
.hero-content { max-width: 50%; }
.hero-title {
    font-size: 3rem;
    color: var(--deep-navy);
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}
.cta-btn {
    display: inline-block;
    background-color: var(--deep-navy);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}
.cta-btn:hover {
    background-color: var(--golden-yellow);
    color: var(--deep-navy);
    transform: scale(1.05);
}
.floating-product-img {
    max-width: 100%;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: floatImage 4s ease-in-out infinite;
}
@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* Sections Global */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}
.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--deep-navy);
}

/* About Section */
.about-section { background-color: var(--white); }
.section-text { text-align: center; line-height: 1.8; margin-bottom: 40px; font-size: 1.1rem; }
.product-showcase {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--light-sand);
    padding: 30px;
    border-radius: 10px;
}
.product-img-small { width: 200px; border-radius: 8px; }
.product-title { margin-bottom: 10px; }
.product-desc { line-height: 1.5; }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-icon { font-size: 2.5rem; display: block; margin-bottom: 15px; }

/* Testimonials */
.testimonials-section { background-color: var(--deep-navy); color: var(--white); }
.testimonials-section .section-title { color: var(--golden-yellow); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.testimonial-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}
.avatar {
    width: 50px; height: 50px;
    background: var(--golden-yellow);
    color: var(--deep-navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; margin-bottom: 15px;
}
.testimonial-text { font-style: italic; margin-bottom: 15px; line-height: 1.6; }
.customer-name { font-weight: bold; color: var(--mint-green); }

/* FAQs */
.faq-section { background-color: var(--white); }
.faq-item { margin-bottom: 20px; border-bottom: 1px solid #ddd; padding-bottom: 15px; }
.faq-question { color: var(--deep-navy); margin-bottom: 10px; }
.faq-answer { line-height: 1.6; }

/* Footer */
.main-footer {
    background-color: #111;
    color: var(--white);
    padding: 60px 30px 20px;
}
.footer-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px; max-width: 1200px; margin: 0 auto; }
.footer-heading { color: var(--golden-yellow); margin-bottom: 20px; }
.footer-text { margin-bottom: 10px; line-height: 1.5; }
.footer-link { color: var(--white); text-decoration: none; transition: color 0.3s; }
.footer-link:hover { color: var(--mint-green); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list-item { margin-bottom: 10px; }
.modal-trigger-btn { background: none; border: none; color: var(--white); cursor: pointer; padding: 0; font-size: 1rem; text-decoration: underline; }
.modal-trigger-btn:hover { color: var(--mint-green); }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; max-width: 1200px; margin: 0 auto; }
.footer-disclaimer { font-size: 0.8rem; color: #aaa; margin-bottom: 10px; }
.footer-copyright { font-size: 0.9rem; }

/* Modals */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: none; align-items: center; justify-content: center; z-index: 2000;
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: var(--white); color: var(--deep-navy); padding: 40px;
    border-radius: 10px; max-width: 600px; width: 90%; position: relative;
}
.close-modal-btn {
    position: absolute; top: 15px; right: 20px; font-size: 1.5rem; cursor: pointer;
}
.modal-title { margin-bottom: 20px; color: var(--deep-navy); }
.modal-text { line-height: 1.6; }

/* Cookie Banner */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--deep-navy); color: var(--white);
    padding: 20px; text-align: center; display: flex;
    justify-content: center; align-items: center; gap: 20px;
    z-index: 3000; box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.cookie-text { margin: 0; font-size: 0.9rem; }
.cookie-btn {
    padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; font-weight: bold;
}
.accept-btn { background: var(--mint-green); color: var(--deep-navy); }
.reject-btn { background: transparent; border: 1px solid var(--white); color: var(--white); }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 75%; height: 100vh;
        background: var(--brown-shade); flex-direction: column; padding: 30px;
        transition: right 0.3s ease; box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        display: flex;
    }
    .nav-menu.active { right: 0; }
    .nav-list { flex-direction: column; width: 100%; }
    .nav-item { margin-bottom: 20px; font-size: 1.2rem; }
    .hamburger-btn, .close-menu-btn { display: block; }
    .shop-btn { display: none; }
    
    .hero-section { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; margin-bottom: 40px; }
    .product-showcase { flex-direction: column; text-align: center; }
    .features-grid, .testimonials-grid, .footer-container { grid-template-columns: 1fr; }
    .cookie-banner { flex-direction: column; }
}