/* Custom Properties */
:root {
    --bg-primary: #050505;
    --bg-secondary: #121212;
    --gold-luxury: #D4AF37;
    --gold-bright: #F4D06F;
    --green-herbal: #6E8E2B;
    --green-premium: #95B63C;
    --text-white: #F8F8F8;
    --text-grey: #b3b3b3;
    --glass-bg: rgba(18, 18, 18, 0.65);
    --glass-border: rgba(212, 175, 55, 0.2);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background-color: var(--bg-primary); color: var(--text-white); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }
canvas#particleCanvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; pointer-events: none; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
.section-cta { margin-top: 50px; }
.text-center { text-align: center; } .text-left { text-align: left; } .mt-2 { margin-top: 1rem; } .mt-4 { margin-top: 2rem; } .gold-text { color: var(--gold-luxury); }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--gold-bright); margin-bottom: 1rem; }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 3rem; text-transform: uppercase; letter-spacing: 1px; }
.section-subtitle { text-align: center; color: var(--text-grey); margin-top: -2rem; margin-bottom: 3rem; }

/* Buttons & Glassmorphism */
.btn { display: inline-block; padding: 12px 24px; font-family: var(--font-body); font-weight: 600; border-radius: 4px; cursor: pointer; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; border: none; text-align: center; }
.btn-primary { background: linear-gradient(135deg, var(--gold-luxury), var(--gold-bright)); color: var(--bg-primary); }
.btn-primary:hover { box-shadow: 0 0 20px rgba(244, 208, 111, 0.4); transform: translateY(-2px); }
.btn-large { padding: 16px 32px; font-size: 1.1rem; }
.btn-block { display: block; width: 100%; }
.glow-effect { animation: glowPulse 2s infinite; }
.glass-card { background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 12px; padding: 30px; box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3); }

/* Header, Mobile Menu & Nav */
.main-header { position: fixed; top: 0; width: 100%; background: rgba(5, 5, 5, 0.85); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(212, 175, 55, 0.1); z-index: 1000; padding: 15px 0; }
.header-container { display: flex; justify-content: space-between; align-items: center; position: relative; }
.logo { display: flex; align-items: center; gap: 10px; } .logo img { height: 40px; }
.logo-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--gold-bright); }
.desktop-nav a { margin: 0 15px; font-weight: 500; color: var(--text-white); transition: var(--transition); }
.desktop-nav a:hover { color: var(--gold-bright); }
.burger-menu { display: none; font-size: 2rem; color: var(--gold-bright); cursor: pointer; user-select: none; }
.mobile-nav { display: none; flex-direction: column; background: rgba(5, 5, 5, 0.98); position: absolute; top: 100%; left: 0; width: 100%; border-bottom: 1px solid var(--gold-luxury); padding: 10px 0; }
.mobile-nav.active { display: flex; }
.mobile-nav a { padding: 15px 20px; color: var(--text-white); text-align: center; border-bottom: 1px solid rgba(255, 255, 255, 0.05); text-transform: uppercase; letter-spacing: 1px; }
.mobile-nav a:last-child { border-bottom: none; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; position: relative; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-kannada { font-size: 2.2rem; color: var(--gold-bright); line-height: 1.3; }
.hero-sub { font-size: 1.3rem; color: var(--text-white); font-weight: 300; margin-bottom: 20px; }
.hero-desc { color: var(--text-grey); font-size: 1.1rem; margin-bottom: 30px; }
.trust-badges-list { list-style: none; margin-bottom: 40px; } .trust-badges-list li { margin-bottom: 10px; font-size: 1.1rem; }
.glow-backdrop { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, rgba(0,0,0,0) 70%); z-index: -1; }
.floating-product { animation: float 4s ease-in-out infinite; max-width: 80%; margin: 0 auto; }

/* Premium Section Images (img1 & img2) */
.premium-section-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin: 0 auto 40px auto;
    display: block;
}

/* Trust Strip */
.trust-strip { background: var(--bg-secondary); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 15px 0; }
.trust-strip-container { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 20px; font-weight: 600; color: var(--gold-luxury); text-align: center; }

/* Ingredients Layout */
.ingredients-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.ingredient-card { background: #080808; border: 1px solid var(--green-premium); padding: 15px 10px; border-radius: 8px; flex: 1 1 120px; max-width: 150px; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.ingredient-card h4 { margin: 0; color: var(--green-premium); font-size: 1rem; line-height: 1.4; }
.ingredient-card .eng-name { font-size: 0.8rem; color: var(--green-premium); text-transform: uppercase; }

/* Layout Grids */
.benefits-grid, .comparison-grid, .steps-grid, .trust-cards-grid { display: grid; gap: 30px; }
.benefits-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.comparison-grid { grid-template-columns: 1fr 1fr; }
.problem-card h3 { color: #ff4d4d; } .solution-card h3 { color: var(--green-premium); }
.steps-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); text-align: center; }
.step-num { width: 50px; height: 50px; background: var(--gold-luxury); color: var(--bg-primary); font-size: 1.5rem; font-weight: bold; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; }
.trust-cards-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; } .trust-card { padding: 15px 25px; color: var(--gold-bright); font-weight: 600; }

/* Product Showcase Section Fixes */
.showcase-container { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
    align-items: center; 
}
.styled-list {
    list-style: none;
    padding: 0;
}
.styled-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--text-white);
}
.styled-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--green-premium);
    font-size: 1.2rem;
}
.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-luxury);
    color: var(--gold-bright);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Testimonials & Expert Badges */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testi-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin: 0 auto 15px auto; border: 2px solid var(--gold-luxury); }
