/* ============================================
   SLB NEGERI 5 JAKARTA - STYLES.CSS
   Formal, Elegant, Modern Design
   Dominant Colors: Blue (#0066cc), Yellow (#ffc107), Green (#2d8659)
   ============================================ */

/* ============ RESET & BASE STYLES ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #1a1a2e;
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ============ COLOR VARIABLES ============ */
:root {
    --primary-blue: #0066cc;
    --primary-blue-dark: #0052a3;
    --primary-blue-light: #e6f0fa;
    --accent-yellow: #ffc107;
    --accent-yellow-light: #fff8e1;
    --accent-yellow-dark: #e6a800;
    --accent-green: #2d8659;
    --accent-green-light: #e8f5e9;
    --dark-text: #1a1a2e;
    --light-text: #6b7280;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --border-color: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --section-space-desktop: 5.25rem;
    --section-space-tablet: 4.25rem;
    --section-space-mobile: 3.5rem;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-blue) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ============ HEADER & NAVIGATION ============ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.logo-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    color: var(--dark-text);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.admin-link {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-link:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #004a99 0%, var(--primary-blue) 40%, #0059b3 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 134, 89, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    z-index: 2;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid rgba(255, 193, 7, 0.4);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-yellow) 50%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .city-text {
    display: block;
    font-size: 0.6em;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    align-self: center;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

/* ============ SECTION COMMON STYLES ============ */
section {
    padding: var(--section-space-desktop) 2rem;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-green-light));
    color: var(--primary-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4.2vw, 2.75rem);
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 0;
    position: relative;
    display: block;
    line-height: 1.2;
}

.section-title-underline {
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow), var(--accent-green));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--light-text);
    font-size: clamp(0.98rem, 2vw, 1.1rem);
    line-height: 1.8;
    max-width: 760px;
}

/* ============ NEWS SECTION ============ */
.news {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    padding: var(--section-space-desktop) 2rem;
}

.news.news-archive-mode {
    background: transparent;
    padding-top: 1rem;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-slider-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news .section-header {
    max-width: 900px;
}

.news-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.news-visual {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--light-bg);
}

.news-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-visual img {
    transform: scale(1.1);
}

.news-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.news-date {
    background: var(--accent-yellow-light);
    color: #b8860b;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

.news-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.4;
    margin: 0;
}

.news-excerpt {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.news-actions {
    margin-top: auto;
    padding-top: 1rem;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    color: var(--white);
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.news-read-more:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.news-archive-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.news-archive-cta .btn-primary {
    padding: 0.875rem 2.5rem;
}

.news-navigation {
    display: none;
}

.no-news-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--light-text);
    grid-column: 1 / -1;
}

.no-news-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ============ ABOUT SECTION ============ */
.about {
    background: var(--white);
    padding: var(--section-space-desktop) 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: fadeInUp 1s ease-out;
}

.about-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    line-height: 1.2;
}

.about-highlight {
    color: var(--primary-blue);
}

.about-lead {
    font-size: 1.15rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.about-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.about-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.35rem;
}

.about-feature-text p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin: 0;
    line-height: 1.6;
}

.about-cta {
    margin-top: 0.5rem;
}

