/* ============================================================ */
/* === NATURAL ADVENTURE THEME - FRESH VERSION === */
/* === Alami, Tenang, Bersih, Profesional === */
/* ============================================================ */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* CSS Variables - Natural Adventure Fresh Palette */
:root {
    /* Natural Fresh Colors */
    --leaf-green: #2E7D32;
    --sage-green: #A5D6A7;
    --light-gray: #E0E0E0;
    --white: #FFFFFF;
    --stone-gray: #37474F;
    
    /* Extended Palette */
    --leaf-light: #4CAF50;
    --leaf-dark: #1B5E20;
    --sage-light: #C8E6C9;
    --sage-dark: #81C784;
    --gray-medium: #BDBDBD;
    --gray-dark: #616161;
    --stone-light: #546E7A;
    --stone-dark: #263238;
    
    /* Functional Colors */
    --text-primary: #37474F;
    --text-secondary: #546E7A;
    --text-light: #78909C;
    --text-white: #FFFFFF;
    
    /* Status Colors - Fresh Variants */
    --status-pending: #FFA726;
    --status-approved: #2E7D32;
    --status-rejected: #E53935;
    --status-completed: #1976D2;
    
    /* Shadows - Natural & Subtle */
    --shadow-sm: 0 2px 6px rgba(46, 125, 50, 0.08);
    --shadow-md: 0 4px 12px rgba(46, 125, 50, 0.12);
    --shadow-lg: 0 6px 20px rgba(46, 125, 50, 0.15);
    --shadow-xl: 0 8px 30px rgba(46, 125, 50, 0.18);
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-gray);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================================ */
/* === SIDEBAR NAVIGATION - VERTICAL LAYOUT === */
/* ============================================================ */

sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

/* Tombol Hide - Fixed di Kanan Tengah Navbar */
.sidebar-toggle {
    position: fixed !important;
    top: 50% !important;
    left: 235px !important; /* 250px (lebar navbar) - 15px */
    transform: translateY(-50%) !important;
    background: var(--leaf-green) !important;
    border: none !important;
    color: white !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 1001 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.sidebar-toggle:hover {
    background: var(--leaf-dark) !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4) !important;
}

/* Tombol hide menghilang saat sidebar hidden */
.navbar.hidden .sidebar-toggle {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Sembunyikan ikon Font Awesome, tampilkan symbol */
.sidebar-toggle i {
    display: none;
}

.sidebar-toggle span {
    display: inline-block;
}

/* Tombol Show Sidebar - ✅ TAMBAHKAN INI */
/* Tombol Show Sidebar - Fixed Position di Tepi Kiri Layar */
.sidebar-show-btn {
    position: fixed !important; /* Harus fixed, bukan absolute */
    top: 50% !important;
    left: -50px !important; /* Tersembunyi di kiri layar */
    transform: translateY(-50%) !important;
    background: var(--leaf-green) !important;
    color: white !important;
    border: none !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 0 8px 8px 0 !important;
    cursor: pointer !important;
    z-index: 999 !important; /* Di bawah sidebar (z-index: 1000) */
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Tombol muncul saat sidebar hidden */
.sidebar-show-btn.active {
    left: 0 !important; /* Slide masuk dari kiri */
    opacity: 1 !important;
    pointer-events: all !important;
}

.sidebar-show-btn:hover {
    background: var(--leaf-dark) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4) !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background: linear-gradient(180deg, var(--leaf-green) 0%, var(--leaf-dark) 100%);
    box-shadow: var(--shadow-lg);
    padding: 2rem 0;
    overflow-y: auto;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-right: 3px solid var(--sage-green);
    transition: all 0.4s ease; /* ✅ TAMBAHKAN INI */
}
/* Navbar Hidden State - ✅ TAMBAHKAN INI */
.navbar.hidden {
    left: -250px;
}
/* Logo di Navbar */
/* Logo di Navbar */
/* Logo di Navbar - UKURAN LEBIH BESAR */
/* Sidebar Header - Beri Ruang Lebih */
.sidebar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem; /* Tambah padding */
    margin-bottom: 1.5rem;
    min-height: 100px; /* Beri tinggi minimum */
    overflow: visible; /* PENTING: jangan potong logo */
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: visible; /* PENTING */
}

