/* ========================================== */
/* SNORKLING DREAM - MODERN OCEAN THEME
/* Version: 4.0 - Glassmorphism & Neumorphism
/* ========================================== */

/* ========== CSS VARIABLES / ROOT ========== */
:root {
    /* Ocean Color Palette */
    --deep-blue: #001a33;
    --ocean-blue: #003d66;
    --wave-blue: #006699;
    --teal: #0099cc;
    --cyan: #00ccff;
    --light-cyan: #66e0ff;
    --sea-foam: #e6f7ff;
    --white: #ffffff;
    --sand: #f5e6ca;
    --coral: #ff7f50;
    --coral-dark: #ff6347;
    --gold: #ffd700;
    --dark-glass: rgba(0, 25, 45, 0.85);
    --light-glass: rgba(255, 255, 255, 0.15);
    --border-glass: rgba(255, 255, 255, 0.25);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--deep-blue) 0%, var(--teal) 100%);
    --gradient-sunset: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
    --gradient-gold: linear-gradient(135deg, #f1c40f, #e67e22);
    
    /* Shadows */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.2);
    --neumorph-light: 20px 20px 40px rgba(0, 0, 0, 0.1), -20px -20px 40px rgba(255, 255, 255, 0.05);
    --neumorph-dark: inset 8px 8px 15px rgba(0, 0, 0, 0.2), inset -8px -8px 15px rgba(255, 255, 255, 0.05);
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Clash Display', 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 20px;
}

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--deep-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--coral);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}

/* ========== GLASSMORPHISM COMPONENTS ========== */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
}

.glass-card {
    background: var(--light-glass);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid var(--border-glass);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ========== NAVBAR ========== */
#navbar {
    background: rgba(0, 25, 51, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

#navbar.scrolled {
    background: rgba(0, 20, 40, 0.98);
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--cyan);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--cyan) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

/* Language Buttons */
.btn-lang {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.btn-lang.active {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--deep-blue);
}

.btn-booking-nav {
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    color: white;
    border-radius: 40px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 99, 71, 0.3);
}

.btn-booking-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 99, 71, 0.4);
    color: white;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 99, 71, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 99, 71, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 99, 71, 0); }
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #001a33 0%, #003d66 50%, #0099cc 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Floating Bubbles */
.hero-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-bubbles span {
    position: absolute;
    bottom: -50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    pointer-events: none;
    animation: bubbleUp 8s infinite ease-in-out;
}

.hero-bubbles span:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-duration: 6s; }
.hero-bubbles span:nth-child(2) { width: 120px; height: 120px; left: 25%; animation-duration: 8s; animation-delay: 1s; }
.hero-bubbles span:nth-child(3) { width: 50px; height: 50px; left: 45%; animation-duration: 5s; animation-delay: 2s; }
.hero-bubbles span:nth-child(4) { width: 100px; height: 100px; left: 65%; animation-duration: 7s; animation-delay: 0.5s; }
.hero-bubbles span:nth-child(5) { width: 70px; height: 70px; left: 80%; animation-duration: 6s; animation-delay: 3s; }
.hero-bubbles span:nth-child(6) { width: 150px; height: 150px; left: 90%; animation-duration: 9s; animation-delay: 1.5s; }
.hero-bubbles span:nth-child(7) { width: 40px; height: 40px; left: 15%; animation-duration: 4s; animation-delay: 2.5s; }
.hero-bubbles span:nth-child(8) { width: 90px; height: 90px; left: 50%; animation-duration: 7s; animation-delay: 0.8s; }
.hero-bubbles span:nth-child(9) { width: 60px; height: 60px; left: 70%; animation-duration: 5.5s; animation-delay: 4s; }
.hero-bubbles span:nth-child(10) { width: 110px; height: 110px; left: 35%; animation-duration: 8.5s; animation-delay: 2.2s; }

@keyframes bubbleUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) scale(1.5);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.title-line1 {
    display: block;
}

.title-line2 {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    margin-bottom: 35px;
}

.divider {
    opacity: 0.5;
}

.pulse-icon {
    animation: pulseIcon 1.5s infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: var(--gradient-gold);
    color: var(--deep-blue);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: var(--deep-blue);
}

