/* Brand Colors */
:root {
    --brand-primary: #00984f;
    --brand-secondary: #008037;
    --brand-dark: #007b5e;
    --brand-light: #33cc99;
    --urgent-red: #ff4757;
    --urgent-orange: #ff6348;
    --urgent-yellow: #ffa502;
}

/* Mobile First - Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-size: 16px;
    line-height: 1.6;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Hero Section - Mobile First */
.hero-section {
    background: linear-gradient(135deg, #00984f 0%, #008037 50%, #007b5e 100%);
    padding: 30px 15px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 5px 20px rgba(0, 152, 79, 0.3);
}

.hero-section h1 {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
    line-height: 1.3;
}

.hero-badge {
    display: block;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    padding: 12px 15px;
    border-radius: 15px;
    margin: 15px 0;
    border: 2px solid rgba(255,255,255,0.5);
    animation: pulse 2s infinite;
    font-size: 0.9rem;
}

.hero-badge h5 {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes urgentFlash {
    0%, 100% {
        background: linear-gradient(135deg, #ff4757 0%, #ff6348 50%, #ffa502 100%);
    }
    50% {
        background: linear-gradient(135deg, #ff6348 0%, #ff4757 50%, #ff6348 100%);
    }
}

@keyframes timerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
    }
}

/* Stats Section - Mobile First */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 15px;
    margin: 20px 0;
    border-radius: 15px;
    color: white;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.stats-section h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    margin: 8px 0;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Feature Cards - Mobile First */
.feature-card {
    background: white;
    padding: 20px 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #00984f;
}

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

.feature-card h2 {
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Pricing Cards - Mobile First */
.pricing-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 25px 15px;
    margin: 20px 0;
    border-radius: 15px;
}

.pricing-section h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-section .lead {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 20px 15px;
    margin: 12px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: #00984f;
    box-shadow: 0 8px 25px rgba(0, 152, 79, 0.4);
}

.pricing-card.popular::before {
    content: 'বেস্ট সেলার';
    position: absolute;
    top: 10px;
    right: -30px;
    background: #00984f;
    color: white;
    padding: 4px 35px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.pricing-card h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #00984f;
    margin: 15px 0;
}

.old-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

.pricing-card ul {
    font-size: 0.85rem;
}

/* CTA Buttons - Mobile First */
.cta-button {
    background: linear-gradient(135deg, #00984f 0%, #008037 100%);
    color: white;
    padding: 14px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 152, 79, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    cursor: pointer;
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 10px rgba(0, 152, 79, 0.3);
}

/* Benefits Section - Mobile First */
.benefits-section {
    background: white;
    padding: 25px 15px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.benefits-section h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.benefit-item {
    padding: 15px;
    margin: 10px 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    border-left: 4px solid #00984f;
}

.benefit-item h5 {
    color: #333;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Trust Section */
.trust-badge {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    border-radius: 20px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.3);
}

/* Form Section - Mobile First */
.form-section {
    background: white;
    padding: 25px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin: 20px 0;
    border: 2px solid #00984f;
}

.form-section h3 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: #00984f;
    box-shadow: 0 0 0 0.2rem rgba(0, 152, 79, 0.25);
}

.form-group label {
    font-size: 0.95rem;
}

/* Urgency Banner - Mobile First */
.urgency-banner {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
    animation: shake 1s infinite;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.urgency-banner h4 {
    font-size: 1rem;
    margin: 0;
    font-weight: bold;
}

/* Countdown Timer - Mobile First with URGENT colors */
.countdown-timer {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 50%, #ffa502 100%);
    padding: 25px 15px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
    text-align: center;
    color: white;
    animation: urgentFlash 3s infinite;
    position: relative;
    overflow: hidden;
}

.countdown-timer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.countdown-timer h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.countdown-timer p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.timer-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.timer-box {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 12px 10px;
    border-radius: 12px;
    min-width: 65px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    animation: timerPulse 2s infinite;
}

.timer-box:nth-child(2) {
    animation-delay: 0.2s;
}

.timer-box:nth-child(3) {
    animation-delay: 0.4s;
}

.timer-box:nth-child(4) {
    animation-delay: 0.6s;
}

.timer-value {
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
    color: #fff;
    font-family: 'Arial Black', Arial, sans-serif;
}

.timer-label {
    font-size: 0.7rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Value Proposition - Mobile First */
.value-prop {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    color: white;
    padding: 25px 15px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 184, 148, 0.3);
}

.value-prop h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.value-prop p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Payment Info - Mobile First */
.payment-info {
    background: #f8f9fa;
    padding: 20px 15px;
    border-radius: 12px;
    border: 2px dashed #00984f;
    margin: 20px 0;
}

.payment-info h3 {
    color: #00984f;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.payment-info h4 {
    font-size: 1rem;
}

.payment-info h3:first-child {
    font-size: 1.1rem;
}

.payment-info .alert {
    font-size: 0.85rem;
    padding: 15px;
}

.payment-info .alert h5 {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.payment-info .alert p {
    font-size: 0.85rem;
    margin: 5px 0;
}

/* Trust Badge - Mobile First */
.trust-badge {
    text-align: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(116, 185, 255, 0.3);
}

.trust-badge h2, .trust-badge h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.trust-badge h5 {
    font-size: 0.95rem;
}

/* Image Responsive */
img.img-fluid {
    border-radius: 15px !important;
    margin-bottom: 20px;
}

/* Section Headings - Mobile First */
h1.display-4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

h1.display-5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

p.lead {
    font-size: 0.95rem;
}

/* Desktop Styles - min-width queries */
@media (min-width: 576px) {
    .hero-section {
        padding: 40px 20px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        padding: 15px 25px;
    }
    
    .timer-box {
        min-width: 80px;
        padding: 15px 12px;
    }
    
    .timer-value {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding: 50px 30px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .hero-badge h5 {
        font-size: 1rem;
    }
    
    .countdown-timer {
        padding: 35px 25px;
    }
    
    .countdown-timer h3 {
        font-size: 1.8rem;
    }
    
    .timer-box {
        min-width: 100px;
        padding: 20px 20px;
    }
    
    .timer-value {
        font-size: 2.5rem;
    }
    
    .timer-label {
        font-size: 0.9rem;
    }
    
    .timer-container {
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
        margin: 10px;
    }
    
    .stat-card h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h2 {
        font-size: 1.4rem;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-card.popular {
        transform: scale(1.02);
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
        width: auto;
    }
    
    .form-section {
        padding: 35px 25px;
    }
    
    h1.display-4 {
        font-size: 2rem;
    }
    
    h1.display-5 {
        font-size: 1.6rem;
    }
}

@media (min-width: 992px) {
    .hero-section {
        padding: 60px 40px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .countdown-timer {
        padding: 40px 30px;
    }
    
    .timer-value {
        font-size: 3rem;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        background: rgba(255,255,255,0.2);
    }
    
    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .pricing-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }
    
    .pricing-card.popular {
        transform: scale(1.05);
    }
    
    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 152, 79, 0.5);
    }
    
    .price {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Testimonials Section */
.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border-left: 4px solid #00984f;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: #00984f;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #ffa502;
    margin-bottom: 10px;
}

/* Guarantee Badge */
.guarantee-section {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 25px 15px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
    border: 3px solid #ffa502;
}

.guarantee-section h4 {
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Live Activity Indicator */
.live-activity {
    background: #ff4757;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    display: inline-block;
    margin: 15px 0;
    animation: pulse 2s infinite;
    font-size: 0.9rem;
    font-weight: bold;
}

.live-activity::before {
    content: '🔴';
    margin-right: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 15px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: bold;
}

.comparison-table th:first-child {
    background: #00984f;
    color: white;
}

.comparison-table th.free-col {
    background: #6c757d;
    color: white;
}

.comparison-table th.premium-col {
    background: #00984f;
    color: white;
}

.comparison-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #333;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td.free-col {
    background: #f8f9fa;
    color: #666;
}

.comparison-table td.premium-col {
    background: #e8f5e9;
    font-weight: bold;
    color: #00984f;
}

/* FAQ Section */
.faq-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 3px solid #00984f;
}

.faq-question {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-size: 1rem;
}

.faq-answer {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Success Stats Bar */
.success-stats-bar {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    padding: 20px 15px;
    border-radius: 15px;
    color: white;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 184, 148, 0.3);
}

.success-stats-bar h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.success-number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    margin: 10px 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #00984f 0%, #008037 100%);
    color: white;
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

.sticky-cta.active {
    display: block;
}

.sticky-cta button {
    width: 100%;
    background: white;
    color: #00984f;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 25px;
    }
    
    .guarantee-section {
        padding: 30px 25px;
    }
    
    .guarantee-section h4 {
        font-size: 1.5rem;
    }
}
