/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Dark Theme Variables (Default) */
    --bg-color: #0b1a33;
    --bg-gradient: linear-gradient(135deg, #0b1a33 0%, #050d1a 100%);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --gold-gradient: linear-gradient(135deg, #f3e09b 0%, #d4af37 50%, #aa8010 100%);
    --gold-btn-hover: #e5c158;
    --navbar-bg: rgba(11, 26, 51, 0.7);
    --input-bg: rgba(255, 255, 255, 0.05);
    --input-border: rgba(255, 255, 255, 0.1);
    --modal-bg: rgba(5, 13, 26, 0.95);
    --shadow-color: rgba(0, 0, 0, 0.5);
    --glass-blur: 15px;
    --transition-speed: 0.3s;
}

[data-theme="light"] {
    /* Light Theme Variables */
    --bg-color: #f4f6fa;
    --bg-gradient: linear-gradient(135deg, #f4f6fa 0%, #e2e8f0 100%);
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-border: rgba(0, 0, 0, 0.06);
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --gold: #b38f1d;
    --gold-glow: rgba(179, 143, 29, 0.2);
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b38f1d 100%);
    --gold-btn-hover: #967512;
    --navbar-bg: rgba(244, 246, 252, 0.85);
    --input-bg: rgba(255, 255, 255, 0.9);
    --input-border: rgba(0, 0, 0, 0.1);
    --modal-bg: rgba(255, 255, 255, 0.98);
    --shadow-color: rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    background-color: var(--bg-color);
    background-image: var(--bg-gradient);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-btn-hover);
}

/* Background Animations */
.bg-animations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    background: radial-gradient(circle, var(--gold-glow) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: float 25s infinite linear;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 35s;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(50px, 80px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translate(-30px, 40px) rotate(240deg) scale(0.95);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

/* Loading Screen */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.loader-logo span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Header Banner */
.header-banner {
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: inset 0 -100px 80px var(--bg-color);
    transition: box-shadow var(--transition-speed);
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 26, 51, 0.4) 0%, var(--bg-color) 100%);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.header-content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-primary);
    opacity: 0.9;
    line-height: 1.6;
}

/* Nav & Filter Bar */
.nav-section {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navbar-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--card-border);
    padding: 15px 0;
    box-shadow: 0 4px 30px var(--shadow-color);
    transition: background-color var(--transition-speed), border var(--transition-speed);
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Categories List */
.categories-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none; /* Hide standard Firefox scrollbar */
}
.categories-wrapper::-webkit-scrollbar {
    display: none; /* Hide Chrome/Safari scrollbars */
}

.btn-category {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-speed) ease;
}

.btn-category:hover, .btn-category.active {
    background: var(--gold-gradient);
    color: #0b1a33;
    border-color: var(--gold);
    box-shadow: 0 4px 15px var(--gold-glow);
    transform: translateY(-2px);
}

/* Search Bar */
.search-box {
    position: relative;
    min-width: 300px;
}

.search-box input {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    padding: 10px 20px 10px 45px;
    border-radius: 30px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: all var(--transition-speed) ease;
}

.search-box input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

/* Theme Switcher Button */
.btn-theme {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all var(--transition-speed) ease;
}

.btn-theme:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 12px var(--gold-glow);
}

/* Video Grid Gallery */
.gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    transition: all 0.5s ease;
}

/* Video Card */
.video-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px var(--shadow-color);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15), 0 0 20px var(--gold-glow);
}

.thumbnail-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    overflow: hidden;
    background-color: #000;
    cursor: pointer;
}

.thumbnail-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .thumbnail-container img {
    transform: scale(1.06);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-icon-btn {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1a33;
    font-size: 1.5rem;
    box-shadow: 0 0 20px var(--gold-glow);
    transform: scale(0.8);
    transition: transform var(--transition-speed) ease;
}

.video-card:hover .play-icon-btn {
    transform: scale(1);
}

.video-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.video-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--gold-glow);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.video-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.video-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-primary);
}

