/* ===== VARIABLES & RESET ===== */
:root {
    /* Light Theme Colors */
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --primary-light: #f87171;
    --primary-rgb: 220, 38, 38;
    
    /* Secondary Colors */
    --secondary: #1e293b;
    --secondary-dark: #0f172a;
    --secondary-light: #334155;
    
    /* Accent Colors */
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fbbf24;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    /* Light Theme Neutrals */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --light: #f8fafc;
    --light-dark: #e2e8f0;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --white: #ffffff;
    --card-bg: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --gradient-red: linear-gradient(135deg, #dc2626, #b91c1c);
    --gradient-dark: linear-gradient(135deg, var(--dark), var(--dark-light));
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--primary));
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.2);
    --shadow-red: 0 10px 30px rgba(220, 38, 38, 0.3);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Spacing */
    --section-padding: 120px 0;
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --dark: #0f172a;
    --dark-light: #1e293b;
    --light: #f8fafc;
    --light-dark: #e2e8f0;
    --gray: #94a3b8;
    --gray-light: #cbd5e1;
    --white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.03);
}

/* Light Theme Variables - PERBAIKAN DI SINI */
[data-theme="light"] {
    --dark: #ffffff; /* Background putih */
    --dark-light: #f8fafc; /* Light gray untuk secondary */
    --light: #0f172a; /* Text hitam */
    --light-dark: #1e293b; /* Text dark gray */
    --gray: #64748b; /* Text medium gray */
    --gray-light: #cbd5e1; /* Border light gray */
    --white: #0f172a; /* Untuk text yang seharusnya putih */
    --card-bg: #ffffff; /* Card background putih */
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #f8fafc;
}

/* PERBAIKAN HERO SECTION LIGHT MODE */
[data-theme="light"] .hero-section {
    background: linear-gradient(135deg, #ffffff, #f8fafc) !important;
    color: var(--light) !important;
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-link {
    color: var(--gray);
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
    color: var(--light);
}

[data-theme="light"] .hero-badge {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
    color: var(--light);
}

[data-theme="light"] .hero-subtitle {
    color: var(--gray);
}

[data-theme="light"] .section-title {
    color: var(--light);
}

[data-theme="light"] .section-subtitle {
    color: var(--gray);
}

[data-theme="light"] .footer {
    background: var(--footer-bg);
    color: var(--light);
}

[data-theme="light"] .footer .link-group a,
[data-theme="light"] .footer .contact-info-footer p,
[data-theme="light"] .footer .brand-description {
    color: var(--gray);
}

[data-theme="light"] .footer .copyright {
    color: var(--gray);
}

[data-theme="light"] .card,
[data-theme="light"] .service-card,
[data-theme="light"] .tech-card,
[data-theme="light"] .system-card,
[data-theme="light"] .contact-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .card h3,
[data-theme="light"] .service-card h3,
[data-theme="light"] .tech-card h3,
[data-theme="light"] .system-card h3,
[data-theme="light"] .contact-card h4 {
    color: var(--light);
}

[data-theme="light"] .card p,
[data-theme="light"] .service-card > p,
[data-theme="light"] .tech-card > p,
[data-theme="light"] .system-card p,
[data-theme="light"] .contact-card p {
    color: var(--gray);
}

[data-theme="light"] .stat-item,
[data-theme="light"] .project-stat {
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.1);
}

[data-theme="light"] .stat-item h3,
[data-theme="light"] .project-stat h3 {
    color: var(--light);
}

[data-theme="light"] .stat-item p,
[data-theme="light"] .project-stat p {
    color: var(--gray);
}

[data-theme="light"] .primary-btn {
    background: var(--gradient-red);
    color: white;
}

[data-theme="light"] .secondary-btn {
    background: transparent;
    color: var(--light);
    border: 2px solid rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .secondary-btn:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--primary);
}

[data-theme="light"] .cursor {
    mix-blend-mode: normal;
}