/* Logo di Navbar - Ukuran Proporsional */
.navbar-logo {
    width: 85%; /* 85% dari lebar navbar (250px) = sekitar 212px */
    max-width: 220px;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-brand:hover .navbar-logo {
    transform: scale(1.05);
    filter: brightness(1.15);
}

/* Responsif */
@media (max-width: 768px) {
    .navbar-logo {
        width: 80%;
        max-width: 180px;
    }
    
    .sidebar-header {
        padding: 1.5rem 0.8rem;
        min-height: 80px;
    }
}
.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
    flex: 1; /* ✅ UBAH DARI display: block */
}


.nav-brand:hover {
    color: var(--sage-light);
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    width: 100%;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    display: block;
    position: relative;
    border-left: 4px solid transparent;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-left-color: var(--sage-green);
}

.nav-menu li.active a {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--sage-light);
    font-weight: 700;
    border-left-color: var(--sage-green);
}

.login-btn {
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    background-color: var(--leaf-light);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    text-align: center;
    margin: 0.5rem 1rem;
}

.login-btn:hover {
    background-color: var(--sage-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-login-blue {
    background-color: var(--status-completed);
}

.btn-login-blue:hover {
    background-color: #1565C0;
}

/* User greeting di sidebar */
.nav-menu li span {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
}

/* Main content adjustment - beri margin kiri untuk space sidebar */
body {
    margin-left: 250px;
    transition: margin-left 0.4s ease; /* ✅ TAMBAHKAN INI */
}

/* Body saat sidebar hidden - ✅ TAMBAHKAN INI */
body.sidebar-hidden {
    margin-left: 0;
}

/* Dashboard container adjustment */
.dashboard-container,
.content-page,
.hero,
.info-section,
.footer {
    margin-left: 0; /* Content sudah terpush karena body margin-left */
}


/* ============================================================ */
/* === HERO SECTION - FRESH & NATURAL === */
/* ============================================================ */
.hero {
    position: relative;
    background-image: 
        linear-gradient(135deg, 
            rgba(46, 125, 50, 0.25) 0%, 
            rgba(55, 71, 79, 0.25) 100%),
        url('images/Gunung_Raung_dilihat_dari_Gunung_Ijen.jpg');
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 2rem 2rem 6rem 2rem; /* Tambahkan padding bottom */
    overflow: hidden;
    margin-bottom: 0; /* Pastikan tidak ada margin */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(165, 214, 167, 0.05), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: heroFadeIn 1s ease-out;
    max-width: 900px;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.35rem;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--leaf-green);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--leaf-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--sage-green);
    color: var(--stone-dark);
    border: 2px solid var(--sage-green);
}

.btn-secondary:hover {
    background-color: var(--sage-light);
    border-color: var(--sage-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================================ */
/* === STATS SECTION - FRESH CARDS === */
/* ============================================================ */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 0 2rem;
    margin: -100px auto 0 auto; /* Hapus margin bottom, ubah jadi 0 */
    width: 75%;
    max-width: 1000px;
    position: relative;
    z-index: 10;
}

.stat-card {
    flex: 1;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid var(--leaf-green);
}

.stat-card:nth-child(1) {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.stat-card:nth-child(2) {
    animation: slideUp 0.8s ease-out 0.4s both;
    border-top-color: var(--sage-dark);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.25);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--leaf-green);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0.8rem;
    color: var(--text-primary);
}

.stat-card span {
    color: var(--text-light);
    font-size: 0.95rem;
    display: block;
    margin-top: 0.6rem;
    font-weight: 500;
}

/* ============================================================ */
/* === INFO SECTIONS - CLEAN & PROFESSIONAL === */
/* ============================================================ */
.info-section:first-of-type {
    padding-top: 2rem; /* Lebih kecil lagi untuk section pertama */
}
.info-section {
    padding: 3rem 5% 5rem 5%; /* Kurangi padding-top dari 5rem jadi 3rem */
    text-align: center;
    background-color: var(--white);
}

