/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-banner {
    margin: 1.5rem 0;
}

.hero-banner img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.hero-image {
    margin: 2rem 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-cta {
    font-size: 1.2rem;
    padding: 20px 40px;
}

/* Pain Points Section */
.pain-points {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pain-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pain-item:hover {
    transform: translateY(-5px);
}

.pain-item i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.pain-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Solution Section */
.solution {
    padding: 80px 0;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.solution-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
}

.solution-item i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.solution-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Carousel Section */
.carousel-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 80px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.magazine-cover {
    transition: transform 0.3s ease;
}

.magazine-cover:hover {
    transform: scale(1.05);
}

.magazine-cover img {
    width: 300px;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(52, 152, 219, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: rgba(52, 152, 219, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background: #3498db;
    transform: scale(1.2);
}

/* Offers Section */
.offers {
    padding: 80px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card.premium {
    border: 3px solid #ffd700;
    transform: scale(1.05);
    background: white;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

@keyframes goldShine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.offer-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffa500, #ffd700);
    background-size: 200% 200%;
    animation: goldShine 2s ease-in-out infinite;
    color: #2c3e50;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.offer-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 1.2rem;
    color: #e74c3c;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
}

.offer-card.premium .price {
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffa500, #ffd700);
    background-size: 200% 200%;
    animation: goldShine 2s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.offer-card.premium .original-price {
    color: #e74c3c;
    font-weight: 600;
}

.offer-card.premium .offer-header h3 {
    color: #2c3e50;
    text-shadow: none;
}

.offer-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.offer-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    text-align: left;
}

.offer-features i {
    color: #27ae60;
    margin-right: 0.5rem;
}

.offer-features i.fa-star {
    color: #f39c12;
}

.bonus-feature {
    text-align: left;
    margin: 0.3rem 0;
}

.bonus-feature i {
    color: #ffd700;
}

.bonus-feature strong {
    color: #b8860b;
}



.offer-cta {
    width: 100%;
    padding: 15px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.premium-cta {
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffa500, #ffd700);
    background-size: 200% 200%;
    animation: goldPulse 1.5s ease-in-out infinite, goldShine 2s ease-in-out infinite;
    border: 2px solid #ffd700;
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

@keyframes goldPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
}

.premium-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.9);
}

.purchase-count {
    font-size: 0.75rem;
    color: #7f8c8d;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-style: italic;
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    color: #2c3e50;
    font-size: 1.1rem;
}

.faq-question i {
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding: 1.5rem;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.guarantee-content {
    text-align: center;
}

.guarantee-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.guarantee-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* FAQ CTA Button */
.faq-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem 0;
}

.faq-cta .cta-button {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.faq-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .carousel-slide {
        gap: 1rem;
        padding: 1rem;
    }
    
    .carousel-container {
        padding: 0 60px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        left: 15px;
    }
    
    .carousel-btn.next {
        right: 15px;
    }
    
    .magazine-cover img {
        width: 250px;
        height: 350px;
    }
    
    .carousel-dots {
        gap: 0.3rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card.premium {
        transform: none;
    }
    
    .pain-grid,
    .solution-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    

    
    .faq-cta .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-banner {
        margin: 1rem 0;
    }
    
    .hero-image {
        margin: 1.5rem 0;
    }
    

    
    .section-title {
        font-size: 1.8rem;
    }
    
    .magazine-cover img {
        width: 150px;
        height: 210px;
    }
    
    .carousel-container {
        padding: 0 50px;
    }
    
    .carousel-slide {
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .magazine-cover img {
        width: 200px;
        height: 280px;
    }
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-content p {
    margin: 5px 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-content p:first-child {
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-content p:last-child {
    font-size: 0.8rem;
    opacity: 0.7;
    color: #bdc3c7;
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-content p {
        font-size: 0.8rem;
    }
    
    .footer-content p:last-child {
        font-size: 0.7rem;
    }
}

/* Sales Notification System */
.sales-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
    border-left: 3px solid #27ae60;
    padding: 8px 10px;
    max-width: 220px;
    min-width: 200px;
    z-index: 1000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.sales-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-icon {
    color: #27ae60;
    font-size: 0.9rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
    line-height: 1.3;
}

.notification-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2px;
    font-size: 0.8rem;
}

.notification-details {
    color: #7f8c8d;
    font-size: 0.7rem;
    margin-bottom: 2px;
}

.notification-time {
    color: #95a5a6;
    font-size: 0.7rem;
    font-style: italic;
}

.notification-close {
    background: none;
    border: none;
    color: #bdc3c7;
    font-size: 0.7rem;
    cursor: pointer;
    padding: 0;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    color: #95a5a6;
}

/* Responsive adjustments for notifications */
@media (max-width: 480px) {
    .sales-notification {
        right: 10px;
        max-width: 180px;
        min-width: 160px;
        padding: 6px 8px;
        font-size: 0.75rem;
    }
    
    .notification-name {
        font-size: 0.75rem;
    }
    
    .notification-details {
        font-size: 0.65rem;
    }
    
    .notification-time {
        font-size: 0.65rem;
    }
}