[data-theme="light"] .cursor-follower {
    background: rgba(220, 38, 38, 0.1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
}

.theme-toggle .bx-sun {
    display: none;
}

[data-theme="light"] .theme-toggle .bx-sun {
    display: block;
}

[data-theme="light"] .theme-toggle .bx-moon {
    display: none;
}

/* Cursor Effects */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s, width 0.3s, height 0.3s;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s, width 0.3s, height 0.3s;
}

.cursor.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
    opacity: 0.5;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}
.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center; /* Tambahkan ini */
    gap: 15px;
    margin-bottom: 40px;
}

.loader-logo i {
    font-size: 3rem;
    color: var(--primary);
    animation: pulse 2s infinite;
}

.loader-text {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Poppins', sans-serif;
}

.loader-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--gradient-red);
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.section-title .gradient-text {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.section-title .gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.section-title:hover .gradient-text::after {
    transform: scaleX(1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
}

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

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

/* Navbar Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    padding: 8px 0;
}

.dropdown-toggle i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--dark);
    border-radius: var(--radius);
    padding: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: rgba(220, 38, 38, 0.1);
    color: var(--light);
    padding-left: 25px;
}

.dropdown-item i {
    font-size: 1.1rem;
    color: var(--primary);
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

/* Light mode dropdown */
[data-theme="light"] .dropdown-menu {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .dropdown-item {
    color: var(--gray);
}

[data-theme="light"] .dropdown-item:hover {
    background: rgba(220, 38, 38, 0.05);
    color: var(--light);
}

[data-theme="light"] .dropdown-divider {
    background: rgba(0, 0, 0, 0.1);
}

/* Responsive dropdown */
@media (max-width: 992px) {
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: transparent;
        padding-left: 20px;
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-wrapper i {
    font-size: 2.5rem;
    color: var(--primary);
    background: rgba(220, 38, 38, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: var(--transition);
}

.logo-wrapper:hover i {
    transform: rotate(10deg) scale(1.1);
    background: rgba(220, 38, 38, 0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light);
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
    overflow: hidden;
}

.nav-link span {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.link-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-red);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--light);
}

.nav-link:hover .link-hover,
.nav-link.active .link-hover {
    transform: translateX(0);
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--primary);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.nav-link:hover::before {
    transform: translateY(0);
}

.cta-button-nav {
    background: var(--gradient-red);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.cta-button-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button-nav:hover::before {
    left: 100%;
}

.cta-button-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.cta-button-nav.pulse {
    animation: pulse 2s infinite;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--light);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: left center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(15, 23, 42, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    padding-bottom: 100px;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    padding: 40px;
    padding-bottom: 120px;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(220, 38, 38, 0.15);
    padding: 12px 25px;
    border-radius: var(--radius-full);
    margin-bottom: 40px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    justify-content: flex-start;
}

.badge-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.1;
    border-radius: var(--radius-full);
    animation: pulse 3s infinite;
}

.hero-badge i {
    color: var(--primary);
    font-size: 1.2rem;
    z-index: 1;
}

.hero-title-wrapper {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    justify-content: flex-start;
}

.decoration-line {
    width: 100px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: var(--radius-full);
}

.title-decoration i {
    color: var(--accent);
    font-size: 1.5rem;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: left;
}

.hero-subtitle .highlight {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.hero-subtitle .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hero-subtitle:hover .highlight::after {
    transform: scaleX(1);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-weight: 500;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(220, 38, 38, 0.1);
    color: var(--light);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
    position: relative;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--primary);
}

.stat-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-red);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-wave {
    transform: translateX(0);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    background: var(--gradient-red);
    color: white;
    transform: rotateY(180deg);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--light);
}

.stat-item .counter {
    display: inline-block;
    min-width: 60px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 60px;
    margin-bottom: 40px;
}

.primary-btn, .secondary-btn, .tertiary-btn {
    padding: 18px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: var(--gradient-red);
    color: white;
}

.btn-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    animation: wave 3s linear infinite;
}

