
/* Admin Styles */
/* Additional Admin Styles */
.btn-link {
    background: none;
    border: none;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
}

.btn-link:hover {
    text-decoration: underline;
    color: #2980b9;
}

/* Form improvements */
.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Image preview styles */
#imagePreview, #fileInfo {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* File info styles */
#fileInfo p {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

/* Responsive table improvements */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.875rem;
    }

    .btn-group .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }

    .badge {
        font-size: 0.65em;
    }
}

/* Modal improvements for file upload */
.modal-backdrop {
    z-index: 1040 !important;
}

.modal {
    z-index: 1050 !important;
}

/* Dashboard improvements */
.dashboard-content .card {
    margin-bottom: 1.5rem;
}

.dashboard-content .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Filter form improvements */
.form-select-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Alert dismissible */
.alert-dismissible {
    padding-right: 3rem;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}

/* Pagination center */
.pagination {
    justify-content: center;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
}

/* Form validation */
.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Card hover effects */
.card {
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Sidebar active state improvements */
.nav-item.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Loading state for buttons */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
:root {
    --sidebar-width: 260px;
    --header-height: 70px;
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-primary: #333;
    --text-secondary: #666;
    --background-color: #f8f9fa;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
}

.admin-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
    width: var(--sidebar-width);
    background-color: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
}

.admin-sidebar.collapsed {
    margin-left: calc(var(--sidebar-width) * -1);
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.sidebar-header p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.sidebar-nav {
    padding: 1rem 0;
}

.nav-section {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.nav-section h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: var(--accent-color);
}

.nav-item.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border-left-color: var(--accent-color);
}

.nav-item i {
    width: 20px;
    text-align: center;
}

/* Main Content */
.admin-main {
    flex: 1;
    margin-left: var(--sidebar-width);
    transition: all 0.3s ease;
}

.admin-main.expanded {
    margin-left: 0;
}

.admin-header {
    height: var(--header-height);
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidebar-toggle {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-secondary);
    cursor: pointer;
    display: none;
}

.admin-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.user-info i {
    font-size: 1.25rem;
}

/* Content Area */
.admin-content {
    padding: 1.5rem;
    min-height: calc(100vh - var(--header-height));
}

/* Cards */
.card {
    background-color: white;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: white;
    border-radius: 10px 10px 0 0;
}