.about-visual {
    position: relative;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.about-image-card {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 50%, var(--accent-yellow) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
    margin: 0 auto;
}

.about-image-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.about-stats-float {
    position: absolute;
    top: -25px;
    right: -25px;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: floatReverse 4s ease-in-out infinite;
}

.float-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.float-label {
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* ============ PROGRAMS SECTION ============ */
.programs {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    padding: var(--section-space-desktop) 2rem;
}

.programs .section-header {
    max-width: 900px;
}

.programs-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.program-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.program-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.program-visual {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.program-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.12;
}

.program-visual.blue::before {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
}

.program-visual.green::before {
    background: linear-gradient(135deg, var(--accent-green), #10b981);
}

.program-visual.yellow::before {
    background: linear-gradient(135deg, var(--accent-yellow), #f59e0b);
}

.program-visual.purple::before {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.program-visual.teal::before {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.program-visual.orange::before {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.program-icon-bg {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.program-visual.blue .program-icon-bg { color: var(--primary-blue); }
.program-visual.green .program-icon-bg { color: var(--accent-green); }
.program-visual.yellow .program-icon-bg { color: #d97706; }
.program-visual.purple .program-icon-bg { color: #7c3aed; }
.program-visual.teal .program-icon-bg { color: #0d9488; }
.program-visual.orange .program-icon-bg { color: #ea580c; }

.program-level {
    background: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-text);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.program-info {
    padding: 1.5rem 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-green-light));
    color: var(--primary-blue);
    padding: 0.35rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

.program-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.program-info > p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.program-features li i {
    color: var(--accent-green);
    font-size: 0.9rem;
}

/* ============ FEATURES SECTION ============ */
.features {
    background: var(--white);
    padding: var(--section-space-desktop) 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features .section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.features .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #dcfce7 100%);
    color: var(--primary-blue);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.features .section-subtitle {
    max-width: 700px;
    margin: 0.75rem auto 0;
}

.features .section-title {
    display: block;
    margin: 0;
}

.features .section-header .section-title + .section-subtitle {
    margin-top: 1rem;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue-light);
}

.feature-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-icon-wrap.blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: var(--primary-blue);
}

.feature-icon-wrap.green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: var(--accent-green);
}

.feature-icon-wrap.yellow {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}

.feature-icon-wrap.purple {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    color: #7c3aed;
}

.feature-icon-wrap.orange {
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
    color: #ea580c;
}

.feature-icon-wrap.teal {
    background: linear-gradient(135deg, #ccfbf1, #99f6e4);
    color: #0d9488;
}

.feature-glow {
    position: absolute;
    top: -55%;
    right: -55%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.06) 0%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover .feature-glow {
    opacity: 1;
}

.feature-card-modern:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.feature-content p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 0;
}

.feature-hover {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.feature-card-modern:hover .feature-hover {
    opacity: 1;
    transform: translateY(0);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============ CONTACT SECTION ============ */
.contact {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    padding: var(--section-space-desktop) 2rem;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-section {
    animation: fadeInUp 1s ease-out;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--white);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-yellow);
}

.contact-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.35rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.35rem;
}

.contact-details p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.contact-highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.contact-link:hover {
    color: var(--accent-green);
    transform: translateX(5px);
}

.social-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.social-icon:nth-child(1) { background: linear-gradient(135deg, #1877f2, #0d5cb6); }
.social-icon:nth-child(2) { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.social-icon:nth-child(3) { background: linear-gradient(135deg, #ff0000, #cc0000); }
.social-icon:nth-child(4) { background: linear-gradient(135deg, #1da1f2, #0d8bd9); }

.form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--light-text);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap i {
    position: absolute;
    left: 1rem;
    color: var(--light-text);
    font-size: 1rem;
    z-index: 1;
}

.input-wrap input,
.input-wrap textarea {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.75rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--light-bg);
    font-family: inherit;
}

.input-wrap input:focus,
.input-wrap textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    background: var(--white);
}

.input-wrap textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============ FOOTER ============ */
.footer-modern {
    background: #0f172a;
    color: var(--white);
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    fill: #0f172a;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 56px;
    height: 56px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.9rem;
    color: #ffc107;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mini-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.mini-contact i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #0066cc 0%, #2d8659 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-links-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ffc107 0%, #ff6b35 100%);
    border-radius: 2px;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col li {
    margin-bottom: 0.8rem;
}

.footer-links-col a {
    color: #94a3b8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links-col a i {
    font-size: 0.7rem;
    color: #0066cc;
    transition: all 0.3s ease;
}

.footer-links-col a:hover {
    color: #ffc107;
    transform: translateX(5px);
}

.footer-links-col a:hover i {
    color: #ffc107;
}

.social-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.28);
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.social-btn.facebook { background: linear-gradient(135deg, #1877f2, #0d5fc2); }
.social-btn.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.social-btn.youtube { background: linear-gradient(135deg, #ff0000, #d90000); }
.social-btn.twitter { background: linear-gradient(135deg, #1da1f2, #1a8ad1); }

.social-btn i {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(2, 6, 23, 0.45);
    transition: color 0.25s ease;
}

.social-btn.facebook .fa-facebook-f,
.social-btn.instagram .fa-instagram,
.social-btn.youtube .fa-youtube,
.social-btn.twitter .fa-twitter {
    color: #ffffff !important;
}

.social-btn.facebook:hover .fa-facebook-f,
.social-btn.instagram:hover .fa-instagram,
.social-btn.youtube:hover .fa-youtube,
.social-btn.twitter:hover .fa-twitter {
    color: #ffc107 !important;
}

.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.copyright span {
    color: #ffc107;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffc107;
}

.footer-bottom-links .divider {
    color: #475569;
}

/* ============ SPMB CTA ============ */
.spmb-cta {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--section-space-desktop) 2rem;
}

.spmb-cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.spmb-cta .section-subtitle {
    margin: 0.9rem auto 1.75rem;
    max-width: 700px;
}

/* ============ SPMB PAGE ============ */
.spmb-page {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    min-height: 100vh;
    padding-top: 90px;
}

.spmb-hero {
    padding: 2.5rem 1rem 1.2rem;
}

.spmb-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.spmb-hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    color: var(--dark-text);
    margin: 0.75rem 0;
    line-height: 1.2;
}

.spmb-hero-content p {
    color: var(--light-text);
    max-width: 760px;
    margin: 0 auto;
}

.spmb-form-section {
    padding: 1rem 1rem var(--section-space-desktop);
}

.spmb-container {
    max-width: 1100px;
    margin: 0 auto;
}

.spmb-alert {
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.spmb-alert.success {
    background: #ecfdf3;
    border: 1px solid #86efac;
    color: #166534;
}

.spmb-alert.error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.spmb-form-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 2rem;
}

.spmb-stepper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.spmb-stepper-item {
    border: 1px solid #dbe3f3;
    background: #f8fafc;
    border-radius: 12px;
    padding: 0.6rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #475569;
}

.spmb-stepper-item span {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    background: #ffffff;
}

.spmb-stepper-item small {
    font-size: 0.86rem;
    font-weight: 600;
}

.spmb-stepper-item.active {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1e3a8a;
}

.spmb-stepper-item.active span,
.spmb-stepper-item.done span {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #ffffff;
}

.spmb-step {
    display: none;
}

.spmb-step.active {
    display: block;
}

.spmb-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.2rem;
}

.spmb-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.spmb-field-full {
    grid-column: 1 / -1;
}

.spmb-field label {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1f2937;
}

.spmb-field label span {
    color: #dc2626;
}

.spmb-field input,
.spmb-field select,
.spmb-field textarea {
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: #111827;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.spmb-field textarea {
    resize: vertical;
}

.spmb-field input:focus,
.spmb-field select:focus,
.spmb-field textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.spmb-field input[readonly] {
    background: #f8fafc;
    color: #4b5563;
}

.spmb-subtitle {
    margin: 0.9rem 0 1rem;
    font-size: 1.2rem;
    color: var(--dark-text);
}

.spmb-confirm-box {
    background: #f8fafc;
    border: 1px solid #dbe3f3;
    border-radius: 12px;
    padding: 1rem;
}

.spmb-confirm-box p {
    color: #334155;
    margin-bottom: 0.55rem;
}

.spmb-confirm-box ul {
    margin-left: 1rem;
    color: #475569;
    font-size: 0.95rem;
}

.spmb-confirm-box li {
    list-style: disc;
    margin-bottom: 0.2rem;
}

.spmb-confirm-box h4 {
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.spmb-preview-value {
    min-height: 44px;
    padding: 0.7rem 0.85rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #ffffff;
    color: #111827;
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

.spmb-missing-helper {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px dashed #cbd5e1;
}

.spmb-missing-title {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #166534;
}

.spmb-missing-helper.has-missing .spmb-missing-title {
    color: #b45309;
}

.spmb-missing-list {
    margin: 0.55rem 0 0.75rem 1rem;
    color: #92400e;
    font-size: 0.92rem;
}

.spmb-missing-list li {
    list-style: disc;
    margin-bottom: 0.15rem;
}

.spmb-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.spmb-actions-between {
    justify-content: space-between;
}

.spmb-actions-right {
    justify-content: flex-end;
}

.spmb-draft-tools {
    margin-top: 0.25rem;
    margin-bottom: 0.6rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.spmb-draft-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.spmb-draft-status.saving {
    background: #fffbeb;
    color: #92400e;
    border-color: #fcd34d;
}

.spmb-draft-status.saved {
    background: #ecfdf3;
    color: #166534;
    border-color: #86efac;
}

.spmb-draft-status.error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fca5a5;
}

.spmb-actions .btn-secondary {
    background: #eef2ff;
    color: #1e3a8a;
    border: 1px solid #c7d2fe;
}

.spmb-actions .btn-secondary:hover {
    background: #e0e7ff;
    border-color: #a5b4fc;
}

.spmb-actions-final {
    justify-content: flex-end;
    gap: 0.75rem;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1200px) {
    .programs-grid-modern, .features-grid-modern { grid-template-columns: repeat(2, 1fr); }
    .news,
    .about,
    .programs,
    .features,
    .contact {
        padding: var(--section-space-tablet) 1.5rem;
    }
}

@media (max-width: 968px) {
    .about-container, .contact-container { grid-template-columns: 1fr; gap: 4rem; }
    .footer-main { grid-template-columns: 1fr; gap: 3rem; }
    .footer-links-group { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 3rem; }
    .about-title, .section-title { font-size: 2.5rem; }
    .features-grid-modern { gap: 1.5rem; }
}

@media (max-width: 768px) {
    .navbar { padding: 1rem; }
    .nav-menu {
        position: fixed; top: 100%; left: 0; right: 0;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column; padding: 2rem; gap: 1.5rem;
        transform: translateY(-100%); opacity: 0; visibility: hidden;
        transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); z-index: 999;
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .hamburger { display: flex; }
    .hero { padding: 8rem 1rem 4rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .news,
    .about,
    .programs,
    .features,
    .contact {
        padding: var(--section-space-tablet) 1rem;
    }
    .news .section-header,
    .programs .section-header,
    .features .section-header {
        margin-bottom: 2rem;
    }
    .programs-grid-modern, .features-grid-modern { grid-template-columns: 1fr; }
    .news-slider {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .news-card {
        border-radius: 14px;
    }
    .news-info {
        padding: 1.15rem;
    }
    .news-title {
        font-size: 1.05rem;
    }
    .news-excerpt {
        font-size: 0.9rem;
        line-height: 1.55;
    }
    .program-info {
        padding: 1.25rem 1.25rem 1.4rem;
    }
    .program-info h3 {
        font-size: 1.05rem;
    }
    .program-info > p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .program-features li {
        font-size: 0.85rem;
    }
    .contact-container { gap: 2rem; }
    .form-card { padding: 2rem; }
    .footer-links-group { grid-template-columns: 1fr; }
    .features .section-badge {
        font-size: 0.82rem;
        padding: 0.5rem 0.9rem;
    }
    .spmb-grid {
        grid-template-columns: 1fr;
    }
    .spmb-form-card {
        padding: 1.2rem;
    }
    .spmb-stepper {
        grid-template-columns: 1fr;
    }
    .spmb-actions-between {
        justify-content: flex-start;
    }
    .spmb-draft-tools {
        justify-content: flex-start;
    }
    .spmb-actions-final {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .hero h1 { font-size: 2rem; }
    .hero-tagline { font-size: 1.5rem; }
    .hero-description { font-size: 1rem; }
    .section-title, .about-title { font-size: 2rem; }
    .about-image-card { width: 250px; height: 250px; }
    .about-image-icon { width: 100px; height: 100px; }
    .feature-card-modern { padding: 1.5rem; }
    .contact-card { padding: 1.5rem; }
    .footer-wave { top: -59px; }
    .footer-wave svg { height: 60px; }
    .news {
        padding: var(--section-space-mobile) 0.85rem;
    }
    .about {
        padding: var(--section-space-mobile) 0.85rem;
    }
    .programs {
        padding: var(--section-space-mobile) 0.85rem;
    }
    .features {
        padding: var(--section-space-mobile) 0.85rem;
    }
    .contact {
        padding: var(--section-space-mobile) 0.85rem;
    }
    .news-info {
        padding: 1rem;
    }
    .news-read-more {
        width: 100%;
        justify-content: center;
    }
    .program-visual {
        padding: 1.3rem;
    }
    .program-icon-bg {
        width: 64px;
        height: 64px;
        font-size: 1.65rem;
        border-radius: 16px;
    }
    .program-level {
        font-size: 0.78rem;
        padding: 0.35rem 0.8rem;
    }
    .program-info {
        padding: 1rem 1rem 1.1rem;
    }
    .program-tag {
        font-size: 0.72rem;
    }
    .feature-icon-wrap {
        width: 62px;
        height: 62px;
        font-size: 1.5rem;
        border-radius: 16px;
    }
    .feature-content h3 {
        font-size: 1.1rem;
    }
    .feature-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .features .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.btn:focus, .nav-menu a:focus, .social-btn:focus, .contact-link:focus {
    outline: 2px solid #0066cc; outline-offset: 2px;
}

@media (prefers-contrast: high) {
    .btn-primary { background: #000; color: #fff; border: 2px solid #fff; }
    .hero { background: #000; }
    .hero h1 { color: #fff; }
}

@media print {
    .hero, .footer-wave, .news-navigation, .social-section, .contact-form { display: none !important; }
    body { font-size: 12pt; line-height: 1.4; }
    .section-title { color: #000 !important; }
}

/* ============ CUSTOM SCROLLBAR ============ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: linear-gradient(135deg, #0066cc, #2d8659); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(135deg, #2d8659, #0066cc); }