@keyframes wave {
    0% { transform: translate(-50%, -50%) rotate(45deg) translateX(-100%); }
    100% { transform: translate(-50%, -50%) rotate(45deg) translateX(100%); }
}

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

.primary-btn.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
    }
}

.secondary-btn {
    background: transparent;
    color: var(--light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    border-color: var(--primary);
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-3px);
}

.tertiary-btn {
    background: transparent;
    color: var(--light);
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.tertiary-btn:hover {
    border-color: var(--accent);
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gray);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

.arrow i {
    font-size: 1.5rem;
    color: var(--primary);
    animation: arrowBounce 1s infinite alternate;
}

@keyframes arrowBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

.scroll-text {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: textFade 2s infinite alternate;
}

@keyframes textFade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Hero Gradient Background */
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(220, 38, 38, 0.1) 0%,
        rgba(15, 23, 42, 0.9) 30%,
        rgba(15, 23, 42, 1) 70%,
        rgba(220, 38, 38, 0.1) 100%
    );
    z-index: 1;
}

/* Hero Shapes Animation */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary), transparent);
    filter: blur(40px);
    opacity: 0.3;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: floatShape 20s infinite linear;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: 20%;
    right: 10%;
    animation: floatShape 25s infinite linear reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
    animation: floatShape 15s infinite linear;
}

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: 40%;
    left: 20%;
    animation: floatShape 18s infinite linear reverse;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Hero Title Animation */
.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: wordReveal 0.8s forwards;
}

.word-1 { animation-delay: 0.5s; }
.word-2 { animation-delay: 0.8s; }
.word-3 { animation-delay: 1.1s; }
.word-4 { animation-delay: 1.4s; }

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title Decoration Animation */
.decoration-star {
    animation: starSpin 3s infinite linear;
}

@keyframes starSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.line-left, .line-right {
    width: 100px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: var(--radius-full);
    animation: lineExtend 1.5s ease-out forwards;
    transform-origin: center;
}

.line-left {
    animation-delay: 1.8s;
    transform: scaleX(0);
    transform-origin: left;
}

.line-right {
    animation-delay: 1.8s;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes lineExtend {
    to {
        transform: scaleX(1);
    }
}

/* Hero Subtitle Animation */
.subtitle-text {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: subtitleReveal 0.8s forwards;
}

.subtitle-text:nth-child(1) { animation-delay: 2s; }
.subtitle-text:nth-child(2) { animation-delay: 2.3s; }

@keyframes subtitleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Icons */
.hero-floating {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.15);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

.item-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.item-2 {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

.item-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

.item-4 {
    bottom: 15%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--dark);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateX(10px);
    background: rgba(220, 38, 38, 0.05);
}

.highlight-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.highlight-card h4 {
    color: var(--light);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.highlight-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card, .mission-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-header i {
    font-size: 2.5rem;
    color: var(--primary);
}

.card-header h3 {
    color: var(--light);
    font-size: 1.8rem;
}

.card-content p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.mission-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.mission-list i {
    color: var(--success);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.motto-section {
    text-align: center;
    padding: 60px;
    background: rgba(220, 38, 38, 0.05);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
}

.motto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(220, 38, 38, 0.05), transparent);
}

.motto-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.motto-content i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.5;
}

.motto {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light);
    font-style: italic;
    line-height: 1.4;
    max-width: 800px;
}

.motto-author {
    color: var(--gray);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--dark-light);
    position: relative;
}

.services-tabs {
    position: relative;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    padding: 12px 25px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-red);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    border-radius: var(--radius-full);
}

.tab-btn span {
    position: relative;
    z-index: 2;
    color: inherit;
}

.tab-btn.active {
    color: white !important;
    border-color: var(--primary);
}

.tab-btn.active::before {
    opacity: 1;
}

.tab-btn.active span {
    color: white !important;
}

.tab-btn:hover:not(.active) span {
    color: var(--light) !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    transition: var(--transition);
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: var(--radius);
    opacity: 0;
    filter: blur(20px);
    transition: var(--transition);
}

