/* assets/css/style.css */
:root {
    --bg-dark: #0b0f1a;
    --bg-darker: #060910;
    --accent-purple: #8a2be2;
    --accent-blue: #00d2ff;
    --accent-pink: #ff007f;
    --text-light: #ffffff;
    --text-muted: #a0aabf;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h2 span, h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 30px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 2rem;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--accent-purple);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-pink);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.5);
}

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
}

.btn-gradient:hover {
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--accent-blue);
    background: transparent;
    color: var(--accent-blue);
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Glassmorphism */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Header */
.brand-logo {
    height: 20px;
    width: auto;
    transition: var(--transition);
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(6, 9, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.5rem;
    margin: 0;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav a:hover {
    color: var(--accent-blue);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-weight: 600;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?q=80&w=2071&auto=format&fit=crop') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0b0f1ab3 40%, rgba(11, 15, 26, 0.6) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.trust-badge {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-features span {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features i {
    color: var(--accent-blue);
}

.hero-form-wrapper {
    flex: 0 0 450px;
    padding: 40px;
    background: rgba(11, 15, 26, 0.8);
}

.hero-form-wrapper h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.hero-form-wrapper p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.1);
}

.form-group select option {
    background: var(--bg-darker);
    color: white;
}

/* Stats */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    display: inline-block;
    color: var(--accent-blue);
}

.stat-item span {
    font-size: 3rem;
    color: var(--accent-blue);
    font-weight: 700;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Title */
.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Invest */
.card-icon {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 20px;
}

.why-invest h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.why-invest p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Business Model */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}
.align-items-center {
    align-items: center;
}

.feature-list li {
    margin-bottom: 20px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-list i {
    color: var(--accent-pink);
    font-size: 1.5rem;
    margin-top: 5px;
}

.feature-list strong {
    color: white;
}

.model-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.img-box {
    height: 200px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.img-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.img-box h4 {
    position: relative;
    z-index: 2;
    margin: 0;
}

.img-1 { background-image: url('https://images.unsplash.com/photo-1552820728-8b83bb6b773f?auto=format&fit=crop&q=80'); }
.img-2 { background-image: url('../images/bowling.png'); }
.img-3 { background-image: url('https://images.unsplash.com/photo-1593508512255-86ab42a8e620?auto=format&fit=crop&q=80'); }
.img-4 { background-image: url('../images/parties.png'); }

/* ROI */
.roi-card h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.roi-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.roi-list li span:first-child {
    color: var(--text-muted);
}

.roi-list li span:last-child {
    font-weight: 600;
}

.accent-card {
    border-color: var(--accent-purple);
    box-shadow: inset 0 0 20px rgba(138, 43, 226, 0.1);
}

.chart-mockup {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 150px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.chart-bar .fill {
    width: 40px;
    background: var(--gradient-primary);
    border-radius: 5px 5px 0 0;
}

.fill-1 { height: 40px; }
.fill-2 { height: 80px; }
.fill-3 { height: 120px; }

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 2px;
    height: 100%;
    background: var(--glass-border);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-icon {
    position: absolute;
    top: 30px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -20px;
}

.timeline-content h3 {
    margin-bottom: 10px;
}

/* Process */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: dashed 2px var(--glass-border);
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    min-width: 150px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    color: var(--accent-blue);
}

.step h4 { margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: var(--text-muted); }

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    padding: 20px;
    cursor: pointer;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-body {
    display: none;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.faq-item.active .faq-body {
    display: block;
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

/* Final CTA */
.final-cta {
    position: relative;
    background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&q=80') center/cover fixed;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 15, 26, 0.85);
}

/* Footer */
.footer {
    background: #000;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.brand-col h2 { margin-bottom: 20px; font-size: 1.5rem; }
.brand-col p { color: var(--text-muted); margin-bottom: 20px; }

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: var(--glass-bg);
    border-radius: 50%;
    margin-right: 10px;
}

.social-links a:hover {
    background: var(--accent-purple);
    transform: translateY(-3px);
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--accent-blue);
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); }
.footer-col ul li a:hover { color: white; padding-left: 5px; }

.contact-col p {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    gap: 15px;
}

.contact-col i { color: var(--accent-blue); margin-top: 5px; }

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    margin-left: 20px;
}

.footer-links a:hover { color: white; }

/* Sticky Whatsapp */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px; height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    color: white;
}

/* Loader */
.loader {
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top: 3px solid white;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
    text-align: center;
}

.form-message.success {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid #25D366;
    color: #25D366;
    display: block;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff0000;
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .model-image-grid {
        margin-top: 40px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(odd) { left: 0; }
    .timeline-item:nth-child(even) { left: 0; }
    
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 10px;
    }
    
    .process-steps::before { display: none; }
}

@media (max-width: 768px) {
    .brand-logo {
        height: 15px !important;
    }
    
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    
    .header-container .nav, .header-cta .phone-link {
        display: none;
    }
    
    .hero-content h1 { font-size: 2.5rem; }
    
    .hero-form-wrapper { width: 100%; flex: 1; padding: 25px; }
    
    .footer-grid { grid-template-columns: 1fr; }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
