/* ==========================================================================
   1. DESIGN SYSTEM & RESET
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@600;700;800&display=swap');

:root {
    --bg-main: #0a0516; /* Deeper purple-black for a neon-rich vibe */
    --bg-secondary: #120b24; /* Rich dark purple background for section blocks */
    --primary-gradient: linear-gradient(135deg, #8b5cf6, #facc15); /* Purple to Yellow gradient */
    --accent-gradient-glow: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(250, 204, 21, 0.15));
    --purple: #8b5cf6; /* Vibrant Purple */
    --cyan: #facc15; /* Replaced neon cyan with brilliant Yellow */
    --pink: #f43f5e; /* Coral rose accent */
    --soft-blue: #c084fc; /* Lavender accent */
    --glass-card: rgba(255, 255, 255, 0.03);
    --glass-card-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(250, 204, 21, 0.3); /* Dynamic yellow border hover */
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --neon-glow: 0 0 20px rgba(250, 204, 21, 0.25), 0 0 40px rgba(139, 92, 246, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Glowing Blobs */
body::before, body::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: -10;
    filter: blur(150px);
    opacity: 0.12;
    pointer-events: none;
}

body::before {
    background: var(--purple);
    top: 5%;
    left: -10%;
}

body::after {
    background: var(--cyan); /* Brilliant Yellow */
    bottom: 10%;
    right: -10%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: var(--text-secondary);
}

/* ==========================================================================
   2. GLASSMORPHISM UTILITIES
   ========================================================================== */
.glass-panel {
    background: var(--glass-card);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.glass-card {
    background: var(--glass-card);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    background: var(--glass-card-hover);
    box-shadow: var(--neon-glow);
}

/* Gradient text */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #071018; /* Dark text for high yellow contrast */
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(250, 204, 21, 0.5);
    transform: translateY(-3px);
}

/* Section Spacing & Shells */
section {
    padding: 8rem 2rem 4rem 2rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Badge overlay style */
.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(250, 204, 21, 0.1);
    color: var(--cyan); /* Yellow color */
    border: 1px solid rgba(250, 204, 21, 0.3);
    margin-bottom: 1rem;
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
.header-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 5, 22, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.header-navigation.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 5, 22, 0.95);
    border-bottom-color: rgba(250, 204, 21, 0.2);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hamburger active transformation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   4. HOME PAGE SPECIFICS
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 12rem 2rem 8rem 2rem;
    display: flex;
    align-items: center;
    min-height: 100vh;
    background-image: radial-gradient(circle at 75% 30%, rgba(250, 204, 21, 0.08) 0%, transparent 50%), radial-gradient(circle at 15% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

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

.hero-content h1 {
    font-size: 4rem;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Glass Floating Graphic */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-blur-ring {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: var(--primary-gradient);
    filter: blur(60px);
    opacity: 0.25;
    animation: floatRing 8s infinite ease-in-out alternate;
}

.hero-glass-box {
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 2;
    animation: floatBox 6s infinite ease-in-out;
}

.hero-floating-card {
    position: absolute;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.fc-1 {
    top: -30px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: floatBox 5s infinite ease-in-out alternate;
}

.fc-2 {
    bottom: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: floatBox 7s infinite ease-in-out alternate 1s;
}

/* Counters section */
.stats-section {
    padding: 2rem 2rem 6rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Feature Grid Home */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(250, 204, 21, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(250, 204, 21, 0.2);
    color: var(--cyan);
    font-size: 1.5rem;
}

.feature-icon-wrapper.purple {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
    color: var(--purple);
}

.feature-icon-wrapper.pink {
    background: rgba(244, 63, 94, 0.1);
    border-color: rgba(244, 63, 94, 0.2);
    color: var(--pink);
}

/* Call to Action Grid */
.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 5rem;
    text-align: center;
    border-radius: 24px;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-banner p {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.1rem;
}

/* ==========================================================================
   5. PAGES: GRID STRUCTURES & CARDS
   ========================================================================== */
/* Grid for workspaces & events */
.items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Grid for stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

/* Startup Card */
.story-card .card-image {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.story-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story-card:hover .card-image img {
    transform: scale(1.08);
}

.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 5, 22, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.35rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cyan);
    border: 1px solid var(--glass-border);
}

.card-meta-list {
    display: flex;
    gap: 1.5rem;
    margin: 1.2rem 0;
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.card-meta-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
}

/* Workspace discovery custom labels */
.workspace-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    text-align: center;
}

.spec-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 0.4rem;
    border-radius: 8px;
}

.spec-item .spec-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.spec-item .spec-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ==========================================================================
   6. COMMUNITY PAGE STYLING
   ========================================================================== */
.community-hero {
    text-align: center;
    padding-bottom: 4rem;
}

.community-directory {
    margin-bottom: 6rem;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    border: 3px solid var(--purple);
    padding: 3px;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
    object-fit: cover;
}

.member-card.cyan-ring .member-avatar {
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.3);
}