.service-card:hover .icon-glow {
    opacity: 0.3;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: var(--gradient-red);
    color: white;
}

.service-tag {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    align-self: flex-start;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light);
}

.service-card > p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-details {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    text-align: left;
}

.service-details h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-details ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-details li {
    padding: 8px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-left: 20px;
}

.service-details li::before {
    content: '▸';
    color: var(--primary);
    position: absolute;
    left: 0;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features span {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features i {
    color: var(--success);
    font-size: 1rem;
}

/* ===== TECHNOLOGY SECTION ===== */
.technology-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.technology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tech-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(220, 38, 38, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.tech-icon {
    width: 90px;
    height: 90px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 3rem;
    color: var(--primary);
    position: relative;
    transition: var(--transition);
}

.tech-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: var(--radius);
    opacity: 0;
    filter: blur(30px);
    transition: var(--transition);
}

.tech-card:hover .tech-glow {
    opacity: 0.4;
}

.tech-card:hover .tech-icon {
    transform: rotate(360deg) scale(1.1);
}

.tech-card h3 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 20px;
}

.tech-card > p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.tech-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
}

.tech-features i {
    color: var(--success);
    font-size: 1.2rem;
}

.tech-dashboard {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.tech-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(220, 38, 38, 0.05), transparent);
}

.dashboard-preview {
    position: relative;
    z-index: 2;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.dashboard-header i {
    font-size: 2.5rem;
    color: var(--primary);
}

.dashboard-header h4 {
    color: var(--light);
    font-size: 1.5rem;
}

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.metric {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-5px);
}

.metric-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.metric-label {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
}

/* ===== SYSTEM ASSESSMENT SECTION ===== */
.system-section {
    background: var(--dark-light);
    position: relative;
}

.system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.system-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.system-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.system-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.system-icon {
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.system-card:hover .system-icon {
    background: var(--gradient-red);
    color: white;
    transform: scale(1.1);
}

.system-card h3 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 15px;
}

.system-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ===== ORGANIZATION STRUCTURE SECTION ===== */
.structure-section {
    background: var(--dark);
    position: relative;
}

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.level-1 .org-node {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 30px 50px;
}

.level-1 .org-node i {
    color: white !important;
    filter: brightness(0) invert(1);
}

[data-theme="light"] .level-1 .org-node i {
    filter: none;
}

.level-2 .org-node {
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid var(--primary);
    padding: 25px 40px;
}

.level-3, .level-4, .level-5 {
    gap: 20px;
}

