/**
 * MODERN TOURISM WEBSITE DESIGN 2025
 * Pariwisata Jambi - Premium & Contemporary Style
 */

/* ========== IMPORT GOOGLE FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

/* ========== CSS VARIABLES - MODERN COLOR PALETTE ========== */
:root {
    /* Primary Colors - Fresh Green */
    --primary: #2563eb;
    --primary-dark: #3b82f6;
    --primary-light: #60a5fa;
    
    /* Secondary Colors - Vibrant */
    --secondary: #f59e0b;
    --accent: #ef4444;
    --accent-blue: #3b82f6;
    
    /* Neutrals */
    --dark: #0f172a;
    --gray-dark: #1e293b;
    --gray: #64748b;
    --gray-light: #f1f5f9;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    --gradient-vibrant: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== GLOBAL RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========== PRELOADER / LOADING ANIMATION ========== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
    color: var(--white);
}

.loading-circle {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.loading-circle .circle {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.loading-circle .circle:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-circle .circle:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.loading-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar .progress {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(16,185,129,0.5);
}

/* ========== GLOBAL RESET ========== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== MODERN NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* ========== LOGO - TANPA ICON ========== */
.logo a {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hapus styling logo icon lama */
.logo i {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    margin: 4px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== MODERN HERO SECTION ========== */
.modern-hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 76px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(16, 185, 129, 0.3) 100%);
}

/* Particles Animation */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rise 15s infinite ease-in;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    left: 35%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    left: 50%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    left: 65%;
    animation-delay: 3s;
    animation-duration: 16s;
}

.particle:nth-child(6) {
    left: 75%;
    animation-delay: 5s;
    animation-duration: 13s;
}

.particle:nth-child(7) {
    left: 85%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    left: 95%;
    animation-delay: 4.5s;
    animation-duration: 19s;
}

@keyframes rise {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    50% {
        opacity: 0.5;
        transform: translateX(50px) rotate(180deg);
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(-50px) rotate(360deg);
    }
}

/* Wave Animation */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
}

.parallax > use {
    animation: wave-move 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes wave-move {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 0.8s ease, float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge i {
    color: #f59e0b;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
}

.gradient-text {
    background: linear-gradient(135deg, #1013b9 0%, #3493d3 50%, #6e84e7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 700px;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Statistics */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(7, auto);
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 40px 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1.6s ease;
    max-width: fit-content;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.stat-number::after {
    content: '+';
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 2s ease;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

.scroll-indicator p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Video Section */
.video-section {
    background: linear-gradient(to bottom, var(--gray-light), var(--white));
    padding: 120px 0;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.video-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.video-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark);
}

.video-text p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.video-features {
    list-style: none;
    padding: 0;
}

.video-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--gray-dark);
}

.video-features i {
    color: var(--primary);
    font-size: 20px;
}

.video-player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--dark);
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(16, 19, 185, 0.4);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(16, 47, 185, 0.6);
}

.play-button i {
    margin-left: 4px;
}

/* ========== HERO SLIDER - ULTRA MODERN ========== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 76px;
    display: none; /* Hidden by default, use modern-hero instead */
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    animation: zoomIn 8s ease-out forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 86px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    animation: slideUp 1s ease;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 40px;
    max-width: 600px;
    animation: slideUp 1.2s ease;
    font-weight: 300;
    letter-spacing: 0.5px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: 30px; }
.slider-btn.next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 6px;
}

/* ========== BUTTONS - MODERN DESIGN ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: var(--transition);
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(19, 16, 185, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========== SECTIONS ========== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 76px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M1200 120L0 16.48V0h1200z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 16px;
    position: relative;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
    position: relative;
}

/* ========== INFO SECTION ========== */
.info-section {
    background: linear-gradient(to bottom, var(--gray-light), var(--white));
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.info-card {
    background: var(--white);
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    border: 1px solid rgba(0,0,0,0.05);
}

.info-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.info-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin: 0 auto 28px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-5deg);
    transition: var(--transition);
}

.info-card:hover .info-icon {
    transform: rotate(0deg) scale(1.1);
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark);
}

.info-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ========== WISATA GRID - MODERN CARDS ========== */
.wisata-grid, .fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.wisata-card, .fasilitas-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    border: 1px solid rgba(0,0,0,0.05);
}