.member-card.pink-ring .member-avatar {
    border-color: var(--pink);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.3);
}

.member-role {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    margin-top: 1rem;
}

.member-socials a {
    color: var(--text-muted);
}

.member-socials a:hover {
    color: var(--cyan);
}

/* Forum discussions layout */
.forum-section {
    padding-bottom: 6rem;
}

.forum-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.forum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.forum-topic-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.forum-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.forum-topic-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.forum-stats {
    display: flex;
    gap: 3rem;
    text-align: center;
}

.f-stat-num {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.f-stat-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ==========================================================================
   7. EVENTS TIMELINE / LAYOUT
   ========================================================================== */
.event-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto;
}

.event-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--purple), var(--cyan), transparent);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 25px;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 3px solid var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    z-index: 10;
}

.timeline-item:nth-child(even) .timeline-dot {
    border-color: var(--purple);
    box-shadow: 0 0 10px var(--purple);
}

.timeline-card {
    width: 44%;
}

.timeline-date {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    background: rgba(250, 204, 21, 0.1);
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-item:nth-child(even) .timeline-date {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
}

/* Modal Popup Window */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 5, 22, 0.9);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-window {
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-close:hover {
    color: var(--text-primary);
}

/* ==========================================================================
   8. CONTACT FORM & FAQ
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-list {
    margin-top: 3rem;
    list-style: none;
}

.contact-info-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.2rem;
}

.contact-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-detail p {
    color: var(--text-muted);
}

/* Form Styles styling */
.glass-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.form-group input, .form-group textarea, .form-group select {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

/* Accordion FAQs */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
}

.faq-question h3 {
    font-size: 1.15rem;
}

.faq-icon-toggle {
    transition: var(--transition);
    color: var(--cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.5rem;
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* ==========================================================================
   9. FOOTER SYSTEM
   ========================================================================== */
.footer-system {
    background: #04020a;
    border-top: 1px solid var(--glass-border);
    padding: 6rem 2rem 3rem 2rem;
    position: relative;
}

.footer-system::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand p {
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #0a0516;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--cyan);
    padding-left: 5px;
}

.footer-address {
    font-style: normal;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-legal-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal-links a:hover {
    color: var(--cyan);
}

/* ==========================================================================
   10. SYSTEM ANIMATIONS
   ========================================================================== */
@keyframes floatBox {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

@keyframes floatRing {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(10px, -10px); }
    100% { transform: scale(1) translate(0, 0); }
}

/* ==========================================================================
   11. FULL RESPONSIVE SYSTEM
   ========================================================================== */
@media (max-width: 1100px) {
    .items-grid, .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 850px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .event-timeline::before {
        left: 20px;
    }
    .timeline-item {
        justify-content: flex-end;
    }
    .timeline-item:nth-child(even) {
        justify-content: flex-end;
    }
    .timeline-dot {
        left: 20px;
    }
    .timeline-card {
        width: calc(100% - 40px);
    }
    
    /* Mobile responsive navbar */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(18, 11, 36, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 1005;
        border-left: 1px solid var(--glass-border);
    }
    .nav-links.active {
        right: 0;
    }
    .hamburger {
        display: flex;
    }
    .nav-cta {
        display: none;
    }
}

@media (max-width: 600px) {
    .items-grid, .features-grid, .stories-grid, .stats-grid, .directory-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-legal-links {
        justify-content: center;
    }
}