.info-section:nth-child(even) {
    background-color: var(--light-gray);
}

.info-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--leaf-green);
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.info-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--sage-green);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    margin-bottom: 3.5rem;
}

/* ============================================================ */
/* === BOOKING STEPS - FRESH NATURAL CARDS === */
/* ============================================================ */
.booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid var(--leaf-green);
}

.step:nth-child(even) {
    border-left-color: var(--sage-dark);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-width: 5px;
    background-color: var(--sage-light);
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--leaf-green);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================================ */
/* === FAQ SECTION - FRESH ACCORDION === */
/* ============================================================ */
.faq-section {
    background-color: var(--light-gray);
}

.faq-container {
    max-width: 950px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.faq-header {
    background: linear-gradient(135deg, var(--leaf-green) 0%, var(--leaf-dark) 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}

.faq-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.faq-header p {
    font-size: 1.05rem;
    opacity: 0.95;
    font-weight: 500;
}

.faq-list {
    padding: 0.5rem 0;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    transition: background-color 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background-color: var(--sage-light);
}

.faq-question {
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--leaf-green);
}

.faq-question i {
    font-size: 1rem;
    color: var(--text-light);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--leaf-green);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--sage-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: rgba(165, 214, 167, 0.1);
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    padding-top: 0.5rem;
}

/* ============================================================ */
/* === MAP SECTIONS - FRESH NATURAL STYLE === */
/* ============================================================ */
.map-feature-container {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    align-items: flex-start;
}

.map-image-wrapper {
    flex-basis: 50%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border: 3px solid var(--sage-green);
}

.map-image-wrapper:hover {
    transform: scale(1.02);
    border-color: var(--leaf-green);
}

.map-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.map-image-wrapper:hover img {
    transform: scale(1.05);
}

.map-trails-info {
    flex-basis: 50%;
}

