/* ==========================================================================
   ANANJAY CLOUD - STREAMLINED FUTURISTIC STYLES
   ========================================================================== */

:root {
    --bg-dark: #030712;
    --bg-darker: #02040a;
    --bg-card: rgba(15, 23, 42, 0.55);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 242, 254, 0.3);
    
    --neon-cyan: #00f2fe;
    --electric-blue: #4facfe;
    --purple-accent: #8a2be2;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

body {
    position: relative;
    line-height: 1.6;
    background: radial-gradient(circle at 50% 0%, #081026 0%, #030712 100%);
    min-height: 100vh;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-darker); }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-cyan); }

::selection { background: var(--neon-cyan); color: var(--bg-darker); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; position: relative; z-index: 2; }
.bg-darker { background-color: rgba(2, 4, 10, 0.7); }
.border-y { border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.text-center { text-align: center; }

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--neon-cyan) 50%, var(--electric-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.1);
}

#particle-canvas {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}

.grid-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1; pointer-events: none;
}

#cursor-glow {
    position: fixed;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none; z-index: 1;
    transform: translate(-50%, -50%);
}

#scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--purple-accent));
    z-index: 9999;
}

/* NAVBAR & LOGO IMAGE OPTION */
.navbar-wrapper {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1.25rem 0;
    transition: padding var(--transition-fast), background var(--transition-fast);
}

.navbar-wrapper.scrolled {
    padding: 0.75rem 0;
    background: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.navbar { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: #fff; font-weight: 800; font-size: 1.25rem; }

/* Custom Hosting Logo Image Styling */
.logo-img {
    height: 38px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.4));
}

.logo-icon-fallback {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--purple-accent));
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.logo-icon-fallback .cube-face { width: 16px; height: 16px; border: 2px solid #fff; transform: rotate(45deg); }

.accent-text { color: var(--neon-cyan); }

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-link { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color var(--transition-fast); }
.nav-link:hover, .nav-link.active { color: #fff; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 24px; height: 2px; background: #fff; }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.65rem 1.4rem; border-radius: 12px; font-size: 0.9rem; font-weight: 600;
    text-decoration: none; cursor: pointer; transition: all var(--transition-fast); border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue)); color: #02040a; font-weight: 700; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 20px rgba(0, 242, 254, 0.4); }
