:root {
    --primary-color: #005f6b;
    /* Deep Teal */
    --primary-dark: #00434d;
    --accent-color: #f2a900;
    /* Solar Gold */
    --accent-light: #ffc845;
    --text-color: #2c3e50;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    /* Headings */
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* Body Text */
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 50px;
    /* Adjust based on logo aspect ratio */
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-contact {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-contact:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 95, 107, 0.2);
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--text-color);
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-color);
    font-size: 0.85rem;
}

.lang-btn:hover {
    background: var(--text-color);
    color: var(--white);
}

.nav-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    display: inline-block;
    background: var(--primary-color);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: var(--white);
    font-size: 0.85rem;
    text-decoration: none;
}

.login-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 95, 107, 0.2);
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--text-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background: url('../img/hero-bg.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Offset for fixed nav */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 40, 45, 0.85) 0%, rgba(0, 40, 45, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 1000px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 20px;
    border: 1px solid rgba(242, 169, 0, 0.3);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

/* Adjust font size for Indonesian to prevent wrapping/layout shift */
[data-lang="id"] .hero h1 {
    font-size: 3.5rem;
}

.highlight {
    color: var(--accent-light);
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-color);
    color: #002e33;
    border: none;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-enquiry {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    opacity: 1;
}

.btn-enquiry:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
    border-color: var(--accent-color);
}

/* Platforms Section */
.services.dark-section {
    padding: 120px 0;
    background: var(--primary-color);
    color: var(--white);
}

.dark-section .section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: var(--white);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.platform-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    color: var(--text-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.platform-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.platform-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.platform-card:hover .platform-image img {
    transform: scale(1.1);
}

.platform-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.platform-type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.platform-card h3 {
    font-size: 1.5rem;
    line-height: 1.25;
    color: var(--primary-dark);
}

.platform-card p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .dark-section .section-header h2 {
        font-size: 2.5rem;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }
}

/* Identity Section */
.identity {
    padding: 100px 0;
    background-color: var(--white);
}

.identity-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.identity-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.identity-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-desc {
    font-weight: 500;
    color: var(--primary-dark);
}

.stewardship-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.stewardship-img:hover {
    transform: scale(1.02);
}

/* Approach Section */
.approach {
    padding: 100px 0;
    background-color: var(--white);
}

.approach-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.approach-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.approach-list {
    list-style: none;
    margin-bottom: 30px;
}

.approach-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.approach-list li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.approach-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.approach-img:hover {
    transform: scale(1.02);
}

@media screen and (max-width: 900px) {
    .approach-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approach-image {
        order: 2;
    }
}



.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.info-item svg {
    color: var(--primary-color);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 95, 107, 0.1);
}

/* Private Enquiries Section */
.contact {
    padding: 100px 0;
    background: var(--primary-color) !important;
    color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: var(--white);
    line-height: 1.8;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 95, 107, 0.1);
}

.contact-form button {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 60px 0;
    }
}

/* Footer */
/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    height: 80px;
    margin-bottom: 5px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    opacity: 0.9;
    font-size: 1rem;
    color: var(--white);
    max-width: 300px;
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: #dfdfdf;
    line-height: 1.5;
    opacity: 0.5;
    max-width: 400px;
    margin: 0;
}

.footer-right {
    display: flex;
    justify-content: center;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
    text-align: left;
}

.footer-links a {
    color: #aebdc0;
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Responsiveness */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        padding: 20px 0 30px;
        margin-left: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .nav-btns {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: auto;
        justify-content: center;
        gap: 15px;
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        transform: none;
        transition: none;
        margin-top: 20px;
    }

    .nav-btns-item {
        list-style: none;
    }

    .nav-toggle {
        display: block;
    }

    .navbar {
        backdrop-filter: none;
        background: #ffffff;
    }

    /* Hide desktop nav-btns on mobile */
    .nav-container>.nav-btns {
        display: none;
    }

    .nav-menu .nav-btns-mobile {
        display: flex;
        gap: 15px;
        justify-content: center;
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .identity-container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand p,
    .footer-disclaimer p {
        max-width: 100%;
    }

    .footer-right {
        justify-content: flex-start;
    }
}

.footer-social {
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    margin-top: 5px;
    margin-bottom: 10;
}

/* Login Page Styles */
.login-body {
    background: url('../img/hero-bg.png') no-repeat center center/cover;
    height: 100vh;
    width: 100%;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 40, 45, 0.9) 0%, rgba(0, 95, 107, 0.7) 100%);
    z-index: 1;
}

.login-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.login-header h2 {
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.login-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.login-form .form-group label {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.login-form .form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.login-form .form-group input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.login-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    accent-color: var(--accent-color);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.remember-me label {
    cursor: pointer;
}

.forgot-pass {
    color: var(--accent-light);
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.forgot-pass:hover {
    opacity: 0.8;
    color: var(--accent-color);
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border-radius: 12px;
    background: var(--accent-color);
    color: #002e33;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid transparent;
}

.btn-block:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 169, 0, 0.3);
}

.login-footer {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.login-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.login-footer a {
    color: var(--accent-light);
    font-weight: 600;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem;
    font-weight: 500 !important;
    margin-top: 12px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #ffffff !important;
}

@media screen and (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }
}

/* Dashboard Styles */
.dashboard-body {
    background-color: #f4f7f6;
    height: 100vh;
    overflow: hidden;
}

.dashboard-layout {
    display: flex;
    height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background-color: var(--primary-dark);
    color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: all 0.3s ease;
}

.sidebar-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.sidebar-logo {
    height: 50px;
    filter: brightness(0) invert(1);
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.sidebar-nav .icon {
    margin-right: 12px;
    font-size: 1.2rem;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #ff6b6b !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.logout-btn:hover {
    background-color: rgba(255, 107, 107, 0.1);
}

/* Main Content */
.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    background-color: #f8f9fa;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.user-welcome h1 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.user-welcome p {
    color: #7f8c8d;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon.agri {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.stat-icon.energy {
    background-color: #e3f2fd;
    color: #1565c0;
}

.stat-icon.hospitality {
    background-color: #fff3e0;
    color: #ef6c00;
}

.stat-icon.total {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.stat-info h3 {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.stat-trend {
    font-size: 0.85rem;
    font-weight: 500;
}

.stat-trend.positive {
    color: #27ae60;
}

.stat-trend.neutral {
    color: #7f8c8d;
}

/* Content Section */
.content-section {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-time {
    font-size: 0.8rem;
    color: #95a5a6;
}

/* Responsive Dashboard */
@media screen and (max-width: 768px) {
    .dashboard-layout {
        flex-direction: column;
        height: auto;
    }

    .sidebar {
        width: 100%;
        height: auto;
        padding: 15px;
    }

    .sidebar-header {
        border: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sidebar-logo {
        height: 30px;
    }

    .sidebar-nav {
        display: none;
        /* Can be toggled with JS in future */
    }

    .sidebar-footer {
        display: none;
    }

    .main-content {
        padding: 20px;
    }
}

/* Language Toggle Logic */
body[data-lang="en"] .lang-id {
    display: none !important;
}

body[data-lang="id"] .lang-en {
    display: none !important;
}