.testi-card { text-align: center; }
.stars { color: var(--gold-bright); font-size: 1.2rem; margin-bottom: 10px; }
.testi-author { margin-top: 15px; font-style: italic; color: var(--text-grey); }

.expert-container { text-align: center; }
.expert-visual-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-top: 30px; }
.expert-badge-item { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--text-white); font-weight: 600; }
.badge-icon { width: 60px; height: 60px; background: rgba(212, 175, 55, 0.1); border: 1px solid var(--gold-luxury); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }

/* Contact Embedded Form */
.embedded-form-wrapper { max-width: 500px; margin: 0 auto; padding: 40px; }

/* Forms Common */
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; color: var(--gold-bright); }
.form-group input { width: 100%; padding: 12px; border: 1px solid var(--glass-border); background: rgba(0,0,0,0.5); color: var(--text-white); border-radius: 4px; font-family: var(--font-body); }
.form-group input:focus { outline: none; border-color: var(--gold-luxury); }
.form-group small { display: block; margin-top: 5px; color: var(--text-grey); font-size: 0.8rem; }

/* FAQ & Footer */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border: 1px solid var(--glass-border); border-radius: 8px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 20px; background: var(--bg-secondary); color: var(--gold-bright); font-size: 1.1rem; font-weight: 600; border: none; cursor: pointer; display: flex; justify-content: space-between; }
.faq-question::after { content: '+'; font-size: 1.5rem; }
.faq-question.active::after { content: '-'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: var(--bg-primary); }
.faq-answer p { padding: 20px; color: var(--text-white); }
.main-footer { background: #000; padding: 50px 0 20px; border-top: 1px solid var(--glass-border); text-align: center; }
.footer-logo { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    margin-bottom: 20px; 
}

.footer-logo img {
    height: 160px; 
    width: auto;
    object-fit: contain;
}

/* Floating Elements */
.floating-call { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: linear-gradient(135deg, var(--gold-luxury), var(--gold-bright)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); z-index: 999; animation: glowPulse 2s infinite; }
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-primary); border-top: 1px solid var(--gold-luxury); padding: 10px; z-index: 1000; }

/* Modals */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: var(--transition); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { width: 90%; max-width: 450px; position: relative; transform: translateY(20px); transition: var(--transition); }
.modal-overlay.active .modal-content { transform: translateY(0); }
.close-modal, .close-ty-modal { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; cursor: pointer; color: var(--text-grey); }
.large-checkmark { font-size: 4rem; color: var(--green-premium); margin-bottom: 10px; }

/* Animations */
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }
@keyframes glowPulse { 0% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.4); } 50% { box-shadow: 0 0 25px rgba(244, 208, 111, 0.8); } 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.4); } }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; } .reveal.active { opacity: 1; transform: translateY(0); }

/* --- Dedicated Thank You Card Styles --- */
.ty-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    overflow: hidden; 
    padding: 0; 
    max-width: 400px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.ty-card .close-ty-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    z-index: 10;
    font-size: 1.2rem;
    transition: var(--transition);
}

.ty-card .close-ty-modal:hover {
    background: var(--gold-luxury);
    color: #000;
}

.ty-image-header {
    height: 180px;
    width: 100%;
    background: linear-gradient(135deg, #2a2a2a, #050505);
    position: relative;
    border-bottom: 2px solid var(--gold-luxury);
}

.ty-image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; 
}

.ty-check-badge {
    width: 65px;
    height: 65px;
    background: var(--gold-bright);
    color: #000;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -32px auto 15px; 
    position: relative;
    z-index: 2;
    border: 5px solid var(--bg-secondary); 
}

.ty-body {
    padding: 10px 30px 40px;
}

.ty-title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: normal;
}

.ty-subtitle {
    color: var(--text-grey);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.ty-call-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 18px 15px;
    font-size: 1.1rem;
    color: var(--text-white);
}

.ty-call-box strong {
    color: var(--gold-bright);
    font-size: 1.3rem;
    letter-spacing: 1px;
    display: block;
    margin-top: 5px;
}

/* --- MOBILE OVERRIDES (max-width: 768px) --- */
@media (max-width: 768px) {
    /* Header Hide/Show */
    .desktop-nav, .header-ctas { display: none; }
    .burger-menu { display: block; }
    
    /* Layout & Spacing Reduced */
    .section-padding { padding: 48px 0; }
    .section-title { font-size: 1.6rem; margin-bottom: 2rem; }
    .section-cta { margin-top: 30px; }
    .hero-container, .showcase-container, .comparison-grid { grid-template-columns: 1fr; }
    .hero-kannada { font-size: 1.8rem; }
    
    /* Trust Strip Fix */
    .trust-strip-container { gap: 10px; font-size: 0.85rem; }
    .separator { display: none; }
    .trust-strip-container span { display: inline-block; width: 45%; text-align: center; }
    .trust-strip-container span:first-child { width: 100%; margin-bottom: 8px; border-bottom: 1px solid var(--glass-border); padding-bottom: 8px; }

    /* Ingredients Grid Fix */
    .ingredients-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ingredient-card { max-width: 100%; padding: 10px 5px; }

    /* Fix image max-height for mobile */
    .premium-section-img { max-height: 250px; }
    
    /* Sticky bottom elements */
    .floating-call { bottom: 80px; }
    .mobile-sticky-cta { display: block; }
    .main-footer { padding-bottom: 80px; }
}