.video-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-play-card {
    margin-top: auto;
    width: 100%;
    background: var(--gold-gradient);
    border: none;
    color: #0b1a33;
    font-family: inherit;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.btn-play-card:hover {
    background: var(--gold-btn-hover);
    transform: translateY(-2px);
}

/* Popup YouTube Player Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(5, 13, 26, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--modal-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--gold);
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal-body {
    padding: 25px;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 120px;
    overflow-y: auto;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Footer styling */
footer {
    background: var(--navbar-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-top: 1px solid var(--card-border);
    padding: 60px 0 30px;
    color: var(--text-primary);
    position: relative;
}

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

.footer-col h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link i {
    font-size: 1.2rem;
    color: var(--gold);
}

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

.address-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.copyright-section {
    border-top: 1px solid var(--card-border);
    padding-top: 30px;
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* Responsive Grid Media Queries */
@media (min-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Admin Dashboard CSS Styling */
.admin-header {
    background: var(--navbar-bg);
    border-bottom: 1px solid var(--card-border);
    padding: 15px 0;
}

.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.admin-title span {
    color: var(--gold);
}

.admin-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.admin-login-card {
    max-width: 400px;
    margin: 100px auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.admin-tabs {
    display: flex;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 30px;
    gap: 10px;
}

.admin-tab {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.admin-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.admin-panel {
    display: none;
}

.admin-panel.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-control {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th, .admin-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}

.admin-table th {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 600;
    color: var(--text-primary);
}

.admin-table td {
    color: var(--text-secondary);
}

.btn-primary {
    background: var(--gold-gradient);
    border: none;
    color: #0b1a33;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--gold-btn-hover);
    transform: translateY(-1px);
}

.btn-danger {
    background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-danger:hover {
    opacity: 0.9;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.btn-edit {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 5px;
}

.btn-edit:hover {
    background: var(--gold-gradient);
    color: #0b1a33;
    border-color: var(--gold);
}

.alert-message {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.alert-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

/* Modal form style inside admin */
.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
}

.admin-modal-content {
    background: var(--modal-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    position: relative;
}

/* --- ADDED CUSTOM STYLE FOR CAMPSHOLAWAT.COM UPGRADES --- */

/* Mobile Hamburger Menu */
.hamburger-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: color var(--transition-speed) ease;
}

.hamburger-menu-btn:hover {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

@media (max-width: 768px) {
    .hamburger-menu-btn {
        display: block;
    }
}

/* Mobile Drawer Menu */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg-color);
    background-image: var(--bg-gradient);
    border-left: 1px solid var(--card-border);
    z-index: 1000;
    box-shadow: -10px 0 30px var(--shadow-color);
    padding: 80px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-drawer.open {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-drawer a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all var(--transition-speed) ease;
}

.mobile-menu-drawer a:hover {
    background: var(--gold-gradient);
    color: #0b1a33;
    border-color: var(--gold);
    box-shadow: 0 4px 15px var(--gold-glow);
    transform: translateX(5px);
}

/* Info Terkini Slider styling */
.info-slider-section {
    padding: 40px 0 20px 0;
}

.info-slider-container {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow-color);
    border: 1px solid var(--card-border);
}

.info-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    z-index: 1;
}

.info-slide.active {
    opacity: 1;
    z-index: 2;
}

.info-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(11, 26, 51, 0.95) 0%, rgba(11, 26, 51, 0.3) 100%);
    z-index: 1;
}

.info-slide-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 80%;
}

.info-slide-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(11, 26, 51, 0.8);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-speed) ease;
}

.slider-arrow:hover {
    background: var(--gold-gradient);
    color: #0b1a33;
    border-color: var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
}

.slider-arrow-prev {
    left: 20px;
}

.slider-arrow-next {
    right: 20px;
}

/* Camp Sholawat Card Sections */
.cs-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.cs-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px var(--shadow-color);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.cs-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15), 0 0 20px var(--gold-glow);
}

.cs-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cs-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Video Motivasi Section */
.section-title-premium {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 15px;
}

.section-title-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.motivasi-section {
    padding: 60px 0;
    border-top: 1px solid var(--card-border);
}

.btn-more-container {
    text-align: center;
    margin-top: 45px;
}

/* Artikel Pilihan Section */
.artikel-section {
    padding: 60px 0;
    border-top: 1px solid var(--card-border);
}

.artikel-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.artikel-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 25px;
    align-items: center;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    box-shadow: 0 10px 25px var(--shadow-color);
}

.artikel-card:hover {
    transform: translateX(8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1), 0 0 15px var(--gold-glow);
}

.artikel-card-thumb {
    width: 180px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--card-border);
}

.artikel-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.artikel-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    transition: color var(--transition-speed) ease;
}

.artikel-card:hover .artikel-card-title {
    color: var(--gold);
}

.artikel-card-excerpt {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artikel-readmore {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 650px) {
    .artikel-card {
        flex-direction: column;
        align-items: stretch;
    }
    .artikel-card-thumb {
        width: 100%;
        height: 180px;
    }
}

/* Testimoni Section */
.testimoni-section {
    padding: 60px 0;
    border-top: 1px solid var(--card-border);
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.testimoni-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px var(--shadow-color);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimoni-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.12), 0 0 18px var(--gold-glow);
}

.testimoni-icon {
    font-size: 1.8rem;
    color: var(--gold-glow);
    margin-bottom: 15px;
}

.testimoni-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.testimoni-meta {
    border-top: 1px solid var(--card-border);
    padding-top: 15px;
}

.testimoni-author {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.testimoni-location {
    font-size: 0.8rem;
    color: var(--gold);
    margin-top: 2px;
}

/* Footer Upgrades */
.footer-admin-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.footer-admin-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px;
    transition: all var(--transition-speed) ease;
}

.footer-admin-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.05);
}

.footer-admin-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.footer-admin-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-admin-card .btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.footer-admin-card .btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

