/* --- SYSTEM VARIABLES --- */
:root {
    --bg: #ffffff;
    --accent: #48cae4;
    --accent-dark: #0096c7;
    --accent-soft: #e0f7fa;
    --accent-hover: #90e0ef;
    --text-dark: #0f172a;    
    --text-light: #475569;   
    --text-muted: #94a3b8;
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --shadow-sm: 0 4px 12px rgba(72, 202, 228, 0.04);
    --shadow-md: 0 15px 35px -10px rgba(72, 202, 228, 0.15);
    --shadow-lg: 0 30px 60px -15px rgba(72, 202, 228, 0.25);
}

/* --- GLOBAL RESET & SCROLLBAR --- */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: var(--bg); color: var(--text-dark); overflow-x: hidden; line-height: 1.6; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: var(--accent-soft); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

#scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-dark)); z-index: 10002; transition: width 0.1s ease; }

.ambient-decor { position: absolute; width: 500px; height: 500px; border-radius: 50%; filter: blur(120px); z-index: -2; opacity: 0.15; pointer-events: none; animation: floatBlob 15s infinite alternate ease-in-out; }
.blob-1 { background: var(--accent); top: -100px; right: -100px; }
.blob-2 { background: var(--accent-hover); top: 800px; left: -200px; animation-delay: -5s; }
@keyframes floatBlob { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(60px, 40px) scale(1.15); } }

/* --- NAVBAR --- */
nav { position: fixed; top: 0; width: 100%; padding: 18px 0; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); z-index: 1000; border-bottom: 1px solid rgba(72, 202, 228, 0.12); display: flex; justify-content: center; transition: all 0.4s ease; }
nav.scrolled { padding: 12px 0; background: rgba(255, 255, 255, 0.95); box-shadow: var(--shadow-sm); }
.nav-container { width: 90%; max-width: 1300px; display: flex; justify-content: space-between; align-items: center; }
.logo-wrapper { display: flex; align-items: center; gap: 12px; transition: transform 0.3s ease; }
.logo-wrapper:hover { transform: scale(1.02); }
.nav-logo { height: 46px; width: auto; border-radius: 50%; border: 2px solid var(--accent-soft); }
.logo-text { font-weight: 800; font-size: 1.3rem; letter-spacing: -0.8px; color: var(--text-dark); }
.logo-text span { color: var(--accent-dark); }
.nav-links { display: flex; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 700; font-size: 1rem; margin-left: 35px; position: relative; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; width: 0%; height: 2px; bottom: -6px; left: 0; background: var(--accent); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--accent-dark); }
.nav-links a:hover::after { width: 100%; }
.btn-discord { background: var(--accent-soft); color: var(--accent-dark) !important; padding: 12px 26px; border-radius: 16px; font-weight: 800; transition: all 0.3s ease !important; }
.btn-discord::after { display: none; }
.btn-discord:hover { background: var(--accent-dark) !important; color: white !important; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 150, 199, 0.25); }

