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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.golden-text {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #FFD700;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

.urgency-text {
    margin-top: 20px;
    color: #FFD700;
    font-weight: 600;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

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

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.problem-stat {
    font-size: 4rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.problem-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.problem-card p {
    color: #ccc;
    font-size: 1.1rem;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: #000;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-text {
    color: #fff;
}

.solution-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
    line-height: 1.8;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    font-size: 2rem;
    min-width: 60px;
}

.feature h4 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature p {
    color: #ccc;
    line-height: 1.6;
}

.transformation-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

/* Curriculum Section */
.curriculum-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.curriculum-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.curriculum-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.curriculum-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.curriculum-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.curriculum-card h3 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.curriculum-card p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.curriculum-card ul {
    list-style: none;
    color: #fff;
}

.curriculum-card li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.curriculum-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* Lifestyle Section */
.lifestyle-section {
    padding: 100px 0;
    background: #000;
}

.lifestyle-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.lifestyle-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.lifestyle-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lifestyle-item:hover {
    transform: scale(1.05);
}

.lifestyle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifestyle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.lifestyle-item:hover .lifestyle-overlay {
    transform: translateY(0);
}

.lifestyle-overlay h4 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.lifestyle-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.pricing-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.urgency-banner {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 60px;
    animation: pulse 2s infinite;
}

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.countdown-timer {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.pricing-card.premium {
    border-color: #FFA500;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

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

.price-current {
    color: #FFD700;
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
}

.price-note {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 5px;
}

.pricing-features h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.pricing-features ul {
    list-style: none;
    color: #ccc;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.pricing-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-button.primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.pricing-button.secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.pricing-button.premium {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    color: #000;
}

.pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.pricing-guarantee {
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 15px;
}

.pricing-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    margin-top: 60px;
    text-align: center;
}

.pricing-warning h4 {
    color: #ff6b6b;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.pricing-warning p {
    color: #ccc;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: #000;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.testimonial-content p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.author-info h4 {
    color: #FFD700;
    margin-bottom: 5px;
}

.author-info p {
    color: #ccc;
    margin-bottom: 15px;
}

.author-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.author-stats span {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 30px;
}

.cta-content p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin: 40px 0;
}

.final-urgency {
    margin-top: 40px;
}

.final-urgency p {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #ccc;
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-bottom p {
    color: #999;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .countdown-timer {
        font-size: 2rem;
    }
}


/* Payment Modal Styles */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.payment-modal-content {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    margin: 2% auto;
    padding: 0;
    border: 2px solid var(--gold-primary);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.payment-close {
    color: var(--gold-primary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 20px 25px 0 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.payment-close:hover {
    color: var(--gold-light);
}

.payment-header {
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.payment-header h2 {
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.payment-product h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.payment-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.original-price {
    color: #888;
    text-decoration: line-through;
    font-size: 1rem;
}

.discounted-price {
    color: var(--gold-primary);
    font-size: 1.5rem;
    font-weight: bold;
}

.discount-badge {
    background: var(--gold-primary);
    color: var(--black);
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.payment-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    background: rgba(45, 45, 45, 0.8);
    color: var(--white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-group small {
    color: #888;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.payment-methods h4 {
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.payment-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-option {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.payment-option.active,
.payment-option:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

.payment-details {
    margin-bottom: 25px;
}

.payment-summary {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--white);
}

.summary-line.total {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--gold-primary);
}

.payment-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-light));
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.payment-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.payment-security {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
}

.payment-security p {
    margin: 5px 0;
}

/* Responsive Payment Modal */
@media (max-width: 768px) {
    .payment-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .payment-header,
    .payment-form {
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .payment-options {
        flex-direction: column;
    }
}