.card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-card:nth-child(1) .stat-icon { background-color: #3498db; }
.stat-card:nth-child(2) .stat-icon { background-color: #2ecc71; }
.stat-card:nth-child(3) .stat-icon { background-color: #9b59b6; }
.stat-card:nth-child(4) .stat-icon { background-color: #e74c3c; }

.stat-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.stat-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.875rem;
}

/* Forms */
.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-control, .form-select {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Tables */
.table {
    margin-bottom: 0;
}

.table th {
    font-weight: 600;
    color: var(--text-primary);
    border-top: none;
    border-bottom-width: 1px;
}

.table td {
    vertical-align: middle;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-warning {
    background-color: var(--warning-color);
    color: #212529;
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
}

.btn-success {
    background-color: var(--success-color);
    color: white;
}

.btn-group .btn {
    padding: 0.375rem 0.75rem;
}

/* Badges */
.badge {
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 500;
    border-radius: 4px;
}

/* Alerts */
.alert {
    border-radius: 8px;
    border: none;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert i {
    font-size: 1.25rem;
}

/* Pagination */
.pagination {
    margin-bottom: 0;
}

.page-link {
    border: 1px solid var(--border-color);
    color: var(--accent-color);
}

.page-item.active .page-link {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Responsive */
@media (max-width: 992px) {
    .admin-sidebar {
        margin-left: calc(var(--sidebar-width) * -1);
    }

    .admin-sidebar.collapsed {
        margin-left: 0;
    }

    .admin-main {
        margin-left: 0;
    }

    .sidebar-toggle {
        display: block;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .admin-content {
        padding: 1rem;
    }

    .card-header h3 {
        font-size: 1.125rem;
    }
}

/* Contact Page Styles */
/* SIMAKSI Tabs Styling */
.simaksi-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
    padding: 0;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.simaksi-type-tab {
    background: #f8f9fa;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    flex: 1;
    text-align: center;
}

.simaksi-type-tab:hover {
    background: #e9ecef;
    color: #2c5aa0;
}

.simaksi-type-tab.active {
    background: #fff;
    color: #2c5aa0;
    border-bottom-color: #2c5aa0;
    font-weight: 600;
}

/* SIMAKSI Form Container */
.simaksi-form-container {
    margin-top: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    background: #fff;
    padding: 20px;
}

.simaksi-form {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.simaksi-form.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Info Card Styling */
.form-info-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.form-info-card h3 {
    color: #2c5aa0;
    margin-bottom: 10px;
}

.form-info-card p {
    color: #666;
    margin-bottom: 15px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

.whatsapp-btn i {
    margin-right: 8px;
}


.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('/images/contact-hero.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Tabs */
.contact-tabs-section {
    background: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-tabs-section.sticky {
    top: 0;
}

.contact-tabs {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    overflow-x: auto;
}

.contact-tab-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.contact-tab-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.contact-tab-button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Tab Contents */
.contact-content-section {
    padding: 3rem 0;
}

.contact-tab-content {
    display: none;
}

.contact-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tab-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tab-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Info */
.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Social Media */
.social-media h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 50px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input.is-invalid,
.form-group textarea.is-invalid,
.form-group select.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Form Checkboxes */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-checkbox input {
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.form-checkboxes {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

/* Complaint Form */
.complaint-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

/* SIMAKSI Styles */
.simaksi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .simaksi-content {
        grid-template-columns: 1fr;
    }
}

.simaksi-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.simaksi-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.simaksi-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.simaksi-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.simaksi-card .card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.simaksi-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.simaksi-card ul {
    list-style: none;
    padding: 0;
}

.simaksi-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.simaksi-card li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Form Options */
.simaksi-forms h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.form-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-option i:first-child {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.form-option span {
    flex: 1;
    margin: 0 1rem;
    font-weight: 500;
}

.simaksi-note {
    background: #f0f7ff;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.simaksi-note .note-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.note-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* FAQ Styles */
.faq-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Documents Section */
.documents-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.document-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.document-item i:first-child {
    font-size: 2rem;
    color: #e74c3c;
}

.document-info {
    flex: 1;
}

.document-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.document-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Survey Section */
.survey-section {
    margin-top: 2rem;
}

.survey-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.survey-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.survey-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.survey-content p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.survey-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #667eea;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.survey-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .tab-header h2 {
        font-size: 2rem;
    }

    .contact-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .contact-tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .survey-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-tab-button span {
        display: none;
    }

    .contact-tab-button i {
        margin: 0;
    }

    .contact-tab-button {
        width: 50px;
        height: 50px;
        justify-content: center;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('/images/contact-hero.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Tabs */
.contact-tabs-section {
    background: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-tabs-section.sticky {
    top: 0;
}

.contact-tabs {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    overflow-x: auto;
}

.contact-tab-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.contact-tab-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.contact-tab-button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Tab Contents */
.contact-content-section {
    padding: 3rem 0;
}

.contact-tab-content {
    display: none;
}

.contact-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tab-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tab-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Info */
.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Social Media */
.social-media h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 50px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input.is-invalid,
.form-group textarea.is-invalid,
.form-group select.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Form Checkboxes */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-checkbox input {
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.form-checkboxes {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

/* Complaint Form */
.complaint-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

/* SIMAKSI Styles */
.simaksi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .simaksi-content {
        grid-template-columns: 1fr;
    }
}

.simaksi-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.simaksi-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.simaksi-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.simaksi-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.simaksi-card .card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.simaksi-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.simaksi-card ul {
    list-style: none;
    padding: 0;
}

.simaksi-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.simaksi-card li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Form Options */
.simaksi-forms h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.form-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-option i:first-child {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.form-option span {
    flex: 1;
    margin: 0 1rem;
    font-weight: 500;
}

.simaksi-note {
    background: #f0f7ff;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.simaksi-note .note-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.note-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* FAQ Styles */
.faq-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Documents Section */
.documents-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.document-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.document-item i:first-child {
    font-size: 2rem;
    color: #e74c3c;
}

.document-info {
    flex: 1;
}

.document-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.document-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Survey Section */
.survey-section {
    margin-top: 2rem;
}

.survey-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.survey-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.survey-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.survey-content p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.survey-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #667eea;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.survey-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .tab-header h2 {
        font-size: 2rem;
    }

    .contact-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .contact-tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .survey-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-tab-button span {
        display: none;
    }

    .contact-tab-button i {
        margin: 0;
    }

    .contact-tab-button {
        width: 50px;
        height: 50px;
        justify-content: center;
    }
}

/* Gallery Hero Section */
.gallery-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('/public/images/hero-image.JPG') center/cover no-repeat;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.gallery-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.gallery-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Gallery Tabs */
.gallery-tabs-section {
    background: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-tabs-section.sticky {
    top: 0;
}

.gallery-tabs {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
}

.gallery-tab-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-tab-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.gallery-tab-button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Tab Header */
.tab-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.tab-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tab-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Gallery Grid - FIXED FOR PORTRAIT IMAGES */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    display: block !important;
}

.gallery-item.hidden {
    opacity: 0;
    transform: translateY(20px);
    display: none !important;
}

.gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-10px);
}

.gallery-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Fix for portrait images */
.gallery-image-container.portrait .gallery-image {
    object-fit: contain;
    background-color: #f5f5f5;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
}

.view-image-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.view-image-btn:hover {
    background: var(--primary-dark);
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.gallery-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.gallery-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.gallery-card-content p.description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.gallery-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    padding: 3rem 0;
}

/* Search Section */
.search-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-container {
    flex: 1;
    position: relative;
    min-width: 300px;
}

.search-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.search-container input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.filter-select select {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    min-width: 200px;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.document-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.document-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.document-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #e74c3c;
}

.document-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.document-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.document-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.document-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.preview-btn, .download-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.preview-btn {
    background: #f8f9fa;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.preview-btn:hover {
    background: #e9ecef;
}

.download-btn {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.download-btn:hover {
    background: var(--primary-dark);
}

.document-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.category-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Documents Info */
.documents-info {
    margin-top: 3rem;
}

.info-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.info-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    border-radius: 15px;
    position: relative;
    animation: modalFadeIn 0.3s;
    max-width: 90%;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 1001;
}

.close-modal:hover {
    color: #000;
}

.image-modal .modal-content {
    max-width: 900px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.image-modal .modal-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    max-height: 80vh;
}

.image-container {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 80vh;
    overflow: hidden;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.image-details {
    padding: 2rem;
    background: white;
    overflow-y: auto;
    max-height: 80vh;
}

.image-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.image-details p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.image-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.image-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.image-actions .cta-button {
    flex: 1;
}

/* Document Preview Modal */
.document-preview-modal .modal-content {
    max-width: 1000px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.document-preview-modal .modal-body {
    height: 600px;
}

.document-preview-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.document-preview-modal .modal-footer {
    padding: 1.5rem;
    background: #f8f9fa;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-hero-content h1 {
        font-size: 2.5rem;
    }

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

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .image-modal .modal-body {
        grid-template-columns: 1fr;
        height: auto;
    }

    .image-container {
        height: 300px;
        max-height: 50vh;
    }

    .image-details {
        max-height: none;
    }

    .gallery-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }

    .search-section {
        flex-direction: column;
    }

    .search-container {
        min-width: 100%;
    }

    .filter-select select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .tab-header h2 {
        font-size: 2rem;
    }

    .document-header {
        flex-direction: column;
    }

    .document-icon {
        width: 50px;
        height: 50px;
    }
}
/* Attractions Page Specific Styles */
/* Published Messages & Complaints Section */
.published-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.published-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .published-content {
        grid-template-columns: 1fr;
    }
}

.messages-list h3,
.complaints-list h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.message-item,
.complaint-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.message-item:hover,
.complaint-item:hover {
    transform: translateY(-2px);
}

.message-header,
.complaint-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.message-header strong,
.complaint-header strong {
    font-size: 1.1rem;
    color: var(--text-primary);
    flex: 1;
}

.message-date,
.complaint-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.message-preview,
.complaint-preview {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.message-footer,
.complaint-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.message-category,
.complaint-category {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 50px;
}

.complaint-status {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 500;
}

.complaint-status.pending {
    background: #fff3cd;
    color: #856404;
}

.complaint-status.processed {
    background: #cce5ff;
    color: #004085;
}

.complaint-status.resolved {
    background: #d4edda;
    color: #155724;
}

.complaint-status.rejected {
    background: #f8d7da;
    color: #721c24;
}

.published-cta {
    text-align: center;
    margin-top: 2rem;
}

.text-muted {
    color: #6c757d !important;
    font-style: italic;
    text-align: center;
    padding: 2rem;
}
/* Tambahkan di bagian atas style.css setelah import font */
:root {
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --secondary-color: #ff9800;
    --background-color: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Tambahkan style untuk modal (jika belum ada) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
}

.close-modal:hover {
    background: #f0f0f0;
}

/* Responsive container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* PERBAIKAN: Styles untuk tombol modal vertikal */
.modal-actions-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.modal-actions-vertical .cta-button {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
}

.modal-actions-vertical .whatsapp-btn {
    background: #25D366;
    color: white;
}

.modal-actions-vertical .whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.modal-actions-vertical .share-btn {
    background: var(--primary-color);
    color: white;
}

.modal-actions-vertical .share-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.modal-actions-vertical .map-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.modal-actions-vertical .map-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hapus styles lama untuk modal-actions */
.modal-actions {
    display: none;
}

/* PERBAIKAN: Responsive design untuk modal */
@media (max-width: 768px) {
    .destination-modal-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .destination-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-actions-vertical .cta-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .destination-modal .modal-content {
        margin: 1rem;
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .modal-actions-vertical .cta-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .modal-actions-vertical .cta-button span {
        flex: 1;
    }
}

/* Animasi untuk tombol */
.modal-actions-vertical .cta-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-actions-vertical .cta-button:active {
    transform: translateY(0);
}

/* Loading state untuk tombol share */
.modal-actions-vertical .share-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.modal-actions-vertical .share-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.attractions-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.attractions-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.attractions-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.attractions-tabs-section {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.attractions-tabs-section.sticky {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.attractions-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
}

.attraction-tab-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: 2px solid transparent;
    background: var(--background-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.attraction-tab-button:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.attraction-tab-button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.attraction-tab-content {
    display: none;
    padding: 4rem 0;
}

.attraction-tab-content.active {
    display: block;
}

.tab-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tab-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tab-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Styles untuk grid destinasi */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-card.featured {
    border: 2px solid var(--primary-color);
}

.destination-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.destination-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.destination-content {
    padding: 1.5rem;
}

.destination-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.destination-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.destination-highlights {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.destination-actions {
    display: flex;
    gap: 1rem;
}

.detail-btn, .map-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    text-decoration: none;
}

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

.detail-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.map-btn {
    background: var(--background-color);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.map-btn:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

/* Modal styles untuk destinasi */
.destination-modal .modal-content {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

.destination-modal-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.destination-title h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.destination-image {
    border-radius: 15px;
    overflow: hidden;
}

.destination-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-section {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 15px;
}

.detail-section.full-width {
    grid-column: 1 / -1;
}

.detail-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.detail-list, .facilities-list, .attractions-list, .tips-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
}

.label {
    font-weight: 500;
    color: var(--text-dark);
}

.value {
    color: var(--text-light);
}

.facility-item, .attraction-item, .tip-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.facility-item i, .tip-item i {
    color: var(--success-color);
}

.attraction-item i {
    color: var(--accent-color);
}

.activities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.activity-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Styles untuk konten penelitian */
.research-content {
    max-width: 1000px;
    margin: 0 auto;
}

.research-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 20px;
}

.research-icon-main {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.research-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.research-card:hover {
    transform: translateY(-5px);
}

.research-card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.research-card h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.research-card ul {
    list-style: none;
    padding: 0;
}

.research-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.research-card li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.research-cta {
    background: var(--background-color);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

/* Styles untuk konten magang */
.internship-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.internship-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.requirements-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.requirement-list, .benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirement-item, .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.requirement-item i {
    color: var(--success-color);
}

.benefit-item i {
    color: var(--primary-color);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: start;
}

.timeline-date {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Styles untuk kegiatan */
.activities-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.activity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-image {
    position: relative;
    height: 200px;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.activity-content {
    padding: 1.5rem;
}

.activity-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.activity-content h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.activity-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.activity-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.upcoming-events {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 15px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.event-date {
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 10px;
}

.event-day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.event-month {
    font-size: 0.9rem;
}

.event-details h5 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.event-register {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.event-register:hover {
    background: var(--primary-dark);
}

/* Download Modal Styles */
.download-modal .modal-content {
    max-width: 700px;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.download-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--background-color);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.download-option:hover {
    transform: translateY(-2px);
}

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

.option-content {
    flex: 1;
}

.option-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.option-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.download-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn:hover {
    background: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .attractions-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-modal-header {
        grid-template-columns: 1fr;
    }

    .destination-details-grid {
        grid-template-columns: 1fr;
    }

    .research-grid {
        grid-template-columns: 1fr;
    }

    .internship-hero {
        grid-template-columns: 1fr;
    }

    .requirements-section {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .event-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modal-actions {
        flex-direction: column;
    }

    .attractions-hero-content h1 {
        font-size: 2rem;
    }

    .attractions-hero-content p {
        font-size: 1rem;
    }

    .tab-header h2 {
        font-size: 1.8rem;
    }

    .destination-actions {
        flex-direction: column;
    }

    .download-option {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .attractions-hero {
        padding: 80px 0 40px;
    }

    .attraction-tab-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .destination-content {
        padding: 1rem;
    }

    .research-card {
        padding: 1.5rem;
    }

    .activity-content {
        padding: 1rem;
    }
}
/* Informasi Kawasan Styles */
.information-section {
    margin-bottom: 4rem;
}

.info-card-large {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.info-card-large .info-icon {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.5rem;
}

.info-card-large .info-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Struktur Grid */
.structure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.structure-item h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.structure-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.structure-unit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.structure-unit:hover {
    transform: translateY(-2px);
}

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

.structure-unit div {
    display: flex;
    flex-direction: column;
}

.structure-unit strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.structure-unit span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Resort Grid */
.resort-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.resort-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.resort-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.resort-item:hover i {
    color: white;
}

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

/* Map Section */
.map-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.map-container-large {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-frame {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.map-image:hover {
    transform: scale(1.02);
}

.map-legend {
    padding: 1.5rem;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* Legal Section */
.legal-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.legal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.legal-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.legal-card:hover {
    transform: translateY(-5px);
}

.legal-icon {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.5rem;
}

.legal-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.legal-content p {
    line-height: 1.6;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-card-large {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .structure-grid {
        grid-template-columns: 1fr;
    }

    .resort-grid {
        grid-template-columns: 1fr;
    }

    .legal-cards {
        grid-template-columns: 1fr;
    }

    .map-legend {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .map-frame {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .information-section {
        margin-bottom: 2rem;
    }

    .info-card-large {
        padding: 1.5rem;
    }

    .legal-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
}
/* About Page Styles - Timeline Sejarah */
.about-hero {
    background-size: cover;
    background: linear-gradient(rgba(45, 80, 22, 0.8), rgba(45, 80, 22, 0.9)) url('/public/images/hero-image.JPG.jpg') center;
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Tabs Section */
.about-tabs-section {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 70px;
    z-index: 900;
    transition: all 0.3s;
}

.about-tabs-section.sticky {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-tabs {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    padding: 0;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-button:hover {
    color: var(--primary);
}

.tab-button.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Content Section */
.about-content-section {
    padding: 60px 0;
}

.content-header {
    text-align: center;
    margin-bottom: 40px;
}

.content-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.content-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Layout Timeline Sejarah yang Elegan */
.history-content {
    margin-bottom: 40px;
}

.history-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.history-text-section {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.history-visuals-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.visual-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(45, 80, 22, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 0;
    margin-bottom: 15px;
}

.card-header h4 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.map-badge, .photo-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(45, 80, 22, 0.08);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.map-badge i, .photo-badge i {
    font-size: 0.7rem;
}

.map-container, .photo-container {
    padding: 0 25px 25px;
}

.map-frame, .photo-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.map-frame img, .photo-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.map-frame:hover img, .photo-frame:hover img {
    transform: scale(1.02);
}

.map-overlay, .photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 20px 15px 12px;
}

.map-year {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.photo-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Year Header yang Lebih Elegan */
.year-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(45, 80, 22, 0.1);
}

.year-header h3 {
    font-size: 2rem;
    color: var(--primary);
    margin: 0;
    font-weight: 700;
}

.year-badge {
    background: linear-gradient(135deg, var(--accent), #e69138);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(244, 162, 97, 0.3);
}

.history-description {
    margin-bottom: 30px;
}

.history-description p {
    margin-bottom: 18px;
    line-height: 1.7;
    color: var(--text);
    font-size: 1.05rem;
}

.keypoint {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(45, 80, 22, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
    transition: background-color 0.3s ease;
}

.keypoint:hover {
    background: rgba(45, 80, 22, 0.08);
}

.keypoint i {
    color: var(--primary);
    margin-top: 2px;
    font-size: 1rem;
}

.keypoint span {
    color: var(--text);
    line-height: 1.5;
}

/* Timeline Navigation yang Lebih Elegan */
.timeline-navigation {
    margin-bottom: 40px;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.timeline-scroll {
    overflow-x: auto;
    padding-bottom: 10px;
}

.timeline-years {
    display: flex;
    gap: 12px;
    min-width: max-content;
    padding: 5px;
}

.year-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: var(--white);
    border: 2px solid rgba(45, 80, 22, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    text-decoration: none;
}

.year-button:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.year-button.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.year-number {
    font-size: 1.3rem;
    font-weight: 700;
}

.year-label {
    font-size: 0.8rem;
    text-align: center;
    font-weight: 500;
}

/* Timeline Progress yang Lebih Elegan */
.timeline-progress {
    margin-top: 40px;
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.progress-bar {
    height: 10px;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.progress-years {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Content Grid untuk tab lain */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.content-grid.full-width {
    grid-template-columns: 1fr;
}

.content-text {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.content-image .image-frame {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-content h4 {
    margin-bottom: 8px;
    color: var(--primary);
}

/* Vision Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
}

.vision-card {
    padding: 30px;
    background: var(--light);
    border-radius: var(--radius);
    text-align: center;
    border-top: 5px solid var(--primary);
}

.vision-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.vision-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Org Chart */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.org-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 250px;
}

.org-item.main {
    background: var(--primary);
    color: var(--white);
}

.org-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.org-item.main .org-avatar {
    background: var(--accent);
}

.org-info h4 {
    margin-bottom: 5px;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #e69138;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design untuk Layout Baru */
@media (max-width: 1024px) {
    .history-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .history-visuals-section {
        order: -1;
    }

    .history-text-section {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .history-grid {
        gap: 25px;
    }

    .history-text-section {
        padding: 20px;
    }

    .year-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .year-header h3 {
        font-size: 1.7rem;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .timeline-years {
        gap: 8px;
    }

    .year-button {
        padding: 12px 16px;
        min-width: 85px;
    }

    .year-number {
        font-size: 1.1rem;
    }

    .year-label {
        font-size: 0.75rem;
    }

    .map-container, .photo-container {
        padding: 0 20px 20px;
    }

    .about-tabs {
        justify-content: flex-start;
    }

    .about-hero {
        padding: 120px 0 80px;
    }

    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .tab-button {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .org-level {
        flex-direction: column;
        align-items: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .history-text-section {
        padding: 18px;
    }

    .year-header h3 {
        font-size: 1.5rem;
    }

    .history-description p {
        font-size: 1rem;
    }

    .timeline-navigation {
        padding: 15px;
    }

    .timeline-progress {
        padding: 20px;
    }

    .year-button {
        padding: 10px 12px;
        min-width: 75px;
    }

    .year-number {
        font-size: 1rem;
    }
}
/* Layout Timeline Sejarah */
.history-content {
    margin-bottom: 40px;
}

.history-detail {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.history-map-section {
    margin-bottom: 30px;
}

.history-map-section h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: center;
}

.history-map-section .map-container {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.history-map-section .map-frame {
    position: relative;
}

.history-map-section .map-frame img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 300px;
    background: #f8f9fa;
}

.history-map-section .map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* History Visuals untuk foto lawas */
.history-visuals {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.history-visuals .old-photo {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.history-visuals .photo-frame {
    position: relative;
}

.history-visuals .photo-frame img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 250px;
    background: #f8f9fa;
}

.history-visuals .photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.history-visuals .photo-caption i {
    color: var(--accent);
}

/* Year Header */
.year-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

.year-badge {
    background-color: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.history-description {
    margin-bottom: 25px;
}

.history-description p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.keypoint {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

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

/* Placeholder untuk gambar yang gagal dimuat */
.map-frame img:before,
.photo-frame img:before {
    content: "Gambar tidak tersedia";
    display: block;
    background: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 20px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .year-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .history-detail {
        padding: 20px;
    }

    .history-map-section h4 {
        font-size: 1.1rem;
    }
}
/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(45, 80, 22, 0.8), rgba(45, 80, 22, 0.9)), url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Tabs Section */
.about-tabs-section {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 70px;
    z-index: 900;
    transition: all 0.3s;
}

.about-tabs-section.sticky {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-tabs {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    padding: 0;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-button:hover {
    color: var(--primary);
}

.tab-button.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Content Section */
.about-content-section {
    padding: 60px 0;
}

.content-header {
    text-align: center;
    margin-bottom: 40px;
}

.content-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.content-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Timeline Navigation */
.timeline-navigation {
    margin-bottom: 40px;
}

.timeline-scroll {
    overflow-x: auto;
    padding-bottom: 10px;
}

.timeline-years {
    display: flex;
    gap: 15px;
    min-width: max-content;
}

.year-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    min-width: 100px;
}

.year-button:hover {
    border-color: var(--secondary);
}

.year-button.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.year-number {
    font-size: 1.2rem;
    font-weight: 700;
}

.year-label {
    font-size: 0.85rem;
    text-align: center;
}

/* History Content */
.history-content {
    margin-bottom: 40px;
}

.history-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.history-text {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.year-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

.year-badge {
    background-color: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.history-description {
    margin-bottom: 25px;
}

.history-description p {
    margin-bottom: 15px;
}

.keypoint {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.keypoint i {
    color: var(--primary);
    margin-top: 3px;
}

/* History Visuals */
.history-visuals {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-container, .old-photo {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.map-frame, .photo-frame {
    position: relative;
}

.map-frame img, .photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay, .photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.photo-caption i {
    color: var(--accent);
}

/* Timeline Progress */
.timeline-progress {
    margin-top: 40px;
}

.progress-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary);
    transition: width 0.5s ease;
}

.progress-years {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Content Grid untuk tab lain */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.content-grid.full-width {
    grid-template-columns: 1fr;
}

.content-text {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.content-image .image-frame {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-content h4 {
    margin-bottom: 8px;
    color: var(--primary);
}

/* Vision Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
}

.vision-card {
    padding: 30px;
    background: var(--light);
    border-radius: var(--radius);
    text-align: center;
    border-top: 5px solid var(--primary);
}

.vision-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.vision-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Org Chart */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.org-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 250px;
}

.org-item.main {
    background: var(--primary);
    color: var(--white);
}

.org-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.org-item.main .org-avatar {
    background: var(--accent);
}

.org-info h4 {
    margin-bottom: 5px;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #e69138;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .history-detail, .content-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .content-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about-tabs {
        justify-content: flex-start;
    }

    .about-hero {
        padding: 120px 0 80px;
    }

    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .tab-button {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .org-level {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .year-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .timeline-years {
        gap: 10px;
    }

    .year-button {
        padding: 10px 15px;
        min-width: 80px;
    }

    .year-number {
        font-size: 1rem;
    }

    .year-label {
        font-size: 0.75rem;
    }
}
/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.history-description, .history-keypoints {
    transition: opacity 0.3s ease-in-out;
}

.year-button {
    transition: all 0.3s ease;
}

.year-button.active {
    transform: translateY(-2px);
}
/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(45, 80, 22, 0.8), rgba(45, 80, 22, 0.9)), url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Tabs Section */
.about-tabs-section {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 70px;
    z-index: 900;
    transition: all 0.3s;
}

.about-tabs-section.sticky {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-tabs {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    padding: 0;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-button:hover {
    color: var(--primary);
}

.tab-button.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Content Section */
.about-content-section {
    padding: 60px 0;
}

.content-header {
    text-align: center;
    margin-bottom: 40px;
}

.content-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.content-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Timeline Navigation */
.timeline-navigation {
    margin-bottom: 40px;
}

.timeline-scroll {
    overflow-x: auto;
    padding-bottom: 10px;
}

.timeline-years {
    display: flex;
    gap: 15px;
    min-width: max-content;
}

.year-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    min-width: 100px;
}

.year-button:hover {
    border-color: var(--secondary);
}

.year-button.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.year-number {
    font-size: 1.2rem;
    font-weight: 700;
}

.year-label {
    font-size: 0.85rem;
    text-align: center;
}

/* History Content */
.history-content {
    margin-bottom: 40px;
}

.history-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.history-text {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.year-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

.year-badge {
    background-color: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.history-description {
    margin-bottom: 25px;
}

.history-description p {
    margin-bottom: 15px;
}

.keypoint {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.keypoint i {
    color: var(--primary);
    margin-top: 3px;
}

/* History Visuals */
.history-visuals {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-container, .old-photo {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.map-frame, .photo-frame {
    position: relative;
}

.map-frame img, .photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay, .photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.photo-caption i {
    color: var(--accent);
}

/* Timeline Progress */
.timeline-progress {
    margin-top: 40px;
}

.progress-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary);
    transition: width 0.5s ease;
}

.progress-years {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Content Grid untuk tab lain */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.content-grid.full-width {
    grid-template-columns: 1fr;
}

.content-text {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.content-image .image-frame {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-content h4 {
    margin-bottom: 8px;
    color: var(--primary);
}

/* Vision Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
}

.vision-card {
    padding: 30px;
    background: var(--light);
    border-radius: var(--radius);
    text-align: center;
    border-top: 5px solid var(--primary);
}

.vision-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.vision-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Org Chart */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.org-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 250px;
}

.org-item.main {
    background: var(--primary);
    color: var(--white);
}

.org-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.org-item.main .org-avatar {
    background: var(--accent);
}

.org-info h4 {
    margin-bottom: 5px;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #e69138;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .history-detail, .content-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .content-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about-tabs {
        justify-content: flex-start;
    }

    .about-hero {
        padding: 120px 0 80px;
    }

    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .tab-button {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .org-level {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .year-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .timeline-years {
        gap: 10px;
    }

    .year-button {
        padding: 10px 15px;
        min-width: 80px;
    }

    .year-number {
        font-size: 1rem;
    }

    .year-label {
        font-size: 0.75rem;
    }
}
/* Fix for Year Content Display */
.year-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.year-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease;
}

/* Ensure proper layout for year details */
.year-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.year-visuals {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    position: relative;
}

.map-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}

.map-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.old-photo-container {
    margin-top: 1rem;
}

/* Animation for smooth transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure images are properly sized */
.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive design for year details */
@media (max-width: 968px) {
    .year-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .year-visuals {
        order: -1; /* Put visuals first on mobile */
    }
}

/* Debug styles to ensure elements are visible */
.debug-border {
    border: 1px solid red;
}

/* Make sure content has proper spacing */
.year-text {
    padding-right: 1rem;
}

.year-description p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Style for historical context boxes */
.historical-context {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
    margin-top: 1.5rem;
}

.historical-context h4 {
    color: #e67e22;
    margin-bottom: 0.5rem;
}

.historical-context p {
    color: #7d6608;
    margin: 0;
    line-height: 1.6;
}

/* Detail points styling */
.detail-points {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.detail-points h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.detail-points ul {
    list-style: none;
    padding: 0;
}

.detail-points li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
}

.detail-points li:last-child {
    border-bottom: none;
}

.detail-points strong {
    color: var(--text-dark);
    min-width: 80px;
    margin-right: 1rem;
}
/* Sejarah Timeline Navigation */
.timeline-navigation {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.timeline-years {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.year-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.8rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    text-align: center;
}

.year-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.year-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.25);
}

.year-number {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.year-label {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.2;
}

.year-btn.active .year-label {
    opacity: 1;
}

/* Sejarah Content Area */
.sejarah-content-area {
    position: relative;
    min-height: 500px;
}

.year-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.year-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Overview Content */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.overview-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.timeline-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.highlight-year {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    height: fit-content;
    white-space: nowrap;
}

.highlight-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.quick-facts {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quick-facts h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

.facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.fact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fact-card:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.fact-card:hover i {
    color: white;
}

.fact-content {
    display: flex;
    flex-direction: column;
}

.fact-content strong {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.fact-content span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Year Detail Content */
.year-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.year-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.year-header h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.8rem;
}

.year-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.year-description {
    line-height: 1.7;
}

.year-description p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.detail-points {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.detail-points h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.detail-points ul {
    list-style: none;
    padding: 0;
}

.detail-points li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
}

.detail-points li:last-child {
    border-bottom: none;
}

.detail-points strong {
    color: var(--text-dark);
    min-width: 80px;
    margin-right: 1rem;
}

.historical-context {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
    margin-top: 1.5rem;
}

.historical-context h4 {
    color: #e67e22;
    margin-bottom: 0.5rem;
}

.historical-context p {
    color: #7d6608;
    margin: 0;
}

/* Year Visuals */
.year-visuals {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    position: relative;
}

.map-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}

.map-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.map-frame:hover img {
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.old-photo-container {
    margin-top: 1rem;
}

.image-frame.featured {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.9) 0%, rgba(67, 56, 202, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-frame.featured:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.overlay-content span {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .timeline-years {
        flex-wrap: wrap;
        justify-content: center;
    }

    .year-btn {
        min-width: 70px;
        padding: 0.8rem 0.5rem;
    }

    .overview-grid,
    .year-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .facts-grid {
        grid-template-columns: 1fr;
    }

    .year-header {
        flex-direction: column;
        gap: 1rem;
    }

    .year-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .timeline-navigation {
        padding: 1rem;
    }

    .year-btn {
        min-width: 60px;
        padding: 0.6rem 0.3rem;
    }

    .year-number {
        font-size: 1rem;
    }

    .year-label {
        font-size: 0.7rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
    }

    .fact-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .timeline-years {
        gap: 0.3rem;
    }

    .year-btn {
        min-width: 55px;
        padding: 0.5rem 0.2rem;
    }

    .year-number {
        font-size: 0.9rem;
    }

    .year-label {
        font-size: 0.65rem;
    }
}
/* New History Timeline Styles */
.timeline-navigation {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.timeline-scroll {
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.timeline-years {
    display: flex;
    gap: 0.8rem;
    min-width: max-content;
    padding: 0.5rem 0;
}

.year-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.2rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
}

.year-button:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.year-button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.25);
}

.year-number {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.year-label {
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.2;
}

.year-button.active .year-label {
    opacity: 1;
}

/* History Content Layout */
.history-content {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.history-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.history-text {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.history-visuals {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Year Header */
.year-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.year-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.year-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* History Description */
.history-description {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--text-dark);
    transition: opacity 0.3s ease;
}

.history-description p {
    margin-bottom: 1rem;
}

.history-description p:last-child {
    margin-bottom: 0;
}

/* Key Points */
.history-keypoints {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: opacity 0.3s ease;
}

.keypoint {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--primary-color);
}

.keypoint i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.keypoint span {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Map and Photo Styles */
.map-container {
    height: 60%;
    border-bottom: 1px solid var(--border-color);
}

.map-frame {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.map-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.map-frame:hover img {
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.old-photo {
    height: 40%;
}

.photo-frame {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-frame:hover img {
    transform: scale(1.02);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem 1rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.photo-caption i {
    font-size: 1rem;
}

.photo-caption span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Timeline Progress */
.timeline-progress {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.progress-bar {
    height: 8px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-years {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design for History Section */
@media (max-width: 968px) {
    .history-detail {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .history-text {
        padding: 2rem;
        order: 2;
    }

    .history-visuals {
        order: 1;
        height: 400px;
    }

    .map-container {
        height: 60%;
    }

    .old-photo {
        height: 40%;
    }

    .timeline-years {
        gap: 0.5rem;
    }

    .year-button {
        min-width: 85px;
        padding: 0.8rem 0.5rem;
    }

    .year-number {
        font-size: 1.1rem;
    }

    .year-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .timeline-navigation {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .history-text {
        padding: 1.5rem;
    }

    .year-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .year-header h3 {
        font-size: 1.7rem;
    }

    .history-visuals {
        height: 350px;
    }

    .keypoint {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .timeline-years {
        gap: 0.3rem;
    }

    .year-button {
        min-width: 70px;
        padding: 0.6rem 0.3rem;
    }

    .year-number {
        font-size: 1rem;
    }

    .year-label {
        font-size: 0.65rem;
    }

    .history-text {
        padding: 1.2rem;
    }

    .history-visuals {
        height: 300px;
    }

    .map-overlay {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }

    .photo-caption {
        padding: 1rem 0.8rem 0.8rem;
    }

    .photo-caption span {
        font-size: 0.8rem;
    }
}

/* Animation for content transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.history-description,
.history-keypoints {
    animation: fadeInUp 0.5s ease;
}

/* Custom scrollbar for timeline */
.timeline-scroll::-webkit-scrollbar {
    height: 6px;
}

.timeline-scroll::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 3px;
}

.timeline-scroll::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.timeline-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
/* Prevent layout shift */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
/* Improved Tab Transitions - No Jump */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    height: 0;
    overflow: hidden;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    height: auto;
    overflow: visible;
    animation: none; /* Remove any jumping animations */
}

/* Smooth content appearance */
.about-content-section {
    padding: 2rem 0;
    transition: all 0.3s ease;
}

/* Ensure content doesn't jump when tabs change */
.content-grid,
.content-text,
.content-image {
    transition: all 0.3s ease;
}

/* Improved sticky tabs behavior */
.about-tabs-section {
    background: white;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: sticky;
    top: 70px;
    z-index: 100;
    padding: 0.5rem 0;
}

.about-tabs-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
    padding: 0.5rem 0;
}

/* Better scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Prevent layout shift when tabs become sticky */
.about-content-section {
    scroll-margin-top: 80px; /* Account for sticky header */
}

/* Improved tab button transitions */
.tab-button {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 1.2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.tab-button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

/* Smooth animations for content */
.timeline-item,
.info-card,
.mission-item,
.org-item,
.value-item,
.stat-card {
    transition: all 0.4s ease;
}

/* Ensure images don't cause layout shift */
.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Better responsive behavior */
@media (max-width: 968px) {
    .about-tabs-section {
        top: 60px;
    }

    .about-tabs-section.sticky + .about-content-section {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .about-tabs-section {
        top: 60px;
    }

    .about-tabs-section.sticky + .about-content-section {
        margin-top: 60px;
    }

    .tab-content.active {
        animation: none; /* Remove animations on mobile for better performance */
    }
}

/* Consistent spacing */
.content-header {
    text-align: center;
    margin-bottom: 2rem;
    min-height: auto; /* Prevent height changes */
}

/* Ensure consistent card heights */
.info-card,
.zona-item,
.mission-item {
    min-height: auto; /* Let content determine height */
}

/* Smooth loading for images */
.image-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    background: var(--bg-light); /* Placeholder background */
}

.image-frame img {
    transition: opacity 0.3s ease;
}

.image-frame img:not([src]) {
    opacity: 0;
}

.image-frame img[src] {
    opacity: 1;
}
/* About Page Styles - IMPROVED */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0 40px; /* Reduced padding */
    text-align: center;
    position: relative;
}

.about-hero-content h1 {
    font-size: 2.2rem; /* Reduced size */
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.1rem; /* Reduced size */
    opacity: 0.9;
    max-width: 500px; /* Reduced width */
    margin: 0 auto;
    line-height: 1.5;
}

/* Sticky Tabs - IMPROVED */
.about-tabs-section {
    background: white;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: sticky;
    top: 70px; /* Adjusted for better spacing */
    z-index: 100;
    padding: 0.5rem 0; /* Reduced padding */
}

.about-tabs-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); /* Lighter shadow */
    animation: slideDown 0.3s ease;
    padding: 0.5rem 0;
}

/* Adjust content when tabs are sticky */
.about-tabs-section.sticky + .about-content-section {
    margin-top: 70px; /* Reduced margin */
}

.about-tabs {
    display: flex;
    justify-content: center;
    gap: 0.8rem; /* Reduced gap */
    padding: 0.5rem 0; /* Reduced padding */
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 0.4rem; /* Reduced gap */
    padding: 0.8rem 1.2rem; /* Reduced padding */
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px; /* Slightly smaller */
    font-size: 0.9rem; /* Smaller font */
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px); /* Smaller lift */
}

.tab-button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3); /* Lighter shadow */
}

.tab-button i {
    font-size: 1rem; /* Smaller icons */
}

/* Tab Content - IMPROVED */
.about-content-section {
    padding: 2rem 0; /* Reduced padding */
}

.tab-content {
    display: none;
    animation: fadeInUp 0.4s ease; /* Smoother animation */
}

.tab-content.active {
    display: block;
}

.content-header {
    text-align: center;
    margin-bottom: 2rem; /* Reduced margin */
}

.content-header h2 {
    font-size: 2rem; /* Reduced size */
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.content-header p {
    font-size: 1.1rem; /* Reduced size */
    color: var(--text-light);
    line-height: 1.4;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem; /* Reduced gap */
    align-items: start;
}

.content-grid.full-width {
    grid-template-columns: 2fr 1fr;
}

/* Timeline Styles - IMPROVED */
.timeline {
    position: relative;
    padding-left: 1.5rem; /* Reduced padding */
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px; /* Thinner line */
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem; /* Reduced margin */
    padding-left: 1.5rem; /* Reduced padding */
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.4s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.8rem; /* Adjusted position */
    top: 0.4rem;
    width: 10px; /* Smaller dot */
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 2px solid white; /* Thinner border */
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-year {
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.8rem; /* Reduced padding */
    border-radius: 15px; /* Smaller radius */
    font-weight: 600;
    font-size: 0.8rem; /* Smaller font */
    display: inline-block;
    margin-bottom: 0.3rem;
}

.timeline-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    font-size: 1.1rem; /* Smaller font */
    line-height: 1.3;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem; /* Slightly smaller */
}

/* Info Grid Styles - IMPROVED */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem; /* Reduced gap */
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem; /* Reduced gap */
    padding: 1.2rem; /* Reduced padding */
    background: var(--bg-light);
    border-radius: 10px; /* Smaller radius */
    border-left: 3px solid var(--primary-color); /* Thinner border */
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(3px); /* Smaller movement */
}

.info-icon {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem; /* Reduced padding */
    border-radius: 8px; /* Smaller radius */
    font-size: 1rem; /* Smaller icon */
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    font-size: 1rem; /* Smaller font */
}

.info-content p {
    color: var(--text-light);
    line-height: 1.4;
    font-size: 0.9rem; /* Smaller font */
    margin: 0;
}

/* Zona Kawasan - IMPROVED */
.zona-kawasan {
    margin-top: 1.5rem; /* Reduced margin */
}

.zona-kawasan h3 {
    margin-bottom: 1rem; /* Reduced margin */
    font-size: 1.3rem;
}

.zona-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem; /* Reduced gap */
}

.zona-item {
    padding: 1.2rem; /* Reduced padding */
    background: white;
    border-radius: 10px; /* Smaller radius */
    border: 1px solid var(--border-color); /* Thinner border */
    transition: all 0.3s ease;
}

.zona-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-1px); /* Smaller lift */
}

.zona-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.zona-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Image Frame - IMPROVED */
.image-frame {
    border-radius: 12px; /* Smaller radius */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Lighter shadow */
    margin-bottom: 1rem; /* Reduced margin */
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-frame:hover img {
    transform: scale(1.02);
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem; /* Smaller font */
    margin-top: 0.5rem;
}

/* Vision Mission Styles - IMPROVED */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* Reduced gap */
}

.vision-card {
    text-align: center;
    padding: 1.5rem; /* Reduced padding */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px; /* Smaller radius */
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
}

.vision-icon {
    font-size: 2.2rem; /* Smaller icon */
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.vision-card h3 {
    font-size: 1.5rem; /* Smaller font */
    margin-bottom: 0.8rem;
}

.vision-card p {
    font-size: 1rem; /* Smaller font */
    line-height: 1.5;
    opacity: 0.95;
}

.mission-card {
    background: white;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 15px; /* Smaller radius */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Lighter shadow */
}

.mission-icon {
    text-align: center;
    font-size: 2rem; /* Smaller icon */
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.mission-card h3 {
    text-align: center;
    font-size: 1.5rem; /* Smaller font */
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.mission-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem; /* Reduced gap */
}

.mission-item {
    display: flex;
    gap: 1rem; /* Reduced gap */
    align-items: flex-start;
    padding: 1.2rem; /* Reduced padding */
    background: var(--bg-light);
    border-radius: 12px; /* Smaller radius */
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateX(5px); /* Smaller movement */
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mission-number {
    background: var(--primary-color);
    color: white;
    width: 32px; /* Smaller circle */
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem; /* Smaller font */
    flex-shrink: 0;
}

.mission-text h4 {
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    font-size: 1rem; /* Smaller font */
}

.mission-text p {
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
    font-size: 0.9rem; /* Smaller font */
}

/* Values Section - IMPROVED */
.values-section {
    margin-top: 1.5rem; /* Reduced margin */
}

.values-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem; /* Reduced gap */
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Reduced gap */
    padding: 0.8rem; /* Reduced padding */
    background: var(--bg-light);
    border-radius: 8px; /* Smaller radius */
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-size: 0.9rem; /* Smaller font */
}

.value-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px); /* Smaller lift */
}

.value-item i {
    font-size: 1rem; /* Smaller icon */
}

/* Organization Chart - IMPROVED */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; /* Reduced gap */
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 1.5rem; /* Reduced gap */
    flex-wrap: wrap;
}

.org-item {
    background: white;
    padding: 1.2rem; /* Reduced padding */
    border-radius: 12px; /* Smaller radius */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); /* Lighter shadow */
    text-align: center;
    min-width: 180px; /* Smaller width */
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.org-item:hover {
    transform: translateY(-3px); /* Smaller lift */
    border-color: var(--primary-color);
}

.org-item.main {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    min-width: 220px; /* Smaller width */
}

.org-avatar {
    width: 50px; /* Smaller avatar */
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-size: 1.3rem; /* Smaller icon */
}

.org-item.main .org-avatar {
    background: rgba(255,255,255,0.3);
}

.org-info h4 {
    margin-bottom: 0.4rem;
    font-size: 1rem; /* Smaller font */
}

.org-item.main h4 {
    font-size: 1.1rem; /* Smaller font */
}

.org-info p {
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 0.9rem; /* Smaller font */
}

.org-email, .org-role {
    font-size: 0.8rem; /* Smaller font */
    opacity: 0.8;
}

.org-connector {
    width: 2px;
    height: 30px; /* Shorter connector */
    background: var(--border-color);
    position: relative;
}

.org-connector::before {
    content: '';
    position: absolute;
    top: -8px; /* Adjusted */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent; /* Smaller arrow */
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--border-color);
}

.org-team {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem; /* Reduced gap */
    width: 100%;
    max-width: 400px; /* Smaller max-width */
}

.team-item {
    background: var(--bg-light);
    padding: 0.8rem; /* Reduced padding */
    border-radius: 8px; /* Smaller radius */
    text-align: center;
}

.team-item h5 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 0.9rem; /* Smaller font */
}

.team-item p {
    color: var(--text-light);
    font-size: 0.8rem; /* Smaller font */
    margin: 0;
}

/* Team Stats - IMPROVED */
.team-stats {
    background: white;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 15px; /* Smaller radius */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Lighter shadow */
    height: fit-content;
    position: sticky;
    top: 100px; /* Adjusted position */
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem; /* Reduced gap */
    margin: 1rem 0; /* Reduced margin */
}

.stat-card {
    text-align: center;
    padding: 1.2rem 0.8rem; /* Reduced padding */
    background: var(--bg-light);
    border-radius: 10px; /* Smaller radius */
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.03); /* Smaller scale */
}

.stat-number {
    font-size: 1.5rem; /* Smaller font */
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem; /* Smaller font */
    opacity: 0.8;
}

.contact-info {
    margin-top: 1.5rem; /* Reduced margin */
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.contact-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem; /* Reduced gap */
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem; /* Reduced gap */
    padding: 0.8rem; /* Reduced padding */
    background: var(--bg-light);
    border-radius: 8px; /* Smaller radius */
    transition: all 0.3s ease;
    font-size: 0.9rem; /* Smaller font */
}

.contact-item:hover {
    background: var(--primary-color);
    color: white;
}

.contact-item i {
    width: 16px; /* Smaller icon container */
    text-align: center;
    font-size: 0.9rem; /* Smaller icon */
}

/* About CTA - IMPROVED */
.about-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 3rem 0; /* Reduced padding */
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem; /* Smaller font */
    margin-bottom: 0.8rem;
}

.cta-content p {
    font-size: 1.1rem; /* Smaller font */
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive Design - IMPROVED */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-grid.full-width {
        grid-template-columns: 1fr;
    }

    .about-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .tab-button {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .team-stats {
        position: static;
        margin-top: 2rem;
    }

    .org-level {
        gap: 1rem;
    }

    .org-item {
        min-width: 160px;
    }

    .org-item.main {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 50px 0 30px;
    }

    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .content-header h2 {
        font-size: 1.7rem;
    }

    .content-header p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .org-team {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 1.7rem;
    }

    .about-tabs-section {
        top: 60px;
    }

    .about-tabs-section.sticky + .about-content-section {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .about-tabs {
        gap: 0.3rem;
    }

    .tab-button {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }

    .tab-button i {
        font-size: 0.9rem;
    }

    .content-grid {
        gap: 1rem;
    }

    .timeline {
        padding-left: 1rem;
    }

    .timeline-item {
        padding-left: 1rem;
        margin-bottom: 1.5rem;
    }

    .timeline-item::before {
        left: -1.2rem;
    }
}
/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Sticky Tabs */
.about-tabs-section {
    background: white;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.about-tabs-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Adjust content when tabs are sticky */
.about-tabs-section.sticky + .about-content-section {
    margin-top: 80px;
}

.about-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.tab-button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.tab-button i {
    font-size: 1.1rem;
}

/* Tab Content */
.about-content-section {
    padding: 4rem 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.content-header {
    text-align: center;
    margin-bottom: 3rem;
}

.content-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.content-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-grid.full-width {
    grid-template-columns: 2fr 1fr;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-grid.full-width {
        grid-template-columns: 1fr;
    }

    .about-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .tab-button {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero {
        padding: 80px 0 60px;
    }

    .content-header h2 {
        font-size: 2rem;
    }

    .timeline {
        padding-left: 1rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-item::before {
        left: -1.4rem;
    }
}
/* Sticky Tabs */
.about-tabs-section {
    background: white;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.about-tabs-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Adjust content when tabs are sticky */
.about-tabs-section.sticky + .about-content-section {
    margin-top: 80px; /* Height of sticky tabs */
}

/* Tab Content Fix */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease;
}

/* Timeline Animations */
.timeline-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(even) {
    transform: translateX(20px);
}

.timeline-item:nth-child(even).animate-in {
    transform: translateX(0);
}

/* Info Card Animations */
.info-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.info-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Mission Item Animations */
.mission-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.mission-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Organization Chart Animations */
.org-item {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.org-item.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Add observer for all animate-able elements */
const animateElements = document.querySelectorAll('.info-card, .mission-item, .org-item, .value-item, .stat-card');

const animateObserver = new IntersectionObserver((entries) => {
                                                                entries.forEach(entry => {
                                                                if (entry.isIntersecting) {
                                                                entry.target.classList.add('animate-in');
                                                            }
                                                            });
                                                            }, { threshold: 0.1 });

animateElements.forEach(element => {
                                     animateObserver.observe(element);
                                 });
/* Active state untuk navigation */
.nav-item.active {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Active state untuk sidebar mobile */
.sidebar-item.active {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

/* Hover effects untuk navigation */
.nav-item {
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* Pastikan variabel CSS sudah ada */
:root {
    --primary-color: #4f46e5; /* Contoh warna primary */
    --text-color: #333; /* Contoh warna text */
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Contoh shadow */
}
/* Active state untuk navigation */
.nav-item.active {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Active state untuk sidebar mobile */
.sidebar-item.active {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

/* Active state untuk footer links */
.footer-section ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hover effects */
.nav-item:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-item {
    transition: all 0.3s ease;
    position: relative;
}
/* ===== VARIABLES ===== */
:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c2a;
    --accent-color: #7baa3c;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --border-radius: 6px;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 5px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ===== SIMPLE HEADER STYLES ===== */
.simple-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 30px;
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    white-space: nowrap;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    padding: 10px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-item:hover {
    color: var(--primary-color);
    background: rgba(45, 80, 22, 0.05);
}

.nav-item.active {
    color: var(--white);
    background: var(--primary-color);
}

/* Desktop Social */
.desktop-social {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
}

.social-item:hover {
    color: var(--white);
    background: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 1px;
    transition: var(--transition);
}

/* ===== MOBILE SIDEBAR STYLES ===== */

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px; /* Sembunyikan di luar layar */
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-strong);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0; /* Tampilkan sidebar */
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-medium);
    background: var(--primary-color);
    color: var(--white);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo img {
    height: 35px;
    width: auto;
}

.sidebar-brand {
    display: flex;
    flex-direction: column;
}

.sidebar-brand strong {
    font-size: 1rem;
    line-height: 1.2;
}

.sidebar-brand span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.sidebar-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.sidebar-close:hover {
    transform: scale(1.1);
}
/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Tabs */
.about-tabs-section {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.about-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.tab-button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.tab-button i {
    font-size: 1.1rem;
}

/* Tab Content */
.about-content-section {
    padding: 4rem 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.content-header {
    text-align: center;
    margin-bottom: 3rem;
}

.content-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.content-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-grid.full-width {
    grid-template-columns: 2fr 1fr;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Info Grid Styles */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(5px);
}

.info-icon {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.2rem;
}

.info-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Zona Kawasan */
.zona-kawasan {
    margin-top: 2rem;
}

.zona-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.zona-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.zona-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.zona-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.zona-item p {
    color: var(--text-light);
    margin: 0;
}

/* Map Legend */
.map-legend {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.map-legend h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.map-legend ul {
    list-style: none;
    padding: 0;
}

.map-legend li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-block;
}

.core-zone { background: #e74c3c; }
.wilderness-zone { background: #f39c12; }
.utilization-zone { background: #27ae60; }

/* Vision Mission Styles */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.vision-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
}

.vision-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.vision-card p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.mission-icon {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-card h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.mission-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.mission-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: var(--shadow);
}

.mission-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mission-text h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.mission-text p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Values Section */
.values-section {
    margin-top: 2rem;
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.value-item i {
    font-size: 1.2rem;
}

/* Organization Chart */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.org-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    min-width: 200px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.org-item.main {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    min-width: 250px;
}

.org-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.org-item.main .org-avatar {
    background: rgba(255,255,255,0.3);
}

.org-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.org-item.main h4 {
    font-size: 1.3rem;
}

.org-info p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.org-email, .org-role {
    font-size: 0.9rem;
    opacity: 0.8;
}

.org-connector {
    width: 2px;
    height: 40px;
    background: var(--border-color);
    position: relative;
}

.org-connector::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--border-color);
}

.org-team {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 500px;
}

.team-item {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.team-item h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Team Stats */
.team-stats {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--primary-color);
    color: white;
}

.contact-item i {
    width: 20px;
    text-align: center;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-grid.full-width {
        grid-template-columns: 1fr;
    }

    .about-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .tab-button {
        white-space: nowrap;
    }

    .org-level {
        flex-direction: column;
        align-items: center;
    }

    .team-stats {
        position: static;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero {
        padding: 80px 0 60px;
    }

    .content-header h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .org-team {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    border-left: 4px solid transparent;
    font-weight: 500;
}

.sidebar-item:hover {
    background: rgba(45, 80, 22, 0.05);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.sidebar-item.active {
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.sidebar-item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Sidebar Social */
.sidebar-social {
    padding: 20px;
    border-top: 1px solid var(--gray-medium);
    background: var(--gray-light);
}

.sidebar-social h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.sidebar-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
}

.sidebar-social-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.sidebar-social-item i {
    width: 20px;
    text-align: center;
    font-size: 1.2rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .header-content {
        gap: 40px;
    }

    .desktop-nav {
        gap: 12px;
    }

    .nav-item {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Desktop (1024px - 1199px) */
@media (max-width: 1199px) {
    .header-content {
        gap: 25px;
    }

    .desktop-nav {
        gap: 6px;
    }

    .nav-item {
        padding: 10px 14px;
        font-size: 0.92rem;
    }
}

/* Small Desktop / Large Tablet (900px - 1023px) */
@media (max-width: 1023px) {
    .header-content {
        gap: 20px;
    }

    .desktop-nav {
        gap: 4px;
    }

    .nav-item {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo img {
        height: 35px;
    }
}

/* Tablet (768px - 899px) */
@media (max-width: 899px) {
    .header-content {
        gap: 15px;
        padding: 0 15px;
    }

    .desktop-nav {
        gap: 3px;
    }

    .nav-item {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .logo {
        font-size: 1rem;
        gap: 8px;
    }

    .logo img {
        height: 32px;
    }

    .social-item {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Small Tablet (600px - 767px) */
@media (max-width: 767px) {
    .desktop-nav,
    .desktop-social {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-content {
        height: 60px;
        padding: 0 15px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo img {
        height: 30px;
    }
}

/* Mobile (480px - 599px) */
@media (max-width: 599px) {
    .header-content {
        padding: 0 12px;
        height: 56px;
    }

    .logo {
        font-size: 0.95rem;
        gap: 6px;
    }

    .logo img {
        height: 28px;
    }

    .mobile-sidebar {
        width: 280px;
        right: -280px;
    }

    .sidebar-header {
        padding: 15px;
    }

    .sidebar-nav {
        padding: 15px 0;
    }

    .sidebar-item {
        padding: 12px 15px;
    }

    .sidebar-social {
        padding: 15px;
    }
}

/* Small Mobile (360px - 479px) */
@media (max-width: 479px) {
    .header-content {
        padding: 0 10px;
        height: 52px;
    }

    .logo {
        font-size: 0.9rem;
    }

    .logo img {
        height: 26px;
    }

    .logo-text {
        display: none;
    }

    .mobile-sidebar {
        width: 260px;
        right: -260px;
    }

    .sidebar-item {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .sidebar-social-item {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Very Small Mobile (under 360px) */
@media (max-width: 359px) {
    .header-content {
        padding: 0 8px;
    }

    .logo {
        font-size: 0.85rem;
    }

    .logo img {
        height: 24px;
    }

    .mobile-sidebar {
        width: 240px;
        right: -240px;
    }

    .sidebar-item {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .sidebar-item i {
        font-size: 0.9rem;
    }
}

/* ===== MAIN CONTENT ADJUSTMENT ===== */
main {
    margin-top: 70px;
}

@media (max-width: 767px) {
    main {
        margin-top: 60px;
    }
}

@media (max-width: 599px) {
    main {
        margin-top: 56px;
    }
}

@media (max-width: 479px) {
    main {
        margin-top: 52px;
    }
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: var(--white);
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
}

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

.footer-social .social-icon {
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}

.footer-social .social-icon:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-content {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
/* ===== VARIABLES ===== */
:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c2a;
    --accent-color: #7baa3c;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --border-radius: 6px;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== SIMPLE HEADER STYLES ===== */
.simple-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 30px;
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    white-space: nowrap;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    padding: 10px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-item:hover {
    color: var(--primary-color);
    background: rgba(45, 80, 22, 0.05);
}

.nav-item.active {
    color: var(--white);
    background: var(--primary-color);
}

/* Desktop Social */
.desktop-social {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
}

.social-item:hover {
    color: var(--white);
    background: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 1px;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-nav-item i {
    width: 20px;
    text-align: center;
}

.mobile-social {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mobile-social-item:hover {
    background: rgba(45, 80, 22, 0.05);
    color: var(--primary-color);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .header-content {
        gap: 40px;
    }

    .desktop-nav {
        gap: 12px;
    }

    .nav-item {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Desktop (1024px - 1199px) */
@media (max-width: 1199px) {
    .header-content {
        gap: 25px;
    }

    .desktop-nav {
        gap: 6px;
    }

    .nav-item {
        padding: 10px 14px;
        font-size: 0.92rem;
    }
}

/* Small Desktop / Large Tablet (900px - 1023px) */
@media (max-width: 1023px) {
    .header-content {
        gap: 20px;
    }

    .desktop-nav {
        gap: 4px;
    }

    .nav-item {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo img {
        height: 35px;
    }
}

/* Tablet (768px - 899px) */
@media (max-width: 899px) {
    .header-content {
        gap: 15px;
        padding: 0 15px;
    }

    .desktop-nav {
        gap: 3px;
    }

    .nav-item {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .logo {
        font-size: 1rem;
        gap: 8px;
    }

    .logo img {
        height: 32px;
    }

    .social-item {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Small Tablet (600px - 767px) */
@media (max-width: 767px) {
    .desktop-nav,
    .desktop-social {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-content {
        height: 60px;
        padding: 0 15px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo img {
        height: 30px;
    }

    .mobile-menu {
        top: 60px;
    }
}

/* Mobile (480px - 599px) */
@media (max-width: 599px) {
    .header-content {
        padding: 0 12px;
        height: 56px;
    }

    .logo {
        font-size: 0.95rem;
        gap: 6px;
    }

    .logo img {
        height: 28px;
    }

    .mobile-nav {
        padding: 15px;
    }

    .mobile-nav-item {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
}

/* Small Mobile (360px - 479px) */
@media (max-width: 479px) {
    .header-content {
        padding: 0 10px;
        height: 52px;
    }

    .logo {
        font-size: 0.9rem;
    }

    .logo img {
        height: 26px;
    }

    .logo-text {
        display: none; /* Sembunyikan teks logo di mobile sangat kecil */
    }

    .mobile-nav {
        padding: 12px;
    }

    .mobile-nav-item {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .mobile-social-item {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Very Small Mobile (under 360px) */
@media (max-width: 359px) {
    .header-content {
        padding: 0 8px;
    }

    .logo {
        font-size: 0.85rem;
    }

    .logo img {
        height: 24px;
    }

    .mobile-nav-item {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .mobile-nav-item i {
        font-size: 0.9rem;
    }
}

/* ===== MAIN CONTENT ADJUSTMENT ===== */
main {
    margin-top: 70px;
}

@media (max-width: 767px) {
    main {
        margin-top: 60px;
    }
}

@media (max-width: 599px) {
    main {
        margin-top: 56px;
    }
}

@media (max-width: 479px) {
    main {
        margin-top: 52px;
    }
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: var(--white);
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
}

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

.footer-social .social-icon {
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}

.footer-social .social-icon:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-content {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
/* ===== VARIABLES ===== */
:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c2a;
    --accent-color: #7baa3c;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

/* ===== HEADER STYLES - SIMPLE & CLEAN ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

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

/* Brand Styles */
.header-brand {
    flex-shrink: 0;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.brand-text h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.brand-text span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Navigation Styles */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(45, 80, 22, 0.05);
}

.nav-link.active {
    color: var(--white);
    background: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.cta-btn {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    padding: 20px;
}

.mobile-nav-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.mobile-nav-item {
    margin-bottom: 8px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 60px;
    }

    .logo img {
        height: 35px;
    }

    .brand-text h1 {
        font-size: 1.1rem;
    }

    .brand-text span {
        font-size: 0.7rem;
    }

    .mobile-menu {
        top: 60px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }

    .brand-text h1 {
        font-size: 1rem;
    }

    .mobile-nav {
        padding: 15px;
    }
}

/* ===== MAIN CONTENT ADJUSTMENT ===== */
main {
    margin-top: 70px;
}

@media (max-width: 768px) {
    main {
        margin-top: 60px;
    }
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: var(--white);
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
/* ===== VARIABLES ===== */
:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c2a;
    --accent-color: #7baa3c;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

/* ===== HEADER STYLES - IMPROVED RESPONSIVENESS ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

.navbar {
    padding: 0;
}

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

/* Brand Styles - Improved for responsiveness */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 0; /* Prevent flex item from overflowing */
}

.nav-logo img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.nav-title {
    display: flex;
    flex-direction: column;
    min-width: 0; /* Prevent text overflow */
}

.nav-title h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Navigation Menu - Improved for tablet */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 10px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(45, 80, 22, 0.05);
}

.nav-link.active {
    color: var(--white);
    background: var(--primary-color);
}

/* Header Actions - Improved spacing */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.nav-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

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

.nav-cta {
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--primary-color);
    color: var(--white);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.mobile-logo img {
    height: 35px;
    width: auto;
}

.mobile-brand {
    display: flex;
    flex-direction: column;
}

.mobile-brand strong {
    font-size: 1rem;
    line-height: 1.2;
}

.mobile-brand span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.mobile-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Navigation */
.mobile-nav-menu {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-nav-item {
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(45, 80, 22, 0.05);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Mobile Social Section */
.mobile-social-section {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

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

.mobile-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(45, 80, 22, 0.05);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.mobile-social-icon i {
    width: 20px;
    text-align: center;
    font-size: 1.2rem;
}

/* ===== RESPONSIVE DESIGN - IMPROVED BREAKPOINTS ===== */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 15px;
        gap: 15px;
    }

    .nav-menu {
        gap: 5px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .nav-title h1 {
        font-size: 1.1rem;
    }

    .nav-subtitle {
        font-size: 0.7rem;
    }
}

/* Medium Tablets (900px and below) - Switch to mobile menu */
@media (max-width: 900px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        justify-content: space-between;
    }

    .nav-brand {
        flex: 1;
    }
}

/* Small Tablets and Large Phones (768px and below) */
@media (max-width: 768px) {
    .nav-container {
        height: 60px;
        padding: 0 12px;
    }

    .nav-logo img {
        height: 35px;
    }

    .nav-title h1 {
        font-size: 1rem;
    }

    .mobile-menu {
        width: 280px;
    }

    .mobile-logo img {
        height: 30px;
    }

    .mobile-brand strong {
        font-size: 0.9rem;
    }

    .mobile-brand span {
        font-size: 0.75rem;
    }
}

/* Phones (480px and below) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }

    .nav-title h1 {
        font-size: 0.9rem;
    }

    .nav-subtitle {
        display: none; /* Hide subtitle on very small screens */
    }

    .mobile-menu {
        width: 100%; /* Full width on very small screens */
    }

    .mobile-menu-header {
        padding: 15px;
    }

    .mobile-nav-link {
        padding: 12px 15px;
    }

    .mobile-social-section {
        padding: 15px;
    }
}

/* Very Small Phones (360px and below) */
@media (max-width: 360px) {
    .nav-title h1 {
        font-size: 0.8rem;
    }

    .nav-logo img {
        height: 30px;
    }

    .mobile-nav-link {
        font-size: 0.9rem;
    }

    .mobile-social-icon {
        padding: 10px 12px;
    }
}

/* Landscape Orientation Fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-menu {
        overflow-y: auto;
        max-height: 100vh;
    }

    .mobile-nav-menu {
        max-height: 60vh;
        overflow-y: auto;
    }
}

/* ===== MAIN CONTENT ADJUSTMENT ===== */
main {
    margin-top: 70px;
}

@media (max-width: 768px) {
    main {
        margin-top: 60px;
    }
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: var(--white);
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

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

.footer-social .social-icon {
    color: var(--white);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.footer-social .social-icon:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-content {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
.footer-social .social-icon {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social .social-icon:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}
/* Style untuk Brand/Logo dan Title */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}
/* ===== PERBAIKAN HEADER ===== */

/* Pastikan nav-social terlihat */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(45, 80, 22, 0.05);
    color: var(--text-dark);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}

/* Perbaikan untuk tampilan mobile */
@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
        transition: transform 0.3s ease;
        z-index: 1001;
    }

    .hamburger:hover {
        transform: scale(1.1);
    }

    .bar {
        width: 25px;
        height: 3px;
        background-color: var(--text-dark);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

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

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Mobile Menu Styling */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding: 100px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.mobile-logo img {
    height: 40px;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

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

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
}

.mobile-nav-item {
    margin-bottom: 10px;
}
/* ===== MOBILE MENU FIX ===== */

/* Hamburger Menu - Pastikan terlihat di mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding: 80px 20px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.mobile-logo img {
    height: 35px;
    width: auto;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

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

/* Mobile Navigation Menu */
.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
}

.mobile-nav-item {
    margin-bottom: 8px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateX(10px);
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 1.2rem;
}

/* Mobile Social Media */
.mobile-actions {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(45, 80, 22, 0.1);
}

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

.mobile-social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(45, 80, 22, 0.05);
}

.mobile-social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.mobile-social-icon i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Social Icons in Header */
.nav-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--primary-color);
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social .social-icon {
    color: white;
    font-size: 1.3rem;
}

.footer-social .social-icon:hover {
    color: var(--accent-color);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Hide desktop menu and social icons */
    .nav-menu,
    .nav-social {
        display: none;
    }

    /* Show hamburger menu */
    .hamburger {
        display: flex;
    }

    /* Adjust header for mobile */
    .nav-container {
        padding: 0 15px;
    }

    .nav-title h1 {
        font-size: 1.2rem;
    }

    /* Mobile menu specific styles */
    .mobile-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .nav-title h1 {
        font-size: 1.1rem;
    }

    .mobile-menu-content {
        padding: 70px 15px 20px;
    }

    .mobile-logo {
        font-size: 1rem;
    }

    .mobile-logo img {
        height: 30px;
    }
}

/* Prevent body scroll when mobile menu is open */
body.no-scroll {
    overflow: hidden;
}

/* Animation for hamburger when active */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
}

.mobile-actions {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(45, 80, 22, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-cta {
    width: 100%;
    justify-content: center;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

/* Pastikan Font Awesome icons terload dengan baik */
.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

.fas, .far, .fal, .fad, .fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Perbaikan tambahan untuk tampilan desktop */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }
}

/* Fix untuk social icons di footer */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.footer-social-icon:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
/* ===== IMPROVED HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(45, 80, 22, 0.2);
}

.navbar {
    padding: 0;
}

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

/* Brand & Logo */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link {
    position: relative;
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(45, 80, 22, 0.2));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(45, 80, 22, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-link:hover .logo-glow {
    opacity: 1;
}

.nav-title h1 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.nav-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 80, 22, 0.1), transparent);
    transition: left 0.5s;
}

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

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(45, 80, 22, 0.05);
}

.nav-link.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.nav-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(45, 80, 22, 0.05);
    color: var(--text-dark);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}

.social-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.social-icon:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

.nav-cta .cta-button.small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding: 100px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.mobile-logo img {
    height: 40px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
}

.mobile-nav-item {
    margin-bottom: 10px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(45, 80, 22, 0.1);
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

/* ===== IMPROVED FOOTER STYLES ===== */
.footer {
    position: relative;
    background: linear-gradient(135deg, #1a2f0f 0%, var(--primary-color) 100%);
    color: white;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"/></svg>');
    background-size: 1200px 100px;
}

.wave-1 {
    animation: wave 25s linear infinite;
    opacity: 0.7;
}

.wave-2 {
    animation: wave 20s linear infinite reverse;
    opacity: 0.5;
}

.wave-3 {
    animation: wave 15s linear infinite;
    opacity: 0.3;
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1200px; }
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px 0;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* Footer Brand */
.footer-brand {
    max-width: 400px;
}

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

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-title h3 {
    font-size: 1.4rem;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.footer-title p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.footer-social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.footer-social-icon::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;
}

.footer-social-icon:hover::before {
    left: 100%;
}

.footer-social-icon:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.footer-social-icon:hover .social-label {
    opacity: 1;
    visibility: visible;
    bottom: -25px;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-column ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-column ul li a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.footer-column ul li a:hover i {
    transform: translateX(3px);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    margin-top: 2px;
    color: var(--secondary-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item span:first-child {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span:last-child {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

/* Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content h4 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.newsletter-content p {
    margin: 0;
    opacity: 0.8;
}

.newsletter-form {
    flex: 1;
    max-width: 400px;
}

.input-group {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.input-group input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 0.9rem;
    outline: none;
    background: transparent;
}

.input-group button {
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.input-group button:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    gap: 12px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

.footer-legals {
    display: flex;
    gap: 20px;
}

.footer-legals a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legals a:hover {
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.5);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 5px;
    }

    .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .footer-newsletter {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 70px;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legals {
        justify-content: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .nav-brand {
        gap: 10px;
    }

    .nav-title h1 {
        font-size: 1.2rem;
    }

    .nav-subtitle {
        font-size: 0.7rem;
    }

    .logo-img {
        height: 40px;
    }

    .footer-container {
        padding: 60px 15px 0;
    }

    .footer-main {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-newsletter {
        padding: 20px;
    }

    .input-group {
        flex-direction: column;
        border-radius: 10px;
    }

    .input-group input {
        border-radius: 10px 10px 0 0;
    }

    .input-group button {
        border-radius: 0 0 10px 10px;
        justify-content: center;
    }
}
/* Hero Video Styles */
.hero-video {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
/* ===== IMPROVED RESPONSIVE LAYOUT ===== */

/* Hero Section - Improved */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fdf0 0%, #e8f5e8 50%, #d0ebd0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%232d5016" fill-opacity="0.03" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-media {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.video-container:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(45, 80, 22, 0.1), rgba(123, 170, 60, 0.05));
    z-index: 1;
    pointer-events: none;
}

/* Improved Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* About Section - Improved */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--background-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-image .image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.5s ease;
}

.about-image .image-frame:hover {
    transform: perspective(1000px) rotateY(0);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image .image-frame:hover img {
    transform: scale(1.05);
}

/* Attractions Section - Improved */
.attractions-section {
    padding: 100px 0;
    background: var(--background-light);
}

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

.attraction-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 80, 22, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.attraction-card:hover .card-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.card-content {
    padding: 30px;
    position: relative;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.card-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.card-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* Gallery Section - Improved */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 80, 22, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
}

.gallery-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* Conservation Section - Improved */
.conservation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.conservation-content {
    max-width: 800px;
    margin: 0 auto;
}

.conservation-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
}

.conservation-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.conservation-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Video Controls - Improved */
.video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
}

.unmute-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.unmute-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Modal Improvements */
.modal-content {
    max-width: 900px;
    margin: 5% auto;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-modal-content {
    text-align: center;
}

.image-caption {
    padding: 20px;
    background: var(--background-light);
    color: var(--text-dark);
    font-style: italic;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .about-content,
    .hero-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .video-container {
        transform: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image .image-frame {
        transform: none;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions {
        justify-content: center;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-body {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .card-content {
        padding: 20px;
    }
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Loading Animation */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(45, 80, 22, 0.3), rgba(123, 170, 60, 0.2));
    pointer-events: none;
}

/* Card Hover Effects */
.attraction-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 22, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.attraction-card:hover .card-overlay {
    opacity: 1;
}

.view-details {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Hover Effects */
.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    z-index: 1001;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-modal:hover {
    color: var(--primary-color);
    background: #f5f5f5;
}

.modal-body {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.modal-info {
    flex: 1;
    margin-bottom: 20px;
}

.modal-info h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.modal-details {
    margin-top: 20px;
}

.modal-details h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.modal-map {
    flex: 1;
}

.modal-map h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

#mapContainer {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

/* Gallery Modal */
.gallery-modal {
    max-width: 90%;
    width: auto;
    background: transparent;
    box-shadow: none;
}

.gallery-modal img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .modal-body {
        flex-direction: row;
        gap: 30px;
    }

    .modal-info {
        flex: 1;
        margin-bottom: 0;
    }

    .modal-map {
        flex: 1;
    }

    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .attractions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Additional Interactive Elements */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 80, 22, 0.3);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

/* Stats Animation */
.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}
/* Video Controls Styles */
.video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
}

.unmute-btn {
    background: rgba(45, 80, 22, 0.9);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.unmute-btn:hover {
    background: rgba(45, 80, 22, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.unmute-btn i {
    font-size: 16px;
}

/* Responsive video controls */
@media (max-width: 768px) {
    .video-controls {
        bottom: 10px;
        left: 10px;
    }

    .unmute-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-item:hover h3 {
    color: var(--secondary-color);
}

.nav-title h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    white-space: nowrap;
}

/* Style untuk Social Media Icons di Header */
.nav-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-social .social-icon {
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-social .social-icon:hover {
    color: var(--primary-color);
}

/* Style untuk Social Media Icons di Footer */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social .social-icon {
    color: var(--white);
    font-size: 1.3rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-social .social-icon:hover {
    color: var(--accent-color);
}

/* Responsive Design untuk Header */
@media (max-width: 768px) {
    .nav-brand {
        flex: 1;
    }

    .nav-title h1 {
        font-size: 1.2rem;
    }

    .nav-social {
        display: none; /* Sembunyikan social icons di mobile */
    }

    /* Tambahkan social icons di menu mobile */
    .nav-menu.active + .nav-social-mobile {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 20px;
        background-color: var(--white);
        border-top: 1px solid #eee;
    }

    .nav-social-mobile .social-icon {
        color: var(--text-dark);
        font-size: 1.5rem;
    }
}

/* Update existing styles untuk menampung perubahan */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Pastikan layout header tetap seimbang */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Jika perlu menyesuaikan spacing */
@media (min-width: 769px) {
    .nav-menu {
        flex: 1;
        justify-content: center;
        gap: 2rem;
    }
}

:root {
    --primary-color: #2d5016;
    --secondary-color: #7baa3c;
    --accent-color: #f5a623;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 100px 20px 50px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: var(--background-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

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

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Attractions Section */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.attraction-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-10px);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--background-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-cta {
    text-align: center;
}

/* Conservation Section */
.conservation-section {
    background: linear-gradient(rgba(45, 80, 22, 0.9), rgba(45, 80, 22, 0.9)), url('../images/conservation-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.conservation-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.conservation-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .conservation-content h2 {
        font-size: 2rem;
    }
}
