:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0ea5e9;
    --accent: #06b6d4;
    --text: #1f2937;
    --text-secondary: #4b5563;
    --text-light: #9ca3af;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e5e7eb;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --speed: 0.3s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

#bg-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
#particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; background: radial-gradient(ellipse at 20% 20%, rgba(37,99,235,0.08) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(14,165,233,0.06) 0%, transparent 50%); }

/* LOADER */
#loader { position: fixed; inset: 0; background: linear-gradient(135deg, var(--bg-dark), #1e293b); display: flex; align-items: center; justify-content: center; z-index: 10000; transition: opacity 0.6s, visibility 0.6s; }
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.hexagon { display: inline-flex; gap: 4px; padding: 20px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 12px; animation: pulse-glow 2s ease-in-out infinite; }
.hexagon span { font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 700; color: #fff; animation: letter-bounce 0.6s ease-in-out infinite; }
.hexagon span:nth-child(1) { animation-delay: 0s; }
.hexagon span:nth-child(2) { animation-delay: 0.1s; }
.hexagon span:nth-child(3) { animation-delay: 0.2s; }
.hexagon span:nth-child(4) { animation-delay: 0.3s; }
.hexagon span:nth-child(5) { animation-delay: 0.4s; }
@keyframes letter-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse-glow { 0%,100% { box-shadow: 0 0 20px rgba(37,99,235,0.4); } 50% { box-shadow: 0 0 40px rgba(37,99,235,0.8); } }
.loader-text { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; font-weight: 600; color: var(--secondary); letter-spacing: 8px; margin: 2rem 0; }
.loader-bar { width: 200px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; margin: 0 auto; overflow: hidden; }
.loader-progress { width: 0%; height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 2px; animation: progress-fill 2s ease-in-out forwards; }
@keyframes progress-fill { to { width: 100%; } }

/* NAV */
#navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 1rem 0; z-index: 1000; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(229,231,235,0.5); transition: all var(--speed); }
#navbar.scrolled { padding: 0.75rem 0; box-shadow: var(--shadow-md); }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-img { height: 45px; width: auto; }
.logo-fallback { display: none; align-items: center; justify-content: center; width: 45px; height: 45px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; font-family: 'Orbitron', sans-serif; font-size: 1.2rem; font-weight: 700; border-radius: 10px; }
.logo-name-img { height: 70px; width: auto; }
.logo-text { display: none; font-family: 'Orbitron', sans-serif; font-size: 1.5rem; font-weight: 700; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 0.5rem; }
.nav-link { padding: 0.6rem 1rem; color: var(--text-secondary); text-decoration: none; font-weight: 500; font-size: 0.95rem; border-radius: 8px; transition: all var(--speed); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(37,99,235,0.08); }
.admin-toggle-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border: none; border-radius: 8px; cursor: pointer; color: #fff; transition: transform var(--speed); }
.admin-toggle-btn:hover { transform: scale(1.1); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; background: none; border: none; }
.hamburger span { width: 25px; height: 3px; background: var(--text); border-radius: 2px; transition: all var(--speed); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
#mobile-nav { position: fixed; inset: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); z-index: 999; display: none; align-items: center; justify-content: center; }
#mobile-nav.active { display: flex; }
.mobile-nav-content { display: flex; flex-direction: column; gap: 1rem; text-align: center; }
.mobile-nav-link { font-size: 1.5rem; font-weight: 600; color: var(--text); text-decoration: none; padding: 1rem 2rem; border-radius: 12px; transition: all var(--speed); }
.mobile-nav-link:hover { background: rgba(37,99,235,0.1); color: var(--primary); }
.mobile-admin-btn { margin-top: 1rem; width: auto; }

/* MAIN / PAGES */
#main-content { min-height: 100vh; padding-top: 80px; }
.page { display: none; opacity: 0; transform: translateY(20px); transition: all 0.5s ease; }
.page.active { display: block; opacity: 1; transform: translateY(0); }

/* BUTTONS */
.btn { padding: 1rem 2rem; font-size: 1rem; font-weight: 600; border: none; border-radius: var(--radius); cursor: pointer; transition: all var(--speed); font-family: 'Poppins', sans-serif; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: 0 4px 15px rgba(37,99,235,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,0.5); }
.btn-secondary { background: #fff; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; }

/* HERO */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    overflow: hidden;
}
.hero-content { text-align: center; }
.hero-badge { display: inline-block; padding: 0.5rem 1.5rem; background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(14,165,233,0.1)); color: var(--primary); font-weight: 600; font-size: 0.9rem; border-radius: 50px; margin-bottom: 1.5rem; border: 1px solid rgba(37,99,235,0.2); }
.hero-title { font-family: 'Orbitron', sans-serif; font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; }
.title-line { display: block; color: var(--text); }
.title-line.accent { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 1rem; margin-bottom: 2.5rem; justify-content: center; }

/* STATS */
.hero-stats-row { max-width: 1400px; margin: 0 auto; padding: 0 2rem 2rem; }
.hero-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; padding: 1.5rem 2rem; background: linear-gradient(135deg, rgba(37,99,235,0.04), rgba(14,165,233,0.04)); border-radius: var(--radius-lg); border: 1px solid rgba(37,99,235,0.1); }
.stat-item { text-align: center; min-width: 80px; padding: 0.5rem 1rem; }
.stat-number { font-family: 'Orbitron', sans-serif; font-size: 2.5rem; font-weight: 700; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; white-space: nowrap; display: inline-block; }
.stat-plus { font-family: 'Orbitron', sans-serif; font-size: 2.5rem; font-weight: 700; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { display: block; font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.25rem; }

/* 3D CUBE */
.hero-visual { display: flex; align-items: center; justify-content: center; perspective: 800px; min-width: 220px; }
.cube-wrapper { width: 200px; height: 200px; flex-shrink: 0; }
.cube { width: 150px; height: 150px; position: relative; transform-style: preserve-3d; animation: rotate-cube 20s linear infinite; margin: 25px auto; }
@keyframes rotate-cube { from { transform: rotateX(0) rotateY(0); } to { transform: rotateX(360deg) rotateY(360deg); } }
.cube-face { position: absolute; width: 150px; height: 150px; display: flex; align-items: center; justify-content: center; font-family: 'Orbitron', sans-serif; font-size: 3rem; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary)); border: 2px solid rgba(255,255,255,0.3); border-radius: 16px; box-shadow: 0 0 30px rgba(37,99,235,0.4); }
.cube-face.front { transform: translateZ(75px); }
.cube-face.back { transform: rotateY(180deg) translateZ(75px); }
.cube-face.right { transform: rotateY(90deg) translateZ(75px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(75px); }
.cube-face.top { transform: rotateX(90deg) translateZ(75px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(75px); }

/* FEATURES */
.features-section { padding: 4rem 2rem; max-width: 1400px; margin: 0 auto; }
.section-title { font-family: 'Orbitron', sans-serif; font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 3rem; background: linear-gradient(135deg, var(--text), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-card { background: #fff; padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); transition: all var(--speed); border: 1px solid var(--border); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transform: scaleX(0); transform-origin: left; transition: transform var(--speed); }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 60px; height: 60px; background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(14,165,233,0.1)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.feature-icon svg { width: 30px; height: 30px; color: var(--primary); }
.feature-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* PAGE HEADERS */
.page-header { text-align: center; padding: 3rem 2rem 2rem; background: linear-gradient(135deg, var(--bg-alt), #fff); }
.page-title { font-family: 'Orbitron', sans-serif; font-size: 3rem; font-weight: 800; margin-bottom: 0.75rem; background: linear-gradient(135deg, var(--text), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-subtitle { font-size: 1.2rem; color: var(--text-secondary); }

/* SERVICES */
.services-container { max-width: 1400px; margin: 0 auto; padding: 3rem 2rem; }
.service-category { margin-bottom: 3rem; }
.category-title { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 3px solid var(--primary); display: inline-block; color: var(--text); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.service-card { background: #fff; padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); transition: all var(--speed); border: 1px solid var(--border); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-number { font-family: 'Orbitron', sans-serif; font-size: 0.875rem; font-weight: 700; color: var(--primary); background: rgba(37,99,235,0.1); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* BENEFITS */
.benefits-container { max-width: 1400px; margin: 0 auto; padding: 3rem 2rem; }
.benefits-hero { text-align: center; margin-bottom: 3rem; padding: 2.5rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: var(--radius-lg); color: #fff; }
.benefits-hero h2 { font-family: 'Orbitron', sans-serif; font-size: 1.75rem; margin-bottom: 0.75rem; }
.benefits-hero p { font-size: 1.05rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.benefit-card { background: #fff; padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); transition: all var(--speed); border: 1px solid var(--border); text-align: center; }
.benefit-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-xl); }
.benefit-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.benefit-icon svg { width: 35px; height: 35px; color: #fff; }
.benefit-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.benefit-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.benefits-cta { text-align: center; padding: 3rem 2rem; background: var(--bg-alt); border-radius: var(--radius-lg); }
.benefits-cta h2 { font-family: 'Orbitron', sans-serif; font-size: 1.75rem; margin-bottom: 0.75rem; }
.benefits-cta p { color: var(--text-secondary); margin-bottom: 1.5rem; }

/* PARTNERSHIPS */
.partnerships-container { max-width: 1400px; margin: 0 auto; padding: 3rem 2rem; }
.partnership-model { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 1.5rem; overflow: hidden; border: 1px solid var(--border); transition: all var(--speed); }
.partnership-model:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.partnership-model.featured { border: 2px solid var(--primary); background: linear-gradient(135deg, rgba(37,99,235,0.02), rgba(14,165,233,0.02)); }
.model-header { display: flex; align-items: center; gap: 1.25rem; padding: 1.5rem 2rem; background: var(--bg-alt); }
.model-icon { font-size: 2.25rem; }
.model-header h2 { font-family: 'Orbitron', sans-serif; font-size: 1.3rem; font-weight: 700; }
.model-content { padding: 1.5rem 2rem; }
.model-content p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.8; }
.model-content ul { list-style: none; padding: 0; }
.model-content li { padding: 0.5rem 0 0.5rem 1.5rem; position: relative; color: var(--text-secondary); }
.model-content li::before { content: '\2713'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.venture-fields { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.venture-tag { padding: 0.4rem 1rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border-radius: 50px; font-size: 0.85rem; font-weight: 500; }
.partnership-benefits { margin-top: 3rem; text-align: center; }
.partnership-benefits h2 { font-family: 'Orbitron', sans-serif; font-size: 1.75rem; margin-bottom: 1.5rem; }
.benefits-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.benefit-item { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; padding: 1.5rem; border-radius: var(--radius-lg); text-align: center; }
.benefit-number { display: block; font-family: 'Orbitron', sans-serif; font-size: 2.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.benefit-text { font-size: 0.9rem; opacity: 0.9; }

/* ABOUT */
.about-container { max-width: 1400px; margin: 0 auto; padding: 3rem 2rem; }
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.about-content h2, .about-vision-title { font-family: 'Orbitron', sans-serif; font-size: 1.75rem; margin-bottom: 1rem; color: var(--primary); }
.about-content p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.8; }
.mission-cards { display: flex; flex-direction: column; gap: 1rem; }
.mission-card { background: #fff; padding: 1.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border-left: 4px solid var(--primary); transition: all var(--speed); }
.mission-card:hover { transform: translateX(10px); box-shadow: var(--shadow-lg); }
.mission-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--primary); }
.mission-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 0; }
.values-section { margin-bottom: 3rem; }
.values-section h2 { font-family: 'Orbitron', sans-serif; font-size: 1.75rem; text-align: center; margin-bottom: 2rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.value-card { background: #fff; padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); text-align: center; transition: all var(--speed); }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.value-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.value-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.value-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.about-vision { background: var(--bg-alt); padding: 2.5rem; border-radius: var(--radius-lg); text-align: center; margin-bottom: 3rem; }
.about-vision p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.8; font-size: 1.05rem; }
.about-cta { text-align: center; padding: 3rem 2rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: var(--radius-lg); color: #fff; }
.about-cta h2 { font-family: 'Orbitron', sans-serif; font-size: 1.75rem; margin-bottom: 1rem; }
.about-cta p { opacity: 0.9; margin-bottom: 1.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; }
.cta-buttons .btn-secondary { background: transparent; color: #fff; border-color: #fff; }
.cta-buttons .btn-secondary:hover { background: #fff; color: var(--primary); }

/* CONTACT */
.contact-container { max-width: 1400px; margin: 0 auto; padding: 3rem 2rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-family: 'Orbitron', sans-serif; font-size: 1.75rem; margin-bottom: 1rem; }
.contact-info > p { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: var(--bg-alt); border-radius: var(--radius); transition: all var(--speed); }
.contact-item:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.contact-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 22px; height: 22px; color: #fff; }
.contact-text h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.15rem; }
.contact-text p { color: var(--text-secondary); font-size: 0.9rem; }

/* CONTACT FORM - the ONLY place using floating labels */
.contact-form-container { background: #fff; padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form .cf-group { position: relative; }
.contact-form .cf-group input,
.contact-form .cf-group textarea,
.contact-form .cf-group select { width: 100%; padding: 1rem 1.25rem; font-size: 1rem; font-family: 'Poppins', sans-serif; border: 2px solid var(--border); border-radius: var(--radius); background: #fff; transition: all var(--speed); outline: none; }
.contact-form .cf-group input:focus,
.contact-form .cf-group textarea:focus,
.contact-form .cf-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,0.1); }
.contact-form .cf-group label { position: absolute; left: 1.25rem; top: 1rem; color: var(--text-light); font-size: 1rem; pointer-events: none; transition: all var(--speed); background: #fff; padding: 0 0.25rem; }
.contact-form .cf-group input:focus + label,
.contact-form .cf-group input:not(:placeholder-shown) + label,
.contact-form .cf-group textarea:focus + label,
.contact-form .cf-group textarea:not(:placeholder-shown) + label { top: -0.75rem; left: 1rem; font-size: 0.85rem; color: var(--primary); font-weight: 500; }
.contact-form .cf-group textarea { resize: vertical; min-height: 120px; }
.contact-form .cf-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1.25rem; }

/* GALLERY */
.gallery-container { max-width: 1400px; margin: 0 auto; padding: 2rem; }
.gallery-filters { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 2rem; flex-wrap: wrap; }
.filter-btn { padding: 0.6rem 1.25rem; background: #fff; border: 2px solid var(--border); border-radius: 50px; font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); cursor: pointer; transition: all var(--speed); font-family: 'Poppins', sans-serif; }
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: linear-gradient(135deg, var(--primary), var(--secondary)); border-color: transparent; color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); cursor: pointer; transition: all var(--speed); aspect-ratio: 4/3; }
.gallery-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; transform: translateY(100%); transition: transform var(--speed); }
.gallery-item:hover .gallery-item-overlay { transform: translateY(0); }
.gallery-item-overlay h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.gallery-item-overlay p { font-size: 0.8rem; opacity: 0.8; }
.gallery-item-cat { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.2rem 0.6rem; background: var(--primary); color: #fff; font-size: 0.7rem; font-weight: 500; border-radius: 50px; text-transform: capitalize; }
.gallery-empty, .library-empty { grid-column: 1 / -1; text-align: center; padding: 3rem 2rem; background: var(--bg-alt); border-radius: var(--radius-lg); border: 2px dashed var(--border); }
.gallery-empty svg, .library-empty svg { width: 50px; height: 50px; color: var(--text-light); margin-bottom: 1rem; }
.gallery-empty h3, .library-empty h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.gallery-empty p, .library-empty p { color: var(--text-secondary); }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000; display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: #fff; cursor: pointer; transition: all var(--speed); z-index: 10; }
.lightbox-close { top: 1.5rem; right: 1.5rem; width: 45px; height: 45px; font-size: 1.75rem; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 45px; height: 45px; font-size: 1.5rem; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-content { max-width: 90%; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: 8px; }
.lightbox-caption { margin-top: 1rem; color: #fff; font-size: 1.05rem; }

/* LIBRARY */
.library-container { max-width: 1400px; margin: 0 auto; padding: 2rem; }
.library-tabs { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 2rem; flex-wrap: wrap; }
.library-tab { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; background: #fff; border: 2px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; font-weight: 500; color: var(--text-secondary); cursor: pointer; transition: all var(--speed); font-family: 'Poppins', sans-serif; }
.library-tab:hover { border-color: var(--primary); color: var(--primary); }
.library-tab.active { background: linear-gradient(135deg, var(--primary), var(--secondary)); border-color: transparent; color: #fff; }
.library-section { display: none; }
.library-section.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.library-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.library-item { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: all var(--speed); border: 1px solid var(--border); }
.library-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.library-item-thumb { position: relative; aspect-ratio: 16/9; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; }
.library-item-thumb svg { width: 50px; height: 50px; color: var(--text-light); }
.library-item-play { position: absolute; width: 55px; height: 55px; background: rgba(37,99,235,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: all var(--speed); }
.library-item:hover .library-item-play { opacity: 1; transform: scale(1.1); }
.library-item-play svg { width: 22px; height: 22px; color: #fff; margin-left: 3px; }
.library-item-info { padding: 1.25rem; }
.library-item-info h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.library-item-info p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.75rem; line-height: 1.6; }
.library-item-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.library-item-cat { padding: 0.2rem 0.6rem; background: rgba(37,99,235,0.1); color: var(--primary); border-radius: 50px; text-transform: capitalize; }
.library-item-actions { display: flex; gap: 0.4rem; }
.lib-btn { padding: 0.4rem 0.75rem; background: var(--primary); color: #fff; border: none; border-radius: 6px; font-size: 0.8rem; cursor: pointer; transition: all var(--speed); font-family: 'Poppins', sans-serif; }
.lib-btn:hover { background: var(--primary-dark); }
.lib-btn.outline { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
.lib-btn.outline:hover { background: var(--primary); color: #fff; }
.video-modal, .pdf-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000; display: none; align-items: center; justify-content: center; }
.video-modal.active, .pdf-modal.active { display: flex; }
.video-modal-content, .pdf-modal-content { position: relative; width: 90%; max-width: 900px; }
.modal-close-btn { position: absolute; top: -35px; right: 0; width: 35px; height: 35px; background: rgba(255,255,255,0.15); border: none; border-radius: 50%; color: #fff; font-size: 1.25rem; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: background var(--speed); }
.modal-close-btn:hover { background: rgba(255,255,255,0.3); }
#videoPlayer { width: 100%; border-radius: 8px; }
.modal-info { margin-top: 0.75rem; color: #fff; text-align: center; }
.pdf-modal-content { height: 85vh; background: #fff; border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; padding: 1rem; }
.pdf-modal-content .modal-close-btn { color: var(--text); background: var(--bg-alt); top: 0.5rem; right: 0.5rem; }
#pdfViewer { flex: 1; border: none; border-radius: 8px; }

/* FOOTER */
#footer { background: var(--bg-dark); color: #fff; padding: 3rem 2rem 1.5rem; }
.footer-content { max-width: 1400px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { width: 100%; height: auto; margin-bottom: 0.75rem; }
.footer-logo-fallback { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-links h3, .footer-services h3, .footer-contact h3 { font-family: 'Orbitron', sans-serif; font-size: 1rem; margin-bottom: 1.25rem; }
.footer-links a, .footer-services a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; padding: 0.4rem 0; font-size: 0.9rem; transition: all var(--speed); }
.footer-links a:hover, .footer-services a:hover { color: var(--secondary); transform: translateX(5px); }
.footer-contact p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0.5rem; }
.social-links { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; border-radius: 8px; font-size: 0.75rem; transition: all var(--speed); }
.social-link:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 1.5rem; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* ================================================
   ADMIN OVERLAYS & FORMS — ALL LABELS STATIC
   ================================================ */
.admin-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 3000; display: none; align-items: center; justify-content: center; padding: 2rem; }
.admin-overlay.active { display: flex; }

/* ADMIN LOGIN BOX */
.admin-login-box { background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 440px; position: relative; box-shadow: 0 25px 50px rgba(0,0,0,0.25); padding: 2.5rem; animation: modalIn 0.3s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(-15px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.admin-login-box > .modal-close-btn { position: absolute; top: 1rem; right: 1rem; color: var(--text-secondary); background: var(--bg-alt); }
.admin-login-header { text-align: center; margin-bottom: 1.75rem; }
.admin-lock-icon { width: 65px; height: 65px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: #fff; }
.admin-login-header h2 { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; margin-bottom: 0.4rem; }
.admin-login-header p { color: var(--text-secondary); font-size: 0.85rem; }

/* ADMIN FORM FIELDS — label above input, NO overlap */
.admin-field { margin-bottom: 1rem; }
.admin-field label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text); margin-bottom: 0.35rem; }
.admin-field input { width: 100%; padding: 0.85rem 1rem; font-size: 0.95rem; font-family: 'Poppins', sans-serif; border: 2px solid var(--border); border-radius: var(--radius); outline: none; transition: border-color var(--speed), box-shadow var(--speed); }
.admin-field input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }

.admin-captcha-row { margin-bottom: 1rem; }
.captcha-box { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem; background: var(--bg-alt); border-radius: var(--radius); }
.captcha-question { font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 600; color: var(--primary); white-space: nowrap; }
.captcha-box input { flex: 1; padding: 0.6rem 0.75rem; font-size: 0.95rem; font-family: 'Poppins', sans-serif; border: 2px solid var(--border); border-radius: 8px; outline: none; min-width: 0; }
.captcha-box input:focus { border-color: var(--primary); }
.captcha-refresh-btn { width: 36px; height: 36px; background: #fff; border: 2px solid var(--border); border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color var(--speed); }
.captcha-refresh-btn:hover { border-color: var(--primary); }

.admin-error { color: #dc2626; font-size: 0.85rem; text-align: center; min-height: 1.25rem; margin-bottom: 0.5rem; }
.admin-lockout { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem; background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius); color: #dc2626; font-size: 0.85rem; margin-bottom: 0.75rem; }
.btn-spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.admin-login-footer { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); text-align: center; }
.security-badges { display: flex; justify-content: center; gap: 0.4rem; flex-wrap: wrap; }
.sec-badge { padding: 0.2rem 0.6rem; background: #f0fdf4; color: #16a34a; font-size: 0.7rem; font-weight: 500; border-radius: 50px; border: 1px solid #bbf7d0; }

/* ADMIN DASHBOARD */
.admin-dashboard { background: var(--bg-alt); width: 100%; max-width: 1200px; height: 90vh; border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; animation: modalIn 0.3s ease; }
.admin-dash-header { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 1.5rem; background: #fff; border-bottom: 1px solid var(--border); }
.admin-dash-title { display: flex; align-items: center; gap: 0.75rem; }
.admin-dash-title svg { color: var(--primary); }
.admin-dash-title h2 { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; }
.admin-dash-header > .modal-close-btn { position: static; color: var(--text-secondary); background: var(--bg-alt); }
.admin-dash-body { display: flex; flex: 1; overflow: hidden; }
.admin-sidebar { width: 240px; background: #fff; border-right: 1px solid var(--border); padding: 1rem 0.5rem; display: flex; flex-direction: column; gap: 0.25rem; overflow-y: auto; flex-shrink: 0; }
.sidebar-btn { display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1rem; background: transparent; border: none; border-radius: 10px; color: var(--text-secondary); font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: all var(--speed); text-align: left; font-family: 'Poppins', sans-serif; }
.sidebar-btn:hover { background: var(--bg-alt); color: var(--text); }
.sidebar-btn.active { background: rgba(37,99,235,0.1); color: var(--primary); }
.sidebar-logout { margin-top: auto; color: #dc2626; }
.sidebar-logout:hover { background: #fef2f2; }
.admin-main { flex: 1; padding: 1.5rem; overflow-y: auto; }

/* ADMIN SECTIONS */
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-section h3 { font-family: 'Orbitron', sans-serif; font-size: 1.35rem; margin-bottom: 0.4rem; }
.admin-section-desc { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.9rem; }

/* UPLOAD AREAS */
.upload-area { border: 2px dashed var(--border); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; background: #fff; cursor: pointer; transition: all var(--speed); margin-bottom: 1.5rem; }
.upload-area:hover, .upload-area.dragover { border-color: var(--primary); background: rgba(37,99,235,0.02); }
.upload-placeholder svg { width: 45px; height: 45px; color: var(--text-light); margin-bottom: 0.75rem; }
.upload-placeholder p { color: var(--text-secondary); margin-bottom: 0.4rem; }
.upload-placeholder span { color: var(--text-light); font-size: 0.8rem; }

/* UPLOAD FORMS — labels ABOVE inputs, no overlap */
.upload-form { background: #fff; padding: 1.75rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1rem; }
.uf-group { margin-bottom: 1rem; }
.uf-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text); margin-bottom: 0.35rem; }
.uf-group input, .uf-group select, .uf-group textarea { width: 100%; padding: 0.8rem 1rem; font-size: 0.9rem; font-family: 'Poppins', sans-serif; border: 2px solid var(--border); border-radius: 10px; transition: border-color var(--speed), box-shadow var(--speed); outline: none; }
.uf-group input:focus, .uf-group select:focus, .uf-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.uf-group textarea { resize: vertical; min-height: 70px; }
.upload-preview { margin: 1rem 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.75rem; }
.preview-item { position: relative; aspect-ratio: 1; border-radius: 10px; overflow: hidden; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; }
.preview-item img { width: 100%; height: 100%; object-fit: cover; }
.preview-item svg { width: 35px; height: 35px; color: var(--text-light); }
.preview-remove { position: absolute; top: 0.3rem; right: 0.3rem; width: 24px; height: 24px; background: rgba(220,38,38,0.9); border: none; border-radius: 50%; color: #fff; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.preview-name { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.3rem 0.5rem; background: rgba(0,0,0,0.7); color: #fff; font-size: 0.65rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* CONTENT STATS */
.content-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.stat-card { background: #fff; padding: 1.25rem; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); }
.stat-card .stat-value { display: block; font-family: 'Orbitron', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--primary); }
.stat-card .stat-label { font-size: 0.85rem; color: var(--text-secondary); }
.content-list { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.content-list-empty { padding: 2.5rem; text-align: center; color: var(--text-secondary); }
.content-list-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); transition: background var(--speed); }
.content-list-item:hover { background: var(--bg-alt); }
.content-list-item:last-child { border-bottom: none; }
.content-list-thumb { width: 50px; height: 50px; border-radius: 8px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.content-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.content-list-thumb svg { width: 22px; height: 22px; color: var(--text-light); }
.content-list-info { flex: 1; min-width: 0; }
.content-list-info h4 { font-size: 0.9rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.content-list-info p { font-size: 0.8rem; color: var(--text-secondary); }
.content-list-type { padding: 0.2rem 0.6rem; background: rgba(37,99,235,0.1); color: var(--primary); font-size: 0.75rem; font-weight: 500; border-radius: 50px; text-transform: capitalize; }
.content-list-delete { width: 32px; height: 32px; background: transparent; border: 1px solid #fecaca; border-radius: 6px; color: #dc2626; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--speed); }
.content-list-delete:hover { background: #fef2f2; border-color: #dc2626; }
.content-list-delete svg { width: 16px; height: 16px; }

/* EDIT WEBSITE CARDS */
.content-editor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.content-editor-card { background: #fff; padding: 1.75rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); cursor: pointer; transition: all var(--speed); border: 2px solid var(--border); text-align: center; }
.content-editor-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.editor-card-icon { width: 55px; height: 55px; background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(14,165,233,0.1)); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.editor-card-icon svg { width: 28px; height: 28px; color: var(--primary); }
.content-editor-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.content-editor-card p { font-size: 0.8rem; color: var(--text-secondary); }

/* CONTENT EDITOR MODAL */
.content-editor-box { background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 750px; max-height: 90vh; overflow-y: auto; position: relative; padding: 2rem; animation: modalIn 0.3s ease; }
.content-editor-box > .modal-close-btn { position: absolute; top: 1rem; right: 1rem; color: var(--text-secondary); background: var(--bg-alt); }
.ce-form { display: flex; flex-direction: column; gap: 1rem; }
.ce-form h3 { font-family: 'Orbitron', sans-serif; font-size: 1.3rem; margin-bottom: 0.5rem; }
.ce-group { display: flex; flex-direction: column; gap: 0.3rem; }
.ce-group label { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); }
.ce-group input, .ce-group textarea, .ce-group select { width: 100%; padding: 0.75rem 0.9rem; font-size: 0.9rem; font-family: 'Poppins', sans-serif; border: 2px solid var(--border); border-radius: 10px; outline: none; transition: border-color var(--speed), box-shadow var(--speed); }
.ce-group input:focus, .ce-group textarea:focus, .ce-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.ce-group textarea { resize: vertical; min-height: 80px; }
.ce-item { background: var(--bg-alt); padding: 1rem; border-radius: var(--radius); border: 1px solid var(--border); }
.ce-item-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.ce-item-head h4 { font-size: 0.95rem; font-weight: 600; }
.ce-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.ce-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }

/* DISABLED BTN */
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--primary), var(--secondary)); border-radius: 4px; }
::selection { background: rgba(37,99,235,0.2); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .about-hero { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    html { font-size: 14px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: 2.5rem; }
    .page-title { font-size: 2rem; }
    .section-title { font-size: 1.75rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .content-stats { grid-template-columns: repeat(2, 1fr); }
    .admin-sidebar { width: 60px; padding: 0.75rem 0.25rem; }
    .sidebar-btn { justify-content: center; padding: 0.6rem; font-size: 0; }
    .sidebar-btn svg { margin: 0; }
    .social-links { justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .btn { width: 100%; }
    .hero-stats { gap: 1rem; }
    .stat-number, .stat-plus { font-size: 2rem; }
    .services-grid, .benefits-grid, .values-grid { grid-template-columns: 1fr; }
    .benefits-row { grid-template-columns: 1fr; }
    .gallery-grid, .library-grid { grid-template-columns: 1fr; }
    .content-editor-grid { grid-template-columns: 1fr; }
}