.wisata-card:hover, .fasilitas-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.wisata-image, .fasilitas-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.wisata-image img, .fasilitas-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wisata-card:hover .wisata-image img,
.fasilitas-card:hover .fasilitas-image img {
    transform: scale(1.15);
}

.wisata-badge, .fasilitas-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.wisata-content, .fasilitas-content {
    padding: 20px;
}
.wisata-content h3, .fasilitas-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
    transition: var(--transition);
}

.wisata-card:hover h3,
.fasilitas-card:hover h3 {
    color: var(--primary);
}

.wisata-location, .fasilitas-location {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wisata-location i, .fasilitas-location i {
    color: var(--primary);
}

.wisata-desc, .fasilitas-desc {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.wisata-info-grid, .fasilitas-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    background: var(--gray-light);
    padding: 10px 14px;
    border-radius: 12px;
}

.info-item i {
    color: var(--primary);
    font-size: 16px;
}

.wisata-footer, .fasilitas-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--gray-light);
}

.wisata-rating, .fasilitas-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fbbf24;
    font-weight: 700;
    font-size: 18px;
}

/* ========== FILTER SECTION ========== */
.filter-section {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-md);
}

.filter-section h3 {
    margin-bottom: 24px;
    color: var(--dark);
    font-size: 20px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--gray-light);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--gray-dark);
}

.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.result-info {
    margin-bottom: 32px;
    padding: 20px;
    background: var(--gray-light);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    background: var(--gray-light);
    padding: 20px 0;
    font-size: 14px;
    margin-top: 76px;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 12px;
    color: var(--gray);
}

/* ========== DETAIL PAGE ========== */
.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.detail-image {
    position: relative;
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-xl);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.detail-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    color: var(--dark);
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray-light);
}

.rating-large {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    color: #fbbf24;
    font-weight: 700;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    background: var(--gray-light);
    padding: 12px 20px;
    border-radius: 50px;
}

.location-badge i {
    color: var(--primary);
}

.detail-description,
.detail-video,
.detail-map {
    margin-bottom: 48px;
}

.detail-description h2,
.detail-video h2,
.detail-map h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-description p {
    line-height: 1.9;
    color: var(--gray-dark);
    font-size: 16px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#map {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ========== SIDEBAR ========== */
.detail-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.info-card, .action-card, .share-card {
    background: var(--white);
    padding: 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
    border: 1px solid rgba(0,0,0,0.05);
}

.info-card h3, .action-card h3, .share-card h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-light);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 14px;
}

.info-value {
    font-weight: 600;
    color: var(--dark);
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    transition: var(--transition);
    font-size: 18px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }

/* ========== EVENT ========== */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.event-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    gap: 24px;
    padding: 24px;
    transition: var(--transition-slow);
    border: 1px solid rgba(0,0,0,0.05);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.event-date {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    min-width: 90px;
    height: fit-content;
    box-shadow: var(--shadow-md);
}

.event-date .day {
    display: block;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.9;
}

.event-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.event-location {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-location i {
    color: var(--primary);
}

.event-desc {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.event-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.event-status.upcoming {
    background: #dbeafe;
    color: #1e40af;
}

.event-status.ongoing {
    background: #dcfce7;
    color: #166534;
}

.event-status.finished {
    background: var(--gray-light);
    color: var(--gray);
}

/* Event List untuk halaman detail */
.event-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.event-item {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.event-item .event-image {
    height: 350px;
}

.event-item .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-detail {
    padding: 40px;
}

.event-detail h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark);
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-dark);
    background: var(--gray-light);
    padding: 12px 20px;
    border-radius: 50px;
}

.meta-item i {
    color: var(--primary);
    font-size: 18px;
}

/* ========== GALERI - MASONRY STYLE ========== */
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.galeri-item {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
}

.galeri-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.galeri-item:hover img {
    transform: scale(1.2);
}

.galeri-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    padding: 32px 24px;
    transform: translateY(100%);
    transition: var(--transition);
}

.galeri-item:hover .galeri-overlay {
    transform: translateY(0);
}

