/* ============================================
   CSS Variables & Reset
   ============================================ */

:root {
    --royal-blue: #1e3a8a;
    --royal-blue-light: #3b82f6;
    --royal-blue-dark: #1e40af;
    --gold: #fbbf24;
    --gold-light: #fcd34d;
    --gold-dark: #f59e0b;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f3f4f6;
    --gray: #6b7280;
    --gray-dark: #374151;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--royal-blue-dark);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--royal-blue-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    color: var(--royal-blue);
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--royal-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--royal-blue);
    transition: 0.3s;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--royal-blue);
    border: 2px solid var(--royal-blue);
}

.btn-secondary:hover {
    background: var(--royal-blue);
    color: var(--white);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 2rem;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    color: var(--white);
    padding: 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-placeholder {
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    backdrop-filter: blur(10px);
}

/* ============================================
   About Section
   ============================================ */

.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--shadow);
}

.about-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.about-item h3 {
    margin-bottom: 0.5rem;
    color: var(--royal-blue-dark);
}

.about-item p {
    color: var(--gray);
    line-height: 1.7;
}

.mission-box {
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.mission-box h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.mission-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--white);
    font-weight: 500;
}

/* ============================================
   Trading Proof Section
   ============================================ */

.proof {
    padding: 80px 0;
    background: var(--gray-light);
}

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

.proof-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.proof-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-lg);
}

.proof-item-large {
    grid-column: span 2;
}

.proof-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--royal-blue-light), var(--royal-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

.equity-curve {
    height: 300px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.proof-caption {
    padding: 1.5rem;
    color: var(--gray-dark);
    text-align: center;
    font-weight: 500;
}

.disclaimer {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
}

.testimonial-image-placeholder {
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, var(--royal-blue-light), var(--royal-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 500;
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--royal-blue);
    font-weight: 600;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.carousel-btn {
    background: var(--royal-blue);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--royal-blue-dark);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--royal-blue);
    transform: scale(1.3);
}

/* ============================================
   What You'll Learn Section
   ============================================ */

.learn {
    padding: 80px 0;
    background: var(--white);
}

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

.learn-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--gold);
}

.learn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-lg);
}

.learn-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.learn-card h3 {
    color: var(--royal-blue-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.learn-card p {
    color: var(--gray);
    line-height: 1.7;
}

.learn-card p strong {
    color: var(--royal-blue);
    font-weight: 600;
}

/* ============================================
   Program Section
   ============================================ */

.program {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    color: var(--white);
}

.program .section-title,
.program .section-subtitle {
    color: var(--white);
}

.program-card {
    background: var(--white);
    color: var(--gray-dark);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.program-info-box {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--royal-blue-dark);
    font-weight: 600;
}

.referral-bonus {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
    border: 2px dashed var(--gold);
}

.referral-bonus h4 {
    color: var(--royal-blue-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.referral-bonus p {
    color: var(--gray-dark);
    margin: 0;
}

.program-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-light);
}

.program-header h3 {
    font-size: 2rem;
    color: var(--royal-blue-dark);
    margin-bottom: 1rem;
}

.program-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-dark);
    font-family: 'Poppins', sans-serif;
}

.price-period {
    color: var(--gray);
    font-size: 1rem;
}

.program-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--gray-light);
    border-radius: 8px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    color: var(--gold-dark);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.payment-instruction {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 12px;
    border: 2px solid var(--gold);
}

.payment-instruction h4 {
    color: var(--royal-blue-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.payment-details p {
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.upi-id {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--royal-blue);
    font-family: 'Courier New', monospace;
}

.payment-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

.payment-terms {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--gray-dark);
    font-size: 0.95rem;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq {
    padding: 80px 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--gray-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

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

.faq-question:hover {
    background: rgba(30, 58, 138, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--royal-blue-dark);
    margin: 0;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--royal-blue);
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    margin-top: 0.5rem;
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    padding: 80px 0;
    background: var(--gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--royal-blue-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-blue);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 3px 10px var(--shadow);
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--royal-blue-dark);
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--royal-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--royal-blue-dark);
    text-decoration: underline;
}

.whatsapp-link {
    color: #25d366 !important;
}

.book-call-link {
    color: var(--gold-dark) !important;
}

.twitter-link {
    color: var(--royal-blue) !important;
    text-decoration: underline;
    font-weight: 600;
}

.twitter-link:hover {
    color: var(--royal-blue-dark) !important;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
    font-style: italic;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--royal-blue-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--gold-light);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .photo-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .proof-item-large {
        grid-column: span 1;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-image-placeholder {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .about-item {
        flex-direction: column;
        text-align: center;
    }
    
    .program-card {
        padding: 2rem 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .photo-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .program-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