.btn-outline-hero {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline-hero:hover {
    background: white;
    color: var(--deep-blue);
}

.bounce-icon {
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
    animation: fadeUp 2s infinite;
}

@keyframes fadeUp {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background: white;
    padding: 40px 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 5;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.trust-icon {
    font-size: 2.5rem;
}

.trust-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--deep-blue);
    display: block;
    line-height: 1;
}

.trust-label {
    font-size: 0.85rem;
    color: #666;
}

/* ========== SECTION TITLES ========== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 153, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    color: var(--teal);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: var(--deep-blue);
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: var(--section-padding);
    background: var(--sea-foam);
}

.about-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-main-image:hover {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.badge-label {
    font-size: 0.8rem;
}

.floating-card {
    position: absolute;
    top: 20px;
    right: -20px;
    background: white;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 220px;
}

.floating-avatar {
    font-size: 2rem;
}

.about-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.about-heading .highlight {
    color: var(--teal);
    position: relative;
    display: inline-block;
}

.about-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(0, 153, 204, 0.2);
    z-index: -1;
}

.about-description {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
}

/* ========== PAKET CARDS ========== */
.paket-section {
    padding: var(--section-padding);
    background: white;
}

.paket-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
}

.paket-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.paket-card.featured {
    transform: scale(1.02);
    border: 2px solid var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.paket-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: var(--deep-blue);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 10;
}

.paket-header {
    text-align: center;
    padding: 40px 20px;
    color: white;
    position: relative;
}

.basic-header {
    background: linear-gradient(135deg, #006699, #003d66);
}

.premium-header {
    background: linear-gradient(135deg, #0099cc, #006699);
}

.vip-header {
    background: linear-gradient(135deg, #ff7f50, #ff6347);
}

.paket-ribbon {
    position: absolute;
    top: 15px;
    left: -30px;
    background: var(--gold);
    color: var(--deep-blue);
    padding: 5px 30px;
    transform: rotate(-45deg);
    font-size: 0.75rem;
    font-weight: 800;
}

.paket-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.paket-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.paket-price {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.paket-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.paket-price .suffix {
    font-size: 1.5rem;
}

.paket-price small {
    font-size: 0.9rem;
    font-weight: normal;
}

.paket-body {
    padding: 30px;
}

.paket-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.paket-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.paket-features li i {
    color: var(--teal);
    font-size: 1.1rem;
}

.btn-package {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-basic {
    background: #006699;
    color: white;
}

.btn-basic:hover {
    background: #003d66;
    color: white;
}

.btn-premium {
    background: var(--teal);
    color: white;
}

.btn-premium:hover {
    background: #0077aa;
    color: white;
}

.btn-vip {
    background: var(--coral);
    color: white;
}

.btn-vip:hover {
    background: var(--coral-dark);
    color: white;
}

.btn-book {
    background: var(--deep-blue);
    color: white;
}

.btn-book:hover {
    background: #002244;
    color: white;
}

/* ========== DESTINASI CARDS ========== */
.destinasi-section {
    padding: var(--section-padding);
    background: var(--sea-foam);
}

.destinasi-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.destinasi-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destinasi-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.destinasi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destinasi-card:hover .destinasi-image img {
    transform: scale(1.1);
}

.destinasi-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
}

.destinasi-info {
    padding: 20px;
}

.destinasi-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.destinasi-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.spot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spot-tags span {
    background: #e8f4f8;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--teal);
}

/* ========== VIDEO SECTION ========== */
.video-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--deep-blue), var(--teal));
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
}

.video-content {
    color: white;
}

.video-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
    }
    100% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

.video-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.btn-video {
    background: var(--coral);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-video:hover {
    background: var(--coral-dark);
    transform: scale(1.05);
}

/* ========== GALLERY SECTION ========== */
.galeri-section {
    padding: var(--section-padding);
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery-prev { left: 20px; }
.gallery-next { right: 20px; }

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ========== TESTIMONI SECTION ========== */
.testimoni-section {
    padding: var(--section-padding);
    background: var(--sea-foam);
}

.testimoni-slider {
    overflow: hidden;
    position: relative;
}

.testimoni-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 24px;
}

.testimoni-card {
    min-width: calc(33.333% - 16px);
    background: white;
    border-radius: 24px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .testimoni-card {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .testimoni-card {
        min-width: 100%;
    }
}

.testimoni-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimoni-rating {
    color: var(--gold);
    margin-bottom: 15px;
}

.testimoni-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimoni-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimoni-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimoni-author strong {
    display: block;
}

.testimoni-author span {
    font-size: 0.75rem;
    color: var(--teal);
}

.testimoni-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: var(--teal);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--deep-blue);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 25px;
    background: var(--teal);
    border-radius: 10px;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: var(--section-padding);
    background: white;
}

