/* ================= GLOBAL SETTINGS & CSS VARIABLES ================= */
:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --primary-red: #d9232d;
    --primary-red-hover: #b01a22;
    --accent-gold: #f39c12;
    --dark-bg: #1a1a1a;
    --gray-bg: #f5f5f5;
    --border-color: #dddddd;
    --max-width: 1000px;
    --font-main: 'Arial', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.red-text { color: var(--primary-red); }

/* ================= URGENCY BAR ================= */
.top-urgency-bar {
    background-color: #ffeb3b;
    color: #000;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    border-bottom: 2px solid #fbc02d;
}

/* ================= HEADER SECTION ================= */
.main-header {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 30px 0;
}
.date-tag {
    font-size: 14px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.main-headline {
    font-size: 38px;
    line-height: 1.2;
}
.main-headline .highlight {
    color: var(--accent-gold);
    font-weight: 900;
}

/* ================= HERO SECTION (NEW) ================= */
.hero-section {
    padding: 60px 0;
    background-color: #f0f7ff;
    border-bottom: 1px solid #cce0ff;
    margin-bottom: 40px;
}
.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-text {
    flex: 1;
}
.hero-text h2 {
    font-size: 42px;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}
.hero-benefits {
    list-style: none;
    margin-bottom: 30px;
}
.hero-benefits li {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 10px;
}
.hero-btn {
    display: inline-block;
    background-color: var(--primary-red);
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(217, 35, 45, 0.4);
    transition: background-color 0.3s;
}
.hero-btn:hover {
    background-color: var(--primary-red-hover);
}
.hero-image {
    flex: 1;
    text-align: right;
}
.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h2 {
        font-size: 32px;
    }
    .hero-image {
        text-align: center;
        margin-top: 20px;
    }
}

/* ================= VSL & TIMER SECTION ================= */
.vsl-section {
    padding: 40px 0;
}
.video-placeholder img {
    max-width: 100%;
    border: 5px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.sub-headline {
    margin: 30px 0;
    font-size: 24px;
    color: #222;
}
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}
.time-box {
    background: var(--dark-bg);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}
.time-box span {
    display: block;
    font-size: 28px;
    color: var(--accent-gold);
}