.org-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.org-node {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.org-node:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.org-node i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.org-node h4 {
    color: var(--light);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.org-node p {
    color: var(--gray);
    font-size: 0.9rem;
}

.org-sub {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.org-sub-node {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    color: var(--gray);
    font-size: 0.9rem;
}

.org-sub-node i {
    font-size: 1rem;
    margin: 0;
}

.org-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    position: relative;
}

.connector-line {
    width: 100%;
    height: 100%;
    background: var(--gradient-red);
    border-radius: var(--radius-full);
}

.structure-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    background: rgba(220, 38, 38, 0.05);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-card h4 {
    color: var(--light);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    background: var(--dark-light);
    position: relative;
}

.client-showcase {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 50px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.client-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(220, 38, 38, 0.05), transparent);
}

.client-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.client-logo i {
    font-size: 4rem;
    color: var(--primary);
}

.client-logo h3 {
    color: var(--light);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.client-logo p {
    color: var(--gray);
    font-size: 1.1rem;
}

.projects-list {
    position: relative;
    z-index: 2;
}

.projects-list h4 {
    color: var(--light);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.project-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: var(--radius);
    color: var(--gray);
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-item:hover {
    background: rgba(220, 38, 38, 0.1);
    color: var(--light);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.project-stat {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.project-stat:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.project-stat h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.project-stat p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--dark);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: var(--primary);
    position: relative;
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: var(--radius);
    opacity: 0;
    animation: pulse 2s infinite;
}

.contact-card h4 {
    color: var(--light);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    gap: 15px;
    color: var(--accent);
}

.contact-link.whatsapp:hover {
    color: #25D366;
}

.contact-hours {
    background: rgba(220, 38, 38, 0.1);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.contact-hours h4 {
    color: var(--light);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hour-item span:first-child {
    color: var(--gray);
}

.hour-item span:last-child {
    color: var(--light);
    font-weight: 500;
}

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    color: var(--light);
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-header p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--gray);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--light);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: none;
}

.form-group textarea {
    padding: 15px 15px 15px 50px;
    resize: vertical;
    min-height: 120px;
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1.2rem;
    transition: var(--transition);
}

.form-group textarea + i {
    top: 25px;
    transform: none;
}

.form-group select + i {
    right: 20px;
    left: auto;
    pointer-events: none;
}

.form-focus {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(220, 38, 38, 0.05);
}

.form-group input:focus ~ .form-focus,
.form-group select:focus ~ .form-focus,
.form-group textarea:focus ~ .form-focus {
    transform: scaleX(1);
}

.form-group input:focus ~ i,
.form-group select:focus ~ i,
.form-group textarea:focus ~ i {
    color: var(--primary);
}

.form-submit {
    margin-top: 40px;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 20px;
}

.form-note i {
    color: var(--primary);
}

.map-section {
    margin-top: 60px;
}

.map-wrapper {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    color: var(--dark);
    transform: translateY(-100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.logo i {
    font-size: 3rem;
    color: var(--primary);
}

.logo-text h3 {
    font-size: 1.8rem;
    color: var(--light);
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.logo-sub {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.brand-description {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.link-group h4 {
    color: var(--light);
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.link-group a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 15px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.link-group a i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.link-group a:hover i {
    transform: translateX(3px);
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info-footer p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-info-footer i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.newsletter h5 {
    color: var(--light);
    margin-bottom: 15px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--light);
    font-size: 0.9rem;
}

.newsletter-form button {
    width: 45px;
    background: var(--gradient-red);
    border: none;
    border-radius: var(--radius);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
}

.copyright .highlight {
    color: var(--primary);
    font-weight: 600;
}

.made-with {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.made-with i {
    color: var(--primary);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-payments i {
    font-size: 1.5rem;
    color: var(--gray);
    transition: var(--transition);
}

.footer-payments i:hover {
    color: var(--primary);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-red);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-main {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .technology-grid {
        grid-template-columns: 1fr;
    }
    
    .system-grid {
        grid-template-columns: 1fr;
    }
    
    .org-level {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .org-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .theme-toggle {
        bottom: 30px;
        right: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .motto {
        font-size: 1.8rem;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .theme-toggle,
    .back-to-top,
    .hero-floating,
    .scroll-indicator,
    .footer-wave,
    .footer-social,
    .newsletter-form {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .section {
        padding: 40px 0 !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
    
    .hero-section {
        min-height: auto !important;
        padding: 40px 0 !important;
    }
}

/* Hero Section Modern Layout */
.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.hero-content {
    max-width: 700px;
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: left;
}

.hero-title .title-line {
    display: block;
    overflow: hidden;
}

.hero-title .title-word {
    display: inline-block;
    margin-right: 15px;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.quick-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--primary);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary);
}

.stat-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

.service-highlights {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-highlights h4 {
    color: var(--light);
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

.highlight-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.3rem;
    color: var(--primary);
}

.highlight-item span {
    color: var(--light);
    font-weight: 500;
}

.client-badge {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.badge-content h4 {
    color: var(--light);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.badge-content p {
    color: var(--gray);
    font-size: 0.9rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-weight: 500;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.trust-item:hover {
    background: rgba(220, 38, 38, 0.1);
    color: var(--light);
}

.trust-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Light mode hero */
[data-theme="light"] .stat-card,
[data-theme="light"] .service-highlights,
[data-theme="light"] .highlight-item,
[data-theme="light"] .trust-item {
    background: rgba(220, 38, 38, 0.05);
    border-color: rgba(220, 38, 38, 0.1);
}

[data-theme="light"] .stat-card:hover,
[data-theme="light"] .highlight-item:hover,
[data-theme="light"] .trust-item:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--primary);
}

[data-theme="light"] .client-badge {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(245, 158, 11, 0.08));
    border-color: rgba(220, 38, 38, 0.2);
}

/* Responsive hero */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        text-align: center; /* Di mobile tetap center untuk readability */
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .title-line {
        text-align: center;
    }
    
    .title-decoration {
        justify-content: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-sidebar {
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }
}

@media (min-width: 993px) {
    .hero-content {
        text-align: left !important;
    }
    
    .hero-badge {
        justify-content: flex-start !important;
    }
    
    .hero-title {
        text-align: left !important;
    }
    
    .title-line {
        text-align: left !important;
    }
    
    .title-decoration {
        justify-content: flex-start !important;
    }
    
    .hero-subtitle {
        text-align: left !important;
    }
    
    .hero-features {
        justify-content: flex-start !important;
    }
    
    .hero-actions {
        justify-content: flex-start !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .trust-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .client-badge {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== TAMBAHAN PERBAIKAN UNTUK LIGHT MODE ===== */

/* Perbaikan untuk hero gradient di light mode */
[data-theme="light"] .hero-gradient {
    background: linear-gradient(
        135deg,
        rgba(220, 38, 38, 0.05) 0%,
        rgba(255, 255, 255, 0.8) 30%,
        rgba(255, 255, 255, 1) 70%,
        rgba(220, 38, 38, 0.05) 100%
    ) !important;
}

/* Perbaikan untuk hero shapes di light mode */
[data-theme="light"] .shape {
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08), transparent) !important;
    opacity: 0.15 !important;
}

/* Perbaikan untuk floating items di light mode */
[data-theme="light"] .floating-item {
    background: rgba(220, 38, 38, 0.08) !important;
    border: 2px solid rgba(220, 38, 38, 0.15) !important;
}

/* Perbaikan untuk particles di light mode */
[data-theme="light"] .particles {
    opacity: 0.5 !important;
}

/* Pastikan body background di light mode benar */
[data-theme="light"] body {
    background: var(--dark) !important; /* --dark di light mode = putih */
    color: var(--light) !important; /* --light di light mode = hitam */
}

/* Override untuk hero section di light mode - PASTIKAN INI DIPAKAI */
html[data-theme="light"] .hero-section {
    background: linear-gradient(135deg, #ffffff, #f8fafc) !important;
    background-color: #ffffff !important;
}

/* Tambahkan important untuk memastikan override */
[data-theme="light"] .hero-section {
    background: linear-gradient(135deg, #ffffff, #f8fafc) !important;
    background-color: #ffffff !important;
}

/* Perbaikan untuk section backgrounds di light mode */
[data-theme="light"] .about-section,
[data-theme="light"] .technology-section,
[data-theme="light"] .structure-section,
[data-theme="light"] .contact-section {
    background: var(--dark) !important; /* --dark di light mode = putih */
}

[data-theme="light"] .services-section,
[data-theme="light"] .system-section,
[data-theme="light"] .projects-section {
    background: var(--dark-light) !important; /* --dark-light di light mode = light gray */
}

/* Perbaikan untuk card backgrounds di light mode */
[data-theme="light"] .service-card,
[data-theme="light"] .tech-card,
[data-theme="light"] .system-card,
[data-theme="light"] .contact-card,
[data-theme="light"] .stat-card {
    background: var(--card-bg) !important; /* --card-bg di light mode = putih */
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Perbaikan untuk text colors di light mode */
[data-theme="light"] .hero-title,
[data-theme="light"] .section-title,
[data-theme="light"] .card h3,
[data-theme="light"] .service-card h3,
[data-theme="light"] .tech-card h3,
[data-theme="light"] .system-card h3,
[data-theme="light"] .stat-item h3 {
    color: var(--light) !important; /* --light di light mode = hitam */
}