.faq-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.faq-heading .highlight {
    color: var(--teal);
}

.faq-illustration {
    margin-top: 40px;
}

.faq-illustration i {
    font-size: 6rem;
    color: var(--teal);
    opacity: 0.3;
}

.accordion-item {
    background: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-header {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    background: white;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: var(--sea-foam);
}

.accordion-body {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.accordion-body.active {
    max-height: 300px;
    padding: 0 20px 20px 20px;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--deep-blue), var(--teal));
}

.cta-wrapper {
    text-align: center;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-wa {
    background: #25d366;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-wa:hover {
    background: #128C7E;
    transform: scale(1.05);
    color: white;
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--deep-blue);
}

/* ========== BOOKING SECTION ========== */
.booking-section {
    padding: var(--section-padding);
    background: var(--sea-foam);
}

.booking-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.booking-heading .highlight {
    color: var(--teal);
}

.contact-info {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.contact-item a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
}

.booking-form {
    padding: 35px;
    border-radius: 30px;
    background: white;
    box-shadow: var(--shadow-md);
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
    outline: none;
}

label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.btn-submit {
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========== BLOG PREVIEW ========== */
.blog-preview-section {
    padding: var(--section-padding);
    background: white;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 20px;
    color: white;
    font-size: 0.75rem;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.read-more {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
    color: var(--deep-blue);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--deep-blue);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin: 15px 0 10px;
}

.footer-brand h3 span {
    color: var(--cyan);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyan);
    padding-left: 5px;
}

.footer-newsletter p {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 30px;
    outline: none;
}

.newsletter-form button {
    background: var(--teal);
    border: none;
    padding: 0 15px;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--cyan);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--teal);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--deep-blue);
    transform: translateY(-5px);
}

/* ========== LOADING OVERLAY ========== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-overlay.fade-out {
    opacity: 0;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.loading-spinner i {
    font-size: 3rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== VIDEO MODAL ========== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 80%;
    height: 80%;
    max-width: 1000px;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1200px) {
    :root {
        --section-padding: 60px 0;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 25, 51, 0.98);
        backdrop-filter: blur(12px);
        padding: 20px;
        border-radius: 20px;
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .paket-card.featured {
        transform: scale(1);
    }
    
    .paket-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .booking-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-location {
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.p-relative { position: relative; }
.overflow-hidden { overflow: hidden; }


/* Avatar Testimoni dengan Inisial */
.testimoni-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimoni-card:hover .testimoni-avatar {
    transform: scale(1.05);
}

.testimoni-avatar span {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
    .testimoni-avatar {
        width: 45px;
        height: 45px;
    }
    .testimoni-avatar span {
        font-size: 1rem;
    }
}


/* Instagram Thumbnail Styles */
.instagram-thumbnail {
    display: block;
    margin: 20px auto;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.thumbnail-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.thumbnail-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.instagram-thumbnail:hover .thumbnail-wrapper img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-overlay i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.instagram-thumbnail:hover .play-overlay {
    opacity: 1;
}

.btn-video-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-video-secondary:hover {
    background: white;
    color: var(--deep-blue);
}

.instagram-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Instagram Card Mockup */
.instagram-card {
    max-width: 380px;
    margin: 20px auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.instagram-card-header {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.instagram-card-header i:first-child {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.instagram-card-header span {
    font-weight: 600;
    flex: 1;
}

.instagram-card-video {
    position: relative;
    aspect-ratio: 9/16;
    background: #1a1a2e;
}

.instagram-card-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon i {
    font-size: 2rem;
    color: white;
}

.instagram-card-footer {
    padding: 12px 15px;
}

.reel-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.reel-actions i {
    font-size: 1.3rem;
    cursor: pointer;
}

.reel-actions i:hover {
    color: var(--coral);
}

@media (max-width: 768px) {
    .instagram-card {
        max-width: 100%;
    }
    .instagram-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-video, .btn-video-secondary {
        width: 100%;
        justify-content: center;
    }
}