/* Base Styles */
:root {
    --primary-red: #d32f2f;
    --dark-red: #b71c1c;
    --black: #212121;
    --white: #ffffff;
    --light-gray: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
    font-weight: 400;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header with Animated Text Vibes */
header {
    background: #8B0000;
    padding: 25px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 100;
    font-family: 'Poppins', sans-serif;
}

.logo {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: #FFD700;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(255, 215, 0, 0.5);
    animation: bounce 2s infinite, glowPulse 3s infinite alternate;
}

.tagline {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}

/* Glow Pulse Animation */
@keyframes glowPulse {
    0% {
        text-shadow: 2px 2px 10px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 2px 2px 20px rgba(255, 215, 0, 0.8);
    }
    100% {
        text-shadow: 2px 2px 10px rgba(255, 215, 0, 0.5);
    }
}

/* Hero Section */
.hero {
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Category Section */
.categories {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.categories-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.category-btn {
    padding: 12px 25px;
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--primary-red);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.category-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.category-btn.active {
    background: var(--primary-red);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: #5d4037;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #d32f2f;
    margin: 15px auto;
    border-radius: 2px;
}

/* Limited Offer Countdown */
.limited-offer {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #ffe0e0, #fff5f5);
    border: 2px dashed #d32f2f;
    border-radius: 15px;
    animation: pulse 2s infinite;
}

.offer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #b71c1c;
    margin-bottom: 10px;
    animation: blink 1.5s infinite;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.time-box {
    background: #fff;
    border: 2px solid #d32f2f;
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    min-width: 70px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.time-box span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d32f2f;
    display: block;
    animation: pop 1s ease-in-out infinite alternate;
}

.time-box small {
    font-size: 0.8rem;
    color: #444;
}

/* Animations */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes pop {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(211, 47, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}


.offer-notice {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #b71c1c;
    font-weight: 600;
    animation: blink 2s infinite;
}


/* Offer Badges */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #d32f2f, #ff5722);
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: bounceBadge 2s infinite;
    z-index: 10;
}

@keyframes bounceBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}



/* Video Presentation Styles */
.video-presentation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 0;
}

.video-presentation.reverse {
    flex-direction: row-reverse;
}

.mobile-device {
    position: relative;
    width: 300px;
    height: 610px;
    background: #222;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    padding: 12px;
    transform: scale(0.95);
}

.mobile-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.mobile-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 20px;
    background: #222;
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

.mobile-buttons {
    position: absolute;
    left: -8px;
    top: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-button {
    width: 4px;
    height: 40px;
    background: #444;
    border-radius: 2px;
}

.video-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

.video-info {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.video-title {
    font-size: 2rem;
    color: #5d4037;
    margin-bottom: 20px;
    font-weight: 600;
}

.video-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: #4caf50;
    color: white;
}

.btn-primary:hover {
    background: #388e3c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ff5722;
    color: white;
}

.btn-secondary:hover {
    background: #e64a19;
    transform: translateY(-2px);
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 1.5rem;
    color: #ff5722;
    font-weight: 700;
}

.whatsapp-note {
    margin-top: 25px;
    padding: 12px;
    background: #e3f2fd;
    border-radius: 10px;
    color: #1565c0;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 25px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 2px solid #eee;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    border-color: #d32f2f;
    box-shadow: 0 8px 20px rgba(211,47,47,0.15);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    border: none;
    outline: none;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.faq-question::after {
    content: "\f078"; /* FontAwesome chevron-down */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
    color: #d32f2f;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-question:hover {
    background: #fff5f5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 15px 0;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* Smooth opening */
.faq-item.active .faq-answer {
    max-height: 500px; /* Enough for long answers */
    padding: 0 20px 15px;
}


/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3000;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: bounceFloat 2s infinite;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* Specific Colors */
.call-btn {
    background: #2196f3;
}

.whatsapp-btn {
    background: #25d366;
}

/* Bounce Animation */
@keyframes bounceFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}


/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #d32f2f;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #b71c1c;
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-stars {
    color: #ff9800;
    font-size: 1.2rem;
}


/* Offer Badges */
.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #d32f2f;
    color: #fff;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: pulseBadge 2s infinite;
    z-index: 10;
}

/* Variants */
.badge.limited {
    background: linear-gradient(135deg, #ff5722, #e64a19);
}
.badge.popular {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}
.badge.seller {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.6); }
    50% { transform: scale(1.1); box-shadow: 0 0 15px rgba(211, 47, 47, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.6); }
}


/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.contact-info {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.social-links {
    margin: 30px 0;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--dark-red);
}

.copyright {
    margin-top: 30px;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* New styles for multiple videos */
.videos-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 40px;
}

.video-item {
    display: none;
    animation: fadeIn 1s ease;
	position: relative; /* ✅ Added for badge positioning */
}

.video-item.active {
    display: block;
}

/* Right Click Popup */
.right-click-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.right-click-content {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
    text-align: center;
    max-width: 90%;
    width: 450px;
    border: 3px solid #b71c1c; /* Fix: replaced var(--darker-red) */
    animation: popEffect 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.right-click-icon {
    font-size: 70px;
    color: #b71c1c; /* Fix: replaced var(--darker-red) */
    margin-bottom: 25px;
    animation: shake 0.8s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-15px); }
    75% { transform: translateX(15px); }
}

.right-click-content h2 {
    color: #b71c1c; /* Fix */
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.right-click-content p {
    color: #555; /* Fix: replaced var(--dark-gray) */
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.right-click-btn {
    padding: 14px 40px;
    background: linear-gradient(90deg, #b71c1c, #d32f2f);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease; /* Fix: replaced var(--transition) */
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.right-click-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

/* Animation for popup */
@keyframes popEffect {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}


/* Mobile-specific styles */
@media (max-width: 768px) {
    .logo {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .video-presentation {
        flex-direction: column;
    }
    
    .video-presentation.reverse {
        flex-direction: column;
    }
    
    .mobile-device {
        width: 280px;
        height: 570px;
        transform: scale(0.9);
        margin: -20px 0 -30px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .video-title {
        font-size: 1.7rem;
    }
    
    .video-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .btn {
        width: 260px;
        padding: 12px 24px;
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .mobile-device {
        transform: scale(0.8);
        margin: -40px 0 -50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .video-title {
        font-size: 1.5rem;
    }
}