.btn-secondary { background: rgba(255, 255, 255, 0.05); border-color: var(--border-color); color: #fff; }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--border-glow); }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: #fff; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.8rem; border-radius: 8px; }
.btn-block { width: 100%; }

/* HERO */
.hero-section { padding-top: 10rem; padding-bottom: 5rem; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.status-badge { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.4rem 1rem; background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.25); border-radius: 50px; font-size: 0.75rem; font-family: var(--font-mono); color: #10b981; margin-bottom: 1.5rem; }
.status-dot { width: 8px; height: 8px; background-color: #10b981; border-radius: 50%; box-shadow: 0 0 8px #10b981; }
.hero-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 2rem; }
.badge-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; }
.check-icon { color: var(--neon-cyan); font-weight: bold; }
.hero-cta { display: flex; gap: 1rem; margin-bottom: 2.5rem; }
.btn-arrow { width: 18px; height: 18px; }

.hero-stats-mini { display: flex; align-items: center; gap: 1.5rem; padding-top: 2rem; border-top: 1px solid var(--border-color); }
.stat-mini-value { display: block; font-family: var(--font-mono); font-size: 1.25rem; font-weight: 700; color: var(--neon-cyan); }
.stat-mini-label { font-size: 0.75rem; color: var(--text-dim); }
.stat-mini-divider { width: 1px; height: 30px; background: var(--border-color); }

/* HERO 3D GRAPHIC */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.server-stage { width: 340px; height: 380px; position: relative; display: flex; align-items: center; justify-content: center; perspective: 1000px; }
.cube-3d-wrapper { width: 180px; height: 240px; transform-style: preserve-3d; animation: rotate-server 12s infinite linear; }

@keyframes rotate-server {
    0% { transform: rotateY(0deg) rotateX(10deg); }
    100% { transform: rotateY(360deg) rotateX(10deg); }
}

.cube-3d { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; }
.cube-3d .face { position: absolute; background: rgba(15, 23, 42, 0.9); border: 1px solid var(--neon-cyan); }
.cube-3d .face.front  { width: 180px; height: 240px; transform: translateZ(90px); }
.cube-3d .face.back   { width: 180px; height: 240px; transform: rotateY(180deg) translateZ(90px); }
.cube-3d .face.right  { width: 180px; height: 240px; transform: rotateY(90deg) translateZ(90px); }
.cube-3d .face.left   { width: 180px; height: 240px; transform: rotateY(-90deg) translateZ(90px); }
.cube-3d .face.top    { width: 180px; height: 180px; transform: rotateX(90deg) translateZ(90px); }
.cube-3d .face.bottom { width: 180px; height: 180px; transform: rotateX(-90deg) translateZ(150px); }

.server-rack { padding: 1.2rem; display: flex; flex-direction: column; gap: 0.8rem; height: 100%; justify-content: center; }
.rack-unit { background: #090d16; border: 1px solid rgba(255,255,255,0.1); padding: 0.5rem; border-radius: 6px; display: flex; align-items: center; gap: 0.5rem; }
.led { width: 8px; height: 8px; border-radius: 50%; }
.led.green { background: #10b981; } .led.blue { background: var(--neon-cyan); } .led.purple { background: var(--purple-accent); }
.led.flashing { animation: flash 1s infinite alternate; }
@keyframes flash { 0% { opacity: 0.2; } 100% { opacity: 1; } }
.bar { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; position: relative; }
.bar::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 60%; background: var(--neon-cyan); }

.floating-badge { position: absolute; padding: 0.6rem 1rem; display: flex; align-items: center; gap: 0.75rem; border-radius: 12px; z-index: 10; }
.fb-1 { top: 10%; right: -10px; } .fb-2 { bottom: 15%; left: -20px; } .fb-3 { bottom: -10px; right: 10px; }
.badge-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); }
.fb-title { font-weight: 700; font-size: 0.8rem; color: #fff; }
.fb-sub { font-size: 0.7rem; color: var(--text-dim); }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-card { padding: 2rem 1.5rem; }
.feature-icon-wrapper { width: 44px; height: 44px; background: rgba(0, 242, 254, 0.08); border: 1px solid rgba(0, 242, 254, 0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.25rem; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* LOCATIONS */
.locations-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.location-card { padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; }
.loc-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.loc-flag { font-size: 2rem; }
.loc-header h3 { font-size: 1.15rem; font-weight: 700; }
.loc-sub { font-size: 0.75rem; color: var(--text-dim); }
.loc-features { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.loc-features li { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; }
.loc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border-color); }
.status-tag { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700; color: #10b981; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.pricing-grid.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.pricing-card { padding: 2rem 1.5rem; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.pricing-card.featured { border-color: var(--neon-cyan); background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(0, 242, 254, 0.05) 100%); }
.popular-ribbon { position: absolute; top: 15px; right: -30px; background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue)); color: #02040a; font-size: 0.6rem; font-weight: 800; padding: 0.25rem 2.2rem; transform: rotate(45deg); }

.plan-header { margin-bottom: 1.5rem; }
.plan-badge { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700; color: var(--text-dim); margin-bottom: 0.4rem; display: block; }
.plan-badge.accent { color: var(--neon-cyan); }
.plan-badge.purple { color: var(--purple-accent); }
.plan-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; }
.plan-price { display: flex; align-items: baseline; gap: 0.2rem; }
.plan-price .currency { font-size: 1.1rem; font-weight: 700; color: var(--neon-cyan); }
.plan-price .amount { font-size: 2.5rem; font-weight: 800; font-family: var(--font-mono); }
.plan-price .period { color: var(--text-dim); font-size: 0.85rem; }

.plan-features { list-style: none; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
.plan-features li { font-size: 0.875rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; }
.plan-features .check { color: var(--neon-cyan); font-weight: bold; }

/* TABS */
.tab-switcher-wrapper { display: flex; justify-content: center; margin-bottom: 2.5rem; }
.tab-switcher { display: inline-flex; padding: 0.35rem; border-radius: 50px; gap: 0.5rem; }
.tab-btn { padding: 0.6rem 1.5rem; border-radius: 50px; border: none; background: transparent; color: var(--text-muted); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all var(--transition-fast); }
.tab-btn.active { background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue)); color: #02040a; font-weight: 700; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* DIRECT PANEL REDIRECT SECTION */
.panel-redirect-card { padding: 4rem 2rem; max-width: 850px; margin: 0 auto; }
.panel-icon-badge { font-size: 3rem; margin-bottom: 1rem; }
.panel-url-box {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(0, 242, 254, 0.05);
    border: 1px dashed var(--neon-cyan);
    border-radius: 12px;
    margin-bottom: 2rem;
}
.url-text {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    color: var(--neon-cyan);
    font-weight: 700;
    letter-spacing: 1px;
}

/* STATS */
.stats-counter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; text-align: center; }
.stat-number { font-family: var(--font-mono); font-size: 3rem; font-weight: 800; color: #fff; }
.stat-plus { font-size: 2rem; color: var(--neon-cyan); display: inline-block; }
.stat-title { color: var(--text-muted); font-size: 0.85rem; }

/* TESTIMONIALS SLIDER */
.testimonials-wrapper { max-width: 800px; margin: 0 auto; position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease-in-out; }
.testimonial-card { min-width: 100%; padding: 2.5rem; box-sizing: border-box; display: flex; flex-direction: column; gap: 1.25rem; }
.stars { font-size: 1rem; }
.review-text { font-size: 1.1rem; line-height: 1.6; color: #f1f5f9; font-style: italic; }
.reviewer-info { display: flex; align-items: center; gap: 0.85rem; }
.reviewer-avatar { width: 42px; height: 42px; background: linear-gradient(135deg, var(--neon-cyan), var(--purple-accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #000; font-size: 0.85rem; }
.reviewer-name { font-weight: 700; font-size: 0.95rem; }
.reviewer-role { font-size: 0.75rem; color: var(--text-dim); }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 1.5rem; }
.slider-btn { background: rgba(255,255,255,0.05); border: 1px solid var(--border-color); color: #fff; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; }
.slider-dots { display: flex; gap: 6px; }
.s-dot { width: 8px; height: 8px; background: rgba(255,255,255,0.2); border-radius: 50%; cursor: pointer; }
.s-dot.active { background: var(--neon-cyan); width: 20px; border-radius: 8px; }

/* FAQ ACCORDION */
.faq-accordion { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-header { width: 100%; padding: 1.25rem 1.5rem; background: transparent; border: none; color: #fff; font-size: 1rem; font-weight: 700; text-align: left; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-icon { font-size: 1.25rem; color: var(--neon-cyan); transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 1.5rem; }
.faq-item.active .faq-body { max-height: 150px; padding: 0 1.5rem 1.25rem 1.5rem; }
.faq-body p { color: var(--text-muted); font-size: 0.9rem; }

/* DISCORD CTA CARD */
.discord-cta-card { padding: 4rem 2rem; max-width: 850px; margin: 0 auto; }
.discord-icon-large { font-size: 3.5rem; margin-bottom: 1rem; }

/* FOOTER */
.footer { background: #010308; border-top: 1px solid var(--border-color); padding: 2.5rem 0; position: relative; z-index: 2; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; color: var(--text-dim); }

#back-to-top { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(10px); border: 1px solid var(--border-glow); color: var(--neon-cyan); font-size: 1.1rem; border-radius: 50%; cursor: pointer; opacity: 0; visibility: hidden; transition: all var(--transition-fast); z-index: 999; }
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { background: var(--neon-cyan); color: #000; box-shadow: 0 0 15px var(--neon-cyan); }

.reveal-up { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0); }

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-badges { justify-content: center; }
    .hero-stats-mini { justify-content: center; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 2.5rem; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 80%; height: 100vh; background: #030712; flex-direction: column; justify-content: center; padding: 2rem; transition: right 0.4s ease; z-index: 1000; }
    .nav-links.active { right: 0; }
    .mobile-toggle { display: flex; z-index: 1001; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}