.galeri-overlay h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.galeri-overlay p {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.galeri-kategori {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* ========== TESTIMONI - PREMIUM CARDS ========== */
.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.testimoni-card {
    background: var(--white);
    padding: 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.testimoni-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}

.testimoni-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimoni-header {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimoni-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    flex-shrink: 0;
}

.testimoni-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimoni-info h4 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--dark);
}

.testimoni-info p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 12px;
}

.rating {
    display: flex;
    gap: 4px;
}

.rating i {
    color: #d1d5db;
    font-size: 18px;
}

.rating i.active {
    color: #fbbf24;
}

.testimoni-content p {
    color: var(--gray-dark);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimoni-content small {
    display: block;
    margin-top: 20px;
    color: var(--gray);
    font-size: 13px;
}

/* Form Testimoni */
.testimoni-form-section {
    background: linear-gradient(135deg, var(--gray-light), var(--white));
    padding: 48px;
    border-radius: 24px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

.testimoni-form-section h2 {
    margin-bottom: 32px;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

/* ========== FORMS - MODERN STYLE ========== */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-form-section h2,
.contact-info-section h2 {
    margin-bottom: 32px;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.contact-text h4 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 18px;
}

.contact-text p {
    color: var(--gray);
    line-height: 1.7;
}

.social-media-section {
    margin-top: 32px;
}

.social-media-section h4 {
    margin-bottom: 16px;
    color: var(--dark);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-links a:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: var(--shadow-lg);
}

/* ========== INFO BANNER ========== */
.info-banner {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 24px;
    margin: 60px 0;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.info-banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 48px;
}

.info-banner-icon {
    font-size: 72px;
    opacity: 0.9;
}

.info-banner-text {
    flex: 1;
}

.info-banner-text h3 {
    font-size: 28px;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.info-banner-text p {
    opacity: 0.95;
    font-size: 16px;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 32px;
    margin: 80px 0;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== FOOTER - MODERN DESIGN ========== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column h3 {
    margin-bottom: 24px;
    color: var(--white);
    font-size: 20px;
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-column ul li a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transition: var(--transition);
}

.footer-column ul li a:hover::before {
    opacity: 1;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.7);
}

.contact-info i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 18px;
}

.social-media {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-media a {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 20px;
}

.social-media a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: var(--white);
    font-size: 15px;
}

.newsletter-form button {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom i {
    color: var(--accent);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
}

/* ========== NO DATA STATE ========== */
.no-data {
    text-align: center;
    padding: 100px 20px;
}

.no-data i {
    font-size: 100px;
    color: var(--gray-light);
    margin-bottom: 24px;
    opacity: 0.5;
}

.no-data h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--gray-dark);
}

.no-data p {
    color: var(--gray);
    margin-bottom: 32px;
    font-size: 16px;
}

/* ========== BADGES ========== */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

/* ========== RELATED SECTION ========== */
.related-section {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 2px solid var(--gray-light);
}

.related-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--dark);
}

/* ========== SCROLL TO TOP ========== */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    z-index: 999;
    display: none;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-sidebar {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .info-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 32px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    /* Modern Hero */
    .modern-hero {
        height: 100vh;
        min-height: 700px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        margin-bottom: 60px;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 24px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    /* Video Section */
    .video-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-text h2 {
        font-size: 32px;
    }
    
    /* Hero - Old */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .slider-btn {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
    
    .slider-btn.prev { left: 20px; }
    .slider-btn.next { right: 20px; }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    /* Grids */
    .wisata-grid,
    .fasilitas-grid,
    .galeri-grid,
    .event-grid,
    .testimoni-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* CTA */
    .cta-section {
        padding: 60px 32px;
        margin: 60px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Detail */
    .detail-image {
        height: 280px;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .slide-content h1 {
        font-size: 36px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        justify-content: center;
    }
    
    .detail-meta {
        flex-direction: column;
        gap: 16px;
    }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

/* ========== LOADING ANIMATION ========== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* ========== PRINT STYLES ========== */
@media print {
    .navbar,
    .slider-btn,
    .slider-dots,
    .footer,
    .btn,
    .filter-section,
    .share-card {
        display: none;
    }
    
    .hero-slider {
        height: auto;
    }
}

/* Video iframe styling */
.video-iframe {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Rasio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.video-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-thumbnail {
    transition: all 0.3s ease;
}
