/* Base Styles */
:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --accent-color: #ff4e50;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 10px auto 0;
    border-radius: 2px;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

section {
    padding: 4rem 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.6);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--light-text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section h2 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #a5b4fc;
}

.hero-section h2:after {
    display: none;
}

.benefits {
    margin: 2rem 0;
    text-align: left;
}

.benefits li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.benefits li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.hero-image {
    margin-top: 2rem;
    transform: rotate(-5deg);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    max-width: 250px;
}

/* Problem Section */
.problem-section {
    background-color: #f8f9fa;
}

.problem-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 5rem 0;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.story-image {
    flex: 1;
    text-align: center;
}

.story-image img {
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: var(--box-shadow);
    margin: 0 auto 1rem;
}

.caption {
    font-style: italic;
    font-size: 0.9rem;
    text-align: center;
}

.story-text {
    flex: 2;
}

/* How It Works Section */
.how-section {
    background-color: var(--light-bg);
}

.how-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.how-box {
    flex: 1;
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.how-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.how-box img {
    margin: 1.5rem auto;
    border-radius: 50%;
}

/* Timeline Section */
.timeline-section {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    color: var(--light-text);
    padding: 5rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    top: 0;
    bottom: 0;
    left: 20px;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 1rem 2rem 1rem 3rem;
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    left: 11px;
    top: 25px;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(255, 78, 80, 0.3);
}

.timeline-date {
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    backdrop-filter: blur(5px);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-bg);
    padding: 5rem 0;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial-content p::before {
    left: -10px;
    top: -10px;
}

.testimonial-content p::after {
    right: -10px;
    bottom: -30px;
}

.testimonial-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.testimonial-info h3 {
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

/* Order Section */
.order-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 5rem 0;
}

.order-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
}

.packages {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.package-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.package-card.popular {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.package-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.package-duration {
    color: #777;
    margin-bottom: 1rem;
}

.package-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.new-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.package-features {
    margin: 1.5rem 0;
    text-align: left;
    padding-left: 1rem;
}

.package-features li {
    margin-bottom: 0.8rem;
}

.package-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-order {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.order-info {
    text-align: center;
    margin-top: 2rem;
}

.payment-methods {
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-bg);
    padding: 5rem 0;
}

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

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.faq-icon {
    transition: var(--transition);
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
}

/* Footer Section */
.footer-section {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: #a5b4fc;
}

.footer-links a:hover {
    color: var(--light-text);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: center;
}

/* Media Queries */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-section .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .hero-content {
        text-align: left;
        margin-right: 2rem;
    }
    
    .problem-content,
    .story-content {
        flex-direction: row;
    }
    
    .how-content {
        flex-direction: row;
    }
    
    .testimonials {
        flex-direction: row;
    }
    
    .packages {
        flex-direction: row;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .timeline::before {
        left: 50%;
    }
    
    .timeline-item {
        padding: 1rem 3rem;
    }
    
    .timeline-item::before {
        left: 50%;
        margin-left: -10px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: auto;
        width: 45%;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: auto;
        width: 45%;
    }
}

@media (min-width: 992px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
}