.map-trails-info h3 {
    font-size: 1.8rem;
    color: var(--leaf-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.map-trails-info > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.trail-desc {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: var(--sage-light);
    border-radius: 12px;
    border-left: 4px solid var(--leaf-green);
    transition: all 0.3s ease;
}

.trail-desc:nth-child(even) {
    border-left-color: var(--sage-dark);
}

.trail-desc:hover {
    background-color: rgba(165, 214, 167, 0.3);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.trail-desc h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--leaf-green);
    margin-bottom: 0.5rem;
}

.trail-desc p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.btn-download {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2rem;
}

.btn-download.primary {
    background-color: var(--leaf-green);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-download.primary:hover {
    background-color: var(--leaf-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.map-embed-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    height: 600px;
    border: 3px solid var(--sage-green);
}

.map-embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================ */
/* === AUTH PAGES (LOGIN & REGISTER) - FRESH THEME === */
/* ============================================================ */
body.auth-page {
    background: linear-gradient(135deg, 
        var(--sage-green) 0%, 
        var(--sage-dark) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.auth-page .auth-container {
    display: flex;
    width: 950px;
    max-width: 95%;
    min-height: 600px;
    background-color: var(--white);
    box-shadow: var(--shadow-xl);
    border-radius: 20px;
    overflow: hidden;
    align-items: stretch;
}

.auth-page .auth-form-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.auth-page .auth-form-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.auth-page .auth-title {
    font-size: 2.2rem;
    color: var(--leaf-green);
    margin-bottom: 0.5rem;
    text-align: left;
    font-weight: 700;
}

.auth-page .auth-subtitle {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    text-align: left;
    font-size: 1rem;
}

.auth-page .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.auth-page .back-btn:hover {
    color: var(--leaf-green);
    transform: translateX(-3px);
}

.auth-page .input-group {
    margin-bottom: 1.2rem;
}

.auth-page .input-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.auth-page .input-group input,
.auth-page .input-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.auth-page .input-group input:focus,
.auth-page .input-group select:focus {
    outline: none;
    border-color: var(--leaf-green);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.auth-page .password-wrapper {
    position: relative;
}

.auth-page .password-wrapper input {
    padding-right: 45px;
}

.auth-page .password-wrapper i.toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.auth-page .password-wrapper i.toggle-password:hover {
    color: var(--leaf-green);
}

.auth-page .btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.auth-page .btn-primary {
    background: linear-gradient(135deg, var(--leaf-green) 0%, var(--leaf-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.auth-page .btn-primary:hover {
    background: linear-gradient(135deg, var(--leaf-dark) 0%, var(--stone-dark) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.auth-page .auth-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.auth-page .auth-link a {
    color: var(--leaf-green);
    text-decoration: none;
    font-weight: 600;
}

.auth-page .auth-link a:hover {
    color: var(--leaf-light);
    text-decoration: underline;
}

.auth-page .separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    margin: 1.5rem 0;
}

.auth-page .separator::before,
.auth-page .separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--light-gray);
}

.auth-page .separator span {
    padding: 0 1rem;
}

.auth-page .btn-google {
    background-color: var(--white);
    color: var(--text-primary);
    border: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
}

.auth-page .btn-google:hover {
    background-color: var(--light-gray);
    border-color: var(--leaf-green);
}

.auth-page .btn-google img.google-logo {
    width: 18px;
    height: 18px;
}

.auth-page .auth-image-section {
    flex: 1;
    background-image: linear-gradient(135deg, 
        rgba(46, 125, 50, 0.65) 0%, 
        rgba(55, 71, 79, 0.65) 100%),
        url('images/Gunung_Raung.jpg');
    background-size: cover;
    background-position: center;
}

/* ============================================================ */
/* === CONTENT PAGES (PANDUAN, SOP, ETC) - FRESH STYLE === */
/* ============================================================ */
.content-page {
    padding: 0 5%;
    max-width: 1200px;
    margin: 2rem auto;
}

.page-header {
    background: linear-gradient(135deg, var(--leaf-green) 0%, var(--leaf-dark) 100%);
    color: white;
    padding: 2.5rem 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.page-header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.page-content {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.guide-section {
    margin-bottom: 2.5rem;
}

.guide-section:last-child {
    margin-bottom: 0;
}

.guide-section h2 {
    font-size: 1.8rem;
    color: var(--leaf-green);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--sage-green);
    font-weight: 700;
}

.guide-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--leaf-green);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.guide-section ol,
.guide-section ul {
    padding-left: 25px;
    margin: 1rem 0;
}

.guide-section li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1rem;
}

.guide-section ul {
    list-style-type: disc;
}

.guide-section ul li::marker {
    color: var(--leaf-green);
}

.guide-section ol {
    list-style-type: decimal;
}

.guide-section ol li::marker {
    color: var(--leaf-green);
}

/* ============================================================ */
/* === SOP PAGE WITH SIDEBAR - FRESH NAVIGATION === */
/* ============================================================ */
.page-container {
    display: flex;
    gap: 2.5rem;
    padding: 2rem 5%;
    align-items: flex-start;
    max-width: 1400px;
    margin: 2rem auto;
}

.sidebar {
    flex-basis: 26%;
    min-width: 260px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    align-self: flex-start;
    border: 2px solid var(--sage-green);
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.sidebar-nav li a:hover {
    background-color: var(--sage-light);
    color: var(--leaf-green);
    transform: translateX(5px);
}

.sidebar-nav li a.active {
    background-color: var(--leaf-green);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.sidebar-nav li a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.main-content {
    flex: 1;
}

/* ============================================================ */
/* === DASHBOARD - FRESH PROFESSIONAL ADMIN === */
/* ============================================================ */
.dashboard-container {
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.dashboard-header {
    background: linear-gradient(135deg, var(--leaf-green) 0%, var(--leaf-dark) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

.dashboard-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.95;
    font-size: 1.05rem;
}

.user-info {
    text-align: right;
}

.user-info h2 {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 700;
}

.user-info p {
    margin: 0.3rem 0 0 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Dashboard Stats Cards */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.dashboard-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 5px solid var(--leaf-green);
}

.dashboard-card:nth-child(2) {
    border-left-color: var(--sage-dark);
}

.dashboard-card:nth-child(3) {
    border-left-color: var(--stone-gray);
}

.dashboard-card:nth-child(4) {
    border-left-color: var(--status-approved);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.dashboard-card h3 {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.dashboard-card .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--leaf-green);
    margin-bottom: 0.5rem;
}

.dashboard-card .stat-info {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================================ */
/* === TABLES - FRESH CLEAN DESIGN === */
/* ============================================================ */
.table-container {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 2rem;
}

.table-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--leaf-green) 0%, var(--leaf-light) 100%);
    border-bottom: 2px solid var(--sage-green);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-header h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
    font-weight: 700;
}

.table-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 0.7rem 1rem 0.7rem 2.8rem;
    border: 2px solid var(--white);
    border-radius: 25px;
    font-size: 0.95rem;
    width: 280px;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.search-box input:focus {
    outline: none;
    border-color: var(--sage-light);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(165, 214, 167, 0.3);
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.btn-add {
    padding: 0.7rem 1.5rem;
    background-color: var(--sage-green);
    color: var(--stone-dark);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.btn-add:hover {
    background-color: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
}

.data-table thead {
    background-color: var(--stone-gray);
    color: white;
}

.data-table thead th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.data-table tbody tr {
    border-bottom: 1px solid var(--light-gray);
    transition: background-color 0.2s ease;
}

.data-table tbody tr:hover {
    background-color: var(--sage-light);
}

.data-table tbody tr:last-child {
    border-bottom: none;
}

.data-table tbody td {
    padding: 1.2rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-pending {
    background-color: rgba(255, 167, 38, 0.15);
    color: var(--status-pending);
}

.status-approved {
    background-color: rgba(46, 125, 50, 0.15);
    color: var(--status-approved);
}

.status-rejected {
    background-color: rgba(229, 57, 53, 0.15);
    color: var(--status-rejected);
}

.status-completed {
    background-color: rgba(25, 118, 210, 0.15);
    color: var(--status-completed);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    padding: 0.5rem 0.8rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-view {
    background-color: rgba(25, 118, 210, 0.15);
    color: var(--status-completed);
}

.btn-view:hover {
    background-color: var(--status-completed);
    color: white;
    transform: translateY(-2px);
}

.btn-edit {
    background-color: rgba(165, 214, 167, 0.3);
    color: var(--leaf-green);
}

.btn-edit:hover {
    background-color: var(--leaf-green);
    color: white;
    transform: translateY(-2px);
}

.btn-delete {
    background-color: rgba(229, 57, 53, 0.15);
    color: var(--status-rejected);
}

.btn-delete:hover {
    background-color: var(--status-rejected);
    color: white;
    transform: translateY(-2px);
}

/* ============================================================ */
/* === FORMS - FRESH PROFESSIONAL DESIGN === */
/* ============================================================ */
.form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 1.8rem;
    color: var(--leaf-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--leaf-green);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-submit {
    padding: 0.9rem 2rem;
    background-color: var(--leaf-green);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-submit:hover {
    background-color: var(--leaf-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-cancel {
    padding: 0.9rem 2rem;
    background-color: var(--white);
    color: var(--text-primary);
    border: 2px solid var(--light-gray);
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background-color: var(--light-gray);
    border-color: var(--leaf-green);
}

/* ============================================================ */
/* === FOOTER - FRESH NATURAL THEME === */
/* ============================================================ */
.footer {
    background: linear-gradient(135deg, var(--leaf-green) 0%, var(--leaf-dark) 100%);
    color: white;
    padding: 3rem 5% 1.5rem 5%;
    margin-top: 4rem;
    border-top: 4px solid var(--sage-green);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--sage-light);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--sage-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ============================================================ */
/* === RESPONSIVE DESIGN - MOBILE FIRST === */
/* ============================================================ */
@media (max-width: 1024px) {
    .page-container {
        flex-direction: column;
    }
    
    .sidebar {
        position: static;
        flex-basis: 100%;
        margin-bottom: 2rem;
    }
    
    .map-feature-container {
        flex-direction: column;
    }
    
    .map-image-wrapper,
    .map-trails-info {
        flex-basis: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 4%;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .stats-section {
        flex-direction: column;
        width: 90%;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    .search-box input {
        width: 200px;
    }
    
    .auth-page .auth-container {
        flex-direction: column;
    }
    
    .auth-page .auth-image-section {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .table-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-box input {
        width: 100%;
    }
}

/* ============================================================ */
/* === UTILITY CLASSES === */
/* ============================================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .action-buttons {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .page-content {
        box-shadow: none;
    }
}
/* ============================================================ */
/* === FORCE SIDEBAR TOGGLE - OVERRIDE SEMUA === */
/* ============================================================ */

/* Navbar dalam state hidden - HARUS ke kiri */
nav.navbar.hidden {
    left: -250px !important;
    transform: translateX(0) !important;
    margin-left: 0 !important;
}

/* Navbar normal state - posisi 0 */
nav.navbar:not(.hidden) {
    left: 0 !important;
}

/* Body saat sidebar hidden - margin 0 */
body.sidebar-hidden {
    margin-left: 0 !important;
}

/* Body normal - margin 250px */
body:not(.sidebar-hidden) {
    margin-left: 250px !important;
}

/* Tombol show muncul saat sidebar hidden */
.sidebar-show-btn.active {
    left: 0 !important;
    opacity: 1 !important;
    pointer-events: all !important;
}

/* Tombol show tersembunyi saat sidebar visible */
.sidebar-show-btn:not(.active) {
    left: -50px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


/* ============================================================ */
/* === MOBILE FIX - OVERRIDE BODY MARGIN === */
/* ============================================================ */
@media screen and (max-width: 768px) {
    /* CRITICAL: Force body margin 0 di mobile */
    body,
    body:not(.sidebar-hidden),
    body.sidebar-open,
    body.no-scroll {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Force semua child elements ke kiri */
    body > header,
    body > main,
    body > footer,
    body > .hero,
    body > .info-section {
        margin-left: 0 !important;
    }
    
    /* Hide navbar di mobile saat ada class hidden */
    nav.navbar.hidden {
        transform: translateX(-100%) !important;
        left: 0 !important;
    }
    
    nav.navbar:not(.hidden) {
        transform: translateX(0) !important;
        left: 0 !important;
    }
    
    /* Tombol toggle */
    .sidebar-toggle {
        display: none !important;
    }
    
    .sidebar-show-btn {
        position: fixed !important;
        left: 10px !important;
        top: 10px !important;
        z-index: 999 !important;
    }
}
/* ============================================================ */
/* === RESPONSIVE MOBILE FIX - PASTE DI AKHIR CSS KAMU === */
/* ============================================================ */

/* TABLET & MOBILE BREAKPOINTS */
@media screen and (max-width: 1024px) {
    /* Kurangi margin body untuk tablet */
    body {
        margin-left: 200px !important;
    }
    
    body.sidebar-hidden {
        margin-left: 0 !important;
    }
    
    .navbar {
        width: 200px;
    }
    
    .sidebar-toggle {
        left: 185px !important;
    }
}

/* MOBILE LANDSCAPE & PORTRAIT */
@media screen and (max-width: 768px) {
    /* === CRITICAL FIX: HAPUS SEMUA MARGIN KIRI DI MOBILE === */
    body,
    body:not(.sidebar-hidden),
    body.sidebar-open {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Navbar jadi overlay penuh layar di mobile */
    .navbar {
        position: fixed;
        left: -100%;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        z-index: 9999;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: none;
    }
    
    /* Navbar aktif (muncul) */
    .navbar:not(.hidden),
    .navbar.active {
        left: 0 !important;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    /* Navbar tersembunyi */
    .navbar.hidden {
        left: -100% !important;
    }
    
    /* Overlay gelap saat menu terbuka */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    body.sidebar-open::before {
        opacity: 1;
        pointer-events: all;
    }
    
    /* Tombol hide tetap di navbar */
    .sidebar-toggle {
        position: absolute !important;
        top: 20px !important;
        right: 15px !important;
        left: auto !important;
        transform: none !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 1.2rem;
    }
    
    .navbar.hidden .sidebar-toggle {
        display: none !important;
    }
    
    /* Tombol hamburger di kiri atas */
    .sidebar-show-btn {
        position: fixed !important;
        top: 15px !important;
        left: 15px !important;
        transform: none !important;
        width: 45px !important;
        height: 45px !important;
        border-radius: 10px !important;
        z-index: 999 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
    }
    
    .sidebar-show-btn.active {
        left: 15px !important;
        opacity: 1 !important;
    }
    
    .sidebar-show-btn:not(.active) {
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* === HERO SECTION MOBILE === */
    .hero {
        min-height: 70vh;
        padding: 5rem 1.5rem 4rem 1.5rem;
        background-attachment: scroll;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    /* === STATS SECTION MOBILE === */
    .stats-section {
        flex-direction: column;
        width: 90%;
        margin-top: -80px;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    /* === INFO SECTIONS MOBILE === */
    .info-section {
        padding: 3rem 1.5rem;
    }
    
    .info-section h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    /* === BOOKING STEPS MOBILE === */
    .booking-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    /* === FAQ MOBILE === */
    .faq-container {
        border-radius: 15px;
        margin: 0 1rem;
    }
    
    .faq-header {
        padding: 2rem 1.5rem;
    }
    
    .faq-header h3 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* === MAP SECTION MOBILE === */
    .map-feature-container {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .map-image-wrapper,
    .map-trails-info {
        flex-basis: 100%;
    }
    
    .map-trails-info h3 {
        font-size: 1.5rem;
    }
    
    .trail-desc {
        padding: 1.2rem;
    }
    
    .btn-download {
        width: 100%;
        text-align: center;
    }
    
    .map-embed-container {
        height: 400px;
        border-radius: 15px;
        margin: 0 1rem;
    }
    
    /* === DASHBOARD MOBILE === */
    .dashboard-container {
        padding: 1.5rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .dashboard-header h1 {
        font-size: 1.8rem;
    }
    
    .user-info {
        text-align: center;
        margin-top: 1rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* === TABLE MOBILE === */
    .table-container {
        margin: 0 1rem 2rem 1rem;
        border-radius: 15px;
    }
    
    .table-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .table-header h2 {
        font-size: 1.3rem;
    }
    
    .table-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .btn-add {
        width: 100%;
        justify-content: center;
    }
    
    /* Table scroll horizontal */
    .data-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .data-table thead,
    .data-table tbody {
        display: table;
        width: 100%;
    }
    
    .data-table thead th,
    .data-table tbody td {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .action-buttons {
        flex-wrap: nowrap;
    }
    
    .btn-action {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    /* === FORMS MOBILE === */
    .form-container {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .form-container h2 {
        font-size: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .btn-submit,
    .btn-cancel {
        width: 100%;
    }
    
    /* === AUTH PAGES MOBILE === */
    .auth-page .auth-container {
        flex-direction: column;
        width: 95%;
        min-height: auto;
    }
    
    .auth-page .auth-form-section {
        padding: 2rem 1.5rem;
    }
    
    .auth-page .auth-title {
        font-size: 1.8rem;
    }
    
    .auth-page .auth-image-section {
        min-height: 200px;
        order: -1;
    }
    
    /* === CONTENT PAGES MOBILE === */
    .content-page {
        padding: 0 1rem;
        margin: 1.5rem auto;
    }
    
    .page-header {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-content {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .guide-section h2 {
        font-size: 1.5rem;
    }
    
    .guide-section h3 {
        font-size: 1.2rem;
    }
    
    /* === SIDEBAR NAVIGATION MOBILE === */
    .page-container {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .sidebar {
        position: static;
        width: 100%;
        min-width: auto;
        border-radius: 15px;
    }
    
    /* === FOOTER MOBILE === */
    .footer {
        padding: 2.5rem 1.5rem 1rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* MOBILE SMALL (< 480px) */
@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .info-section h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .navbar {
        width: 90vw;
        max-width: 300px;
    }
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}
