/* style.css - Main Stylesheet */
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-blue: #00f3ff;
    --neon-blue-dark: #0099cc;
    --neon-purple: #9d00ff;
    --neon-pink: #ff00ff;
    --dark-bg: #0a0e17;
    --darker-bg: #050811;
    --card-bg: rgba(16, 23, 41, 0.95);
    --text-primary: #ffffff;
    --text-secondary: #b0b8d0;
    --accent-glow: 0 0 15px var(--neon-blue), 0 0 30px rgba(0, 243, 255, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    --gradient-reverse: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    --border-radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Segoe UI', 'Roboto', system-ui, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 243, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(157, 0, 255, 0.08) 0%, transparent 40%);
}

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

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-logo {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient);
    animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Header Styles - Already in header.css */

/* Hero Section */
.hero-section {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 243, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(157, 0, 255, 0.1) 0%, transparent 50%);
    animation: floatBackground 20s ease-in-out infinite alternate;
}

@keyframes floatBackground {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-20px, 20px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.text-gradient::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    animation: underlineWidth 3s ease-in-out infinite;
}

@keyframes underlineWidth {
    0%, 100% { width: 0; left: 50%; }
    50% { width: 100%; left: 0; }
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 1;
}

.btn-hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
    z-index: -1;
}

.btn-hero-main:hover::before {
    left: 100%;
}

.btn-hero-main:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--accent-glow);
}

.btn-hero-main i {
    font-size: 1.5rem;
}

/* Investment Packages */
.investment-packages {
    padding: 100px 0;
    background: rgba(5, 8, 17, 0.5);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background: var(--gradient);
}

.section-title::before {
    right: 110%;
}

.section-title::after {
    left: 110%;
}

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

.package-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.package-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: calc(var(--border-radius) + 2px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 243, 255, 0.15);
    border-color: transparent;
}

.package-card.featured {
    border: 2px solid var(--neon-blue);
    position: relative;
}

.package-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--gradient);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.package-amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.package-card h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 600;
}

.package-card p {
    color: var(--neon-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.package-card p::before,
.package-card p::after {
    content: '★';
    color: gold;
    font-size: 1.2rem;
}

.btn-secondary, .btn-future {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 250px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 243, 255, 0.2);
    border-color: var(--neon-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 243, 255, 0.2);
}

.btn-future {
    background: var(--gradient-reverse);
    color: white;
}

.btn-future:hover {
    background: var(--gradient);
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--accent-glow);
}

/* Stats Section */
.stats-container {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 243, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.6s;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.1);
}

.stat-card h2 {
    font-size: 4rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Footer */
.main-footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

.main-footer .container {
    text-align: center;
}

.disclaimer {
    color: #ff6b6b;
    font-size: 1rem;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 12px;
    border-left: 4px solid #ff6b6b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.mobile-bottom-nav.active {
    display: flex;
}

.nav-item {
    flex: 1;
    text-align: center;
}

.nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 0;
    font-size: 0.8rem;
    transition: var(--transition);
    position: relative;
}

.nav-item a i {
    font-size: 1.4rem;
    margin-bottom: 4px;
    transition: var(--transition);
}

.nav-item.active a {
    color: var(--neon-blue);
}

.nav-item.active a i {
    transform: translateY(-3px);
}

.nav-item.active a::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient);
    border-radius: 1px;
}

.nav-item a:hover {
    color: var(--neon-blue);
}

.nav-item a:hover i {
    transform: translateY(-2px);
}

/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

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

.popup-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    color: var(--neon-blue);
    background: rgba(0, 243, 255, 0.1);
    transform: rotate(90deg);
}

.neon-icon {
    color: var(--neon-blue);
    margin-bottom: 25px;
    animation: neonPulse 2s infinite;
}

@keyframes neonPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 10px var(--neon-blue));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 20px var(--neon-blue));
        transform: scale(1.1);
    }
}

.popup-card h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.popup-card p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient);
    z-index: 1001;
    transition: width 0.1s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
}

/* Selection */
::selection {
    background: var(--neon-blue);
    color: white;
}

/* Focus States */
:focus {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 60vh;
        padding: 120px 0 60px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    .hero-section {
        padding: 100px 0 40px;
        min-height: 50vh;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-hero-main {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .section-title::before,
    .section-title::after {
        width: 50px;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .package-card.featured::after {
        right: -30px;
        padding: 5px 30px;
        font-size: 0.7rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-card h2 {
        font-size: 3rem;
    }
    
    .popup-card {
        padding: 40px 20px;
    }
    
    .popup-card h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-main {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .package-amount {
        font-size: 3rem;
    }
    
    .package-card p {
        font-size: 1.8rem;
    }
    
    .btn-secondary, .btn-future {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .mobile-bottom-nav {
        padding: 10px 0;
    }
    
    .nav-item a span {
        font-size: 0.7rem;
    }
    
    .nav-item a i {
        font-size: 1.2rem;
    }
    
    .disclaimer {
        font-size: 0.9rem;
        padding: 15px;
    }
}

@media (max-width: 375px) {
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .package-card {
        padding: 30px 20px;
    }
    
    .package-amount {
        font-size: 2.5rem;
    }
    
    .stat-card {
        padding: 30px 15px;
    }
    
    .stat-card h2 {
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .mobile-bottom-nav,
    .popup-overlay,
    .scroll-progress {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #b0b8d0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --neon-blue: #00ffff;
        --neon-purple: #ff00ff;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
    }
}