/* ================= PRICING GRID ================= */
.pricing-section {
    padding: 50px 0;
    background-color: var(--gray-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.pricing-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.pricing-card.best-value {
    border-color: var(--accent-gold);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.2);
    z-index: 2;
}
.card-header {
    background: #555;
    color: #fff;
    padding: 8px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.highlight-header { background: var(--accent-gold); color: #000; }
.pricing-card h3 { font-size: 22px; margin-bottom: 15px; }
.pricing-card img { max-width: 120px; margin: 10px 0; }
.price-huge { font-size: 50px; font-weight: 900; line-height: 1; }
.price-huge span { font-size: 24px; vertical-align: super; }
.per-bottle { color: #777; margin-bottom: 10px; }
.savings { background: #e8f5e9; color: #2e7d32; padding: 5px; font-weight: bold; margin-bottom: 10px; border-radius: 4px; }
.bonus-text { font-weight: bold; margin-bottom: 10px; }
.highlight-bonus { color: var(--primary-red); }
.total-price { font-size: 18px; margin: 15px 0; padding-top: 15px; border-top: 1px dashed #ccc; }
.total-price del { color: #999; }
.btn-buy {
    display: block;
    background: var(--primary-red);
    color: #fff;
    text-decoration: none;
    padding: 15px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}
.btn-buy:hover { background: var(--primary-red-hover); }

/* Animation for Best Value Button */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 10px var(--primary-red); }
    100% { transform: scale(1); }
}
.pulse { animation: pulse 2s infinite; }

/* ================= INTRO LETTER ================= */
.intro-letter { padding: 40px 0; }
.intro-letter h2 { margin-bottom: 25px; color: var(--primary-red); }
.letter-box {
    background: #fff;
    padding: 30px;
    border-left: 5px solid var(--accent-gold);
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.signature { margin-top: 20px; font-size: 20px; }

/* ================= BENEFITS SECTION ================= */
.benefits-section { padding: 40px 0; }
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.benefit-item .icon { width: 60px; height: 60px; object-fit: contain; }
.benefit-item h3 { color: #0056b3; margin-bottom: 10px; }

/* ================= BONUSES ================= */
.bonuses-section { padding: 50px 0; background: var(--gray-bg); }
.bonuses-section h2 { font-size: 30px; margin-bottom: 10px; }
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.bonus-card img { max-width: 100%; height: auto; border: 1px solid #ccc; box-shadow: 0 5px 15px rgba(0,0,0,0.1); margin-bottom: 15px; }

/* ================= INGREDIENTS ================= */
.ingredients-section { padding: 50px 0; }
.ingredient-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}
.ingredient-list li {
    background: #e3f2fd;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #bbdefb;
}

/* ================= TESTIMONIALS ================= */
.testimonials-section { padding: 50px 0; background: #fafafa; }
.testimonials-section h2 { margin-bottom: 40px; }
.testimonial-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    position: relative;
}
.review-stars { color: var(--accent-gold); font-size: 20px; margin-bottom: 10px; }
.verified { color: #28a745; font-size: 14px; font-weight: normal; }
.testimonial-meta { margin-top: 20px; font-size: 14px; color: #666; border-top: 1px solid #eee; padding-top: 15px; }

/* ================= HONEST REVIEW & TRUST SECTION STYLES ================= */
.trust-review-section {
    padding: 40px 0;
    margin-top: 20px;
}

.author-trust-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-left: 4px solid #17a2b8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    background: #ccc;
    object-fit: cover;
}
.author-info h4 {
    margin-bottom: 5px;
    color: #333;
}
.author-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.pros-cons-container {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}
.pros-box, .cons-box {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.pros-box { border-top: 5px solid #28a745; }
.cons-box { border-top: 5px solid #dc3545; }

.pros-box h3 { color: #28a745; margin-bottom: 20px; font-size: 20px; }
.cons-box h3 { color: #dc3545; margin-bottom: 20px; font-size: 20px; }

.pros-box ul, .cons-box ul { list-style: none; padding-left: 0; }
.pros-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
}
.pros-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}
.cons-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
}
.cons-box ul li::before {
    content: '✖';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.who-is-it-for {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.who-grid {
    display: flex;
    gap: 20px;
}
.who-card {
    flex: 1;
    background: #e8f5e9;
    padding: 20px;
    border-radius: 5px;
}
.who-card.not-for {
    background: #ffebee;
}
.who-card h4 { margin-bottom: 10px; font-size: 18px; }

/* ================= COMPARISON TABLE ================= */
.comparison-section { padding: 50px 0; }
.table-responsive { overflow-x: auto; }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: center;
}
.compare-table th, .compare-table td { padding: 15px; border: 1px solid var(--border-color); }
.compare-table th { background: var(--dark-bg); color: #fff; font-size: 18px; }
.compare-table th:nth-child(2) { background: var(--primary-red); }
.check { font-size: 24px; color: green; }
.cross { font-size: 24px; color: red; }

/* ================= FAQ ACCORDION ================= */
.faq-section { padding: 50px 0; }
.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 5px;
}
.faq-item summary {
    padding: 15px 20px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    background: var(--gray-bg);
    list-style: none; /* Hide default arrow */
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    color: var(--primary-red);
}
.faq-item[open] summary::after { content: '-'; }
.faq-content { padding: 20px; border-top: 1px solid var(--border-color); }

/* ================= GUARANTEE ================= */
.guarantee-section { padding: 60px 0; background: #fff9c4; border-top: 2px dashed #fbc02d; border-bottom: 2px dashed #fbc02d; }
.guarantee-badge { max-width: 150px; margin-bottom: 20px; }

/* ================= REFERENCES ================= */
.references-section { padding: 40px 0; font-size: 12px; border-top: 1px solid var(--border-color); }
.ref-links a { display: block; color: #0056b3; margin-bottom: 5px; text-decoration: none; }
.ref-links a:hover { text-decoration: underline; }

/* ================= FOOTER ================= */
.main-footer { background: var(--dark-bg); color: #aaa; padding: 40px 0; font-size: 12px; }
.footer-links { margin-bottom: 20px; }
.footer-links a { color: #fff; text-decoration: none; margin: 0 10px; }
.fda-disclaimer, .buygoods-disclaimer { margin-bottom: 15px; text-align: justify; }
.copyright { margin-top: 20px; border-top: 1px solid #444; padding-top: 20px; }
.copyright a { color: var(--accent-gold); text-decoration: none; }

/* ================= STICKY MOBILE CTA BAR ================= */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(34, 34, 34, 0.95);
    backdrop-filter: blur(5px);
    border-top: 2px solid var(--accent-gold);
    padding: 12px 15px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none; /* Desktop par hide rahega */
    transform: translateY(100%);
    animation: slideUp 1s forwards;
    animation-delay: 3s; /* Page load hone ke 3 second baad aayega */
}

@keyframes slideUp {
    to { transform: translateY(0); }
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-text {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.sticky-btn {
    background: var(--primary-red);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(217, 35, 45, 0.5);
    animation: pulse 2s infinite;
}

/* ================= RESPONSIVE ADJUSTMENTS ================= */
@media (max-width: 768px) {
    .main-headline { font-size: 28px; }
    .pricing-card.best-value { transform: scale(1); margin-top: 15px; margin-bottom: 15px; }
    .benefit-item { flex-direction: column; text-align: center; align-items: center; }
    
    .pros-cons-container, .who-grid { flex-direction: column; }
    .author-trust-box { flex-direction: column; text-align: center; }
    .author-img { margin-right: 0; margin-bottom: 15px; }
    
    .sticky-cta-bar { display: block; }
    .main-footer { padding-bottom: 80px; } /* Footer upar shift hoga sticky bar ki wajah se */
}