/* --- HERO SECTION --- */
.hero { padding: 220px 10% 120px; text-align: center; min-height: 90vh; display: flex; justify-content: center; align-items: center; position: relative; }
.hero-content { display: flex; flex-direction: column; align-items: center; max-width: 800px; }
.hero-logo-container { width: 100px; height: 100px; margin-bottom: 25px; background: white; padding: 5px; border-radius: 50%; box-shadow: var(--shadow-md); overflow: hidden; display: flex; justify-content: center; align-items: center; transition: transform 0.5s ease; }
.hero-logo-container:hover { transform: scale(1.1) rotate(5deg); }
.hero-main-logo { width: 100%; height: 100%; object-fit: cover; }
.badge-cyan { background: rgba(224, 247, 250, 0.6); border: 1px solid rgba(72, 202, 228, 0.25); color: var(--accent-dark); padding: 8px 18px; border-radius: 100px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 25px; display: inline-block; letter-spacing: 0.5px; }
.hero h1 { font-size: clamp(2.8rem, 6.5vw, 4.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -2.5px; margin-bottom: 25px; color: var(--text-dark); }
.hero h1 span { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: var(--text-light); max-width: 580px; margin: 0 auto 45px; font-size: 1.15rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.btn-primary { background: linear-gradient(135deg, #48cae4, #0096c7) !important; color: #ffffff !important; padding: 16px 38px; border-radius: var(--radius-sm); text-decoration: none; font-weight: 800; transition: all 0.3s ease; box-shadow: 0 8px 25px rgba(72, 202, 228, 0.4); border: none; display: inline-block; }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0, 150, 199, 0.5); }
.btn-outline { border: 2px solid #0096c7 !important; color: #0096c7 !important; padding: 14px 38px; border-radius: var(--radius-sm); text-decoration: none; font-weight: 800; transition: all 0.3s ease; background: transparent; display: inline-block; }
.btn-outline:hover { background: #e0f7fa !important; transform: translateY(-2px); }

/* --- SECTION SPACING & CATALOG --- */
.section-spacing { padding: 90px 8%; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; flex-wrap: wrap; gap: 25px; }
.title-group .sub-title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 800; color: var(--accent-dark); margin-bottom: 8px; display: block; }
.section-header h2 { font-size: 2.6rem; font-weight: 800; letter-spacing: -1.5px; }
.filter-container { display: flex; gap: 10px; background: #f1f5f9; padding: 6px; border-radius: 100px; flex-wrap: wrap;}
.filter-btn { border: none; background: transparent; padding: 10px 24px; border-radius: 100px; cursor: pointer; font-weight: 700; color: var(--text-light); transition: all 0.3s ease; }
.filter-btn:hover { color: var(--text-dark); }
.filter-btn.active { background: white; color: var(--accent-dark); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }

/* --- LIVE DISCORD STATUS --- */
.discord-status { display: flex; align-items: center; gap: 8px; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); padding: 8px 16px; border-radius: 100px; font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-left: 20px; }
.status-dot { width: 10px; height: 10px; background: #10b981; border-radius: 50%; box-shadow: 0 0 8px #10b981; animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }
@media (max-width: 768px) { .discord-status { display: none; } }

/* --- CARDS GRID --- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 45px; }
.card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(72, 202, 228, 0.12); transition: all 0.4s ease; box-shadow: var(--shadow-sm); }
.card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: rgba(72, 202, 228, 0.3); }
.card-img-container { position: relative; height: 500px; background: #f8fafc; overflow: hidden; }
.card-badge { position: absolute; top: 20px; left: 20px; background: rgba(15, 23, 42, 0.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: white; padding: 6px 14px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; z-index: 4; }
.image-slider { display: flex; width: 100%; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.image-slider::-webkit-scrollbar { display: none; }
.image-slider img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; scroll-snap-align: start; cursor: zoom-in; transition: transform 0.6s ease; }
.card:hover .image-slider img { transform: scale(1.02); }

.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.9); border: none; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; z-index: 5; color: var(--accent-dark); opacity: 0; transition: all 0.3s ease; display: flex; justify-content: center; align-items: center; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.card-img-container:hover .slider-btn { opacity: 1; }
.slider-btn:hover { background: white; color: var(--accent); transform: translateY(-50%) scale(1.08); }
.slider-btn.prev { left: 15px; }
.slider-btn.next { right: 15px; }

.card-body { padding: 35px; }
.card-category { font-size: 0.75rem; font-weight: 800; color: var(--accent-dark); text-transform: uppercase; margin-bottom: 12px; letter-spacing: 0.5px; }
.card-body h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.card-body p { color: var(--text-light); font-size: 1rem; margin-bottom: 30px; line-height: 1.5; }
.btn-card { display: block; text-align: center; background: #f8fafc; color: var(--text-dark); text-decoration: none; padding: 15px; border-radius: var(--radius-sm); font-weight: 800; transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.03); }
.btn-card:hover { background: var(--accent); color: white; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(72, 202, 228, 0.25); }

/* --- LIGHTBOX (ZOOM GALLERY) --- */
.lightbox { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(10, 15, 30, 0.96); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); align-items: center; justify-content: center; touch-action: none; }
.lightbox-content { width: 90%; height: 80vh; display: flex; align-items: center; justify-content: center; position: relative; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: var(--radius-md); object-fit: contain; transition: opacity 0.2s ease, transform 0.3s ease; box-shadow: var(--shadow-lg); }
.close-lightbox { position: absolute; top: 30px; right: 40px; color: rgba(255, 255, 255, 0.7); font-size: 45px; cursor: pointer; z-index: 10001; transition: all 0.3s; }
.close-lightbox:hover { color: white; transform: rotate(90deg); }
.lbox-control { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.1); border: none; color: white; width: 56px; height: 56px; border-radius: 50%; cursor: pointer; font-size: 20px; transition: all 0.3s ease; z-index: 10001; display: flex; justify-content: center; align-items: center; }
.lbox-control:hover { background: var(--accent); transform: translateY(-50%) scale(1.08); }
.lbox-prev { left: 40px; }
.lbox-next { right: 40px; }
.lightbox-counter { position: absolute; bottom: 40px; color: rgba(255,255,255,0.8); font-weight: 700; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(8px); padding: 8px 24px; border-radius: 100px; font-size: 0.9rem; letter-spacing: 0.5px; }

/* --- HOW TO ORDER (FAQ ACCORDION) --- */
.center-header { flex-direction: column; align-items: center; text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-desc { color: var(--text-light); font-size: 1.05rem; margin-top: 15px; line-height: 1.6; }
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: white; border: 1px solid rgba(72, 202, 228, 0.15); border-radius: var(--radius-sm); overflow: hidden; transition: all 0.3s ease; box-shadow: var(--shadow-sm); }
.faq-item.active { border-color: var(--accent); box-shadow: var(--shadow-md); }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 25px; background: transparent; border: none; cursor: pointer; text-align: left; color: var(--text-dark); transition: all 0.3s ease; }
.faq-btn:hover { background: rgba(224, 247, 250, 0.3); }
.faq-item.active .faq-btn { background: var(--accent-soft); color: var(--accent-dark); }
.faq-title { font-weight: 800; font-size: 1.1rem; letter-spacing: -0.3px; }
.faq-btn i { font-size: 1.2rem; color: var(--accent); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.faq-item.active .faq-btn i { transform: rotate(45deg); color: var(--accent-dark); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease; background: white; }
.faq-content p, .faq-content ul { color: var(--text-light); line-height: 1.7; margin-bottom: 10px; list-style-position: inside;}
.faq-content strong { color: var(--accent-dark); }

/* --- TESTIMONIALS --- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
.testi-card { background: #ffffff; padding: 35px; border-radius: var(--radius-md); border: 1px solid rgba(72, 202, 228, 0.15); box-shadow: var(--shadow-sm); transition: all 0.3s ease; }
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(72, 202, 228, 0.3); }
.testi-header { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.testi-avatar { width: 55px; height: 55px; background: var(--accent-soft); color: var(--accent-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.4rem; }
.testi-info h4 { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 5px; letter-spacing: -0.3px; }
.testi-stars { color: #f59e0b; font-size: 0.85rem; display: flex; gap: 3px; }
.testi-text { color: var(--text-light); font-style: italic; line-height: 1.7; font-size: 1.05rem; }

/* --- FOOTER --- */
footer { padding: 80px 10% 60px; text-align: center; background: #f8fafc; border-top: 1px solid rgba(72, 202, 228, 0.1); }
.footer-logo { font-weight: 800; font-size: 1.5rem; margin-bottom: 12px; }
.footer-logo span { color: var(--accent-dark); }
.footer-tagline { color: var(--text-light); font-size: 1rem; margin-bottom: 25px; }
.footer-socials { display: flex; justify-content: center; gap: 15px; margin-bottom: 35px; }
.footer-socials a { width: 44px; height: 44px; border-radius: 50%; background: white; display: flex; justify-content: center; align-items: center; color: var(--text-dark); text-decoration: none; font-size: 1.1rem; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.footer-socials a:hover { background: var(--accent); color: white; transform: translateY(-3px); }
.copyright { color: var(--text-muted); font-size: 0.85rem; }

/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 992px) { .section-header { flex-direction: column; align-items: flex-start; } }
@media (max-width: 768px) {
    .nav-container { width: 92%; }
    nav { padding: 14px 0; }
    .nav-logo { height: 38px; }
    .logo-text { font-size: 1.1rem; }
    .nav-links a:not(.btn-discord) { display: none; }
    .hero { padding-top: 180px; }
    .hero h1 { font-size: 2.6rem; }
    .slider-btn { opacity: 1; width: 38px; height: 38px; }
    .lbox-control { width: 48px; height: 48px; }
    .lbox-prev { left: 15px; }
    .lbox-next { right: 15px; }
}