/* ============================================
   MALAKA ASRI ADVENTURE - MAIN STYLESHEET
   ============================================ */

/* ========== RESET & VARIABLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0077B6;
    --primary-dark: #023047;
    --secondary: #00B4D8;
    --accent: #FFB703;
    --accent-dark: #FB8500;
    --white: #FFFFFF;
    --light: #F8F9FA;
    --gray: #6C757D;
    --dark: #212529;
    --success: #2EC4B6;
    --shadow: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 16px;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
    max-height: 45px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.logo-text span {
    color: var(--accent);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-list li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
    display: block;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
}

.dropdown > a i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
    padding: 8px 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 25px;
}

.btn-book {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-book:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 25px 30px;
        gap: 15px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list li a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid #eee;
    }
    
    .btn-book {
        display: none;
    }
    
    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        background: transparent;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown > a i {
        float: right;
        margin-top: 4px;
    }
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 60px;
}

.hero-content {
    max-width: 650px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.hero-title span {
    color: var(--accent);
}

.hero-desc {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-accent {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-lg {
    padding: 18px 35px;
    font-size: 16px;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(20px);
    padding: 20px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

/* Hero Slider */
.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

/* ========== SECTION STYLING ========== */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    background: rgba(0,119,182,0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: 'Montserrat', sans-serif;
}

.section-desc {
    color: var(--gray);
    max-width: 600px;
    margin: 10px auto 0;
}

/* ========== SERVICES GRID ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
}

.service-body {
    padding: 25px;
    position: relative;
}

.service-icon {
    width: 55px;
    height: 55px;
    background: rgba(0,119,182,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-top: -45px;
    margin-bottom: 15px;
}

.service-body h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-body p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 13px;
    padding: 5px 0;
}

.service-features i {
    color: var(--success);
    margin-right: 8px;
}

/* ========== PACKAGES GRID ========== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border: 2px solid var(--accent);
    position: relative;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
}

.package-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.package-card.featured .package-header {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: var(--primary-dark);
}

.package-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.package-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.package-price {
    font-size: 28px;
    font-weight: 800;
}

.package-price span {
    font-size: 14px;
    font-weight: normal;
}

.package-durasi {
    font-size: 13px;
    margin-top: 8px;
    opacity: 0.9;
}

.package-body {
    padding: 25px;
}

.package-body ul {
    list-style: none;
    margin: 20px 0;
}

.package-body li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.package-body li:last-child {
    border-bottom: none;
}

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ========== WHY US ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    text-align: center;
    padding: 35px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(0,119,182,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin: 0 auto 20px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    color: var(--gray);
}

/* ========== CTA SECTION ========== */
.cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* ========== TESTIMONI SLIDER ========== */
.testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.testimonial-card {
    min-width: 100%;
    flex-shrink: 0;
    background: white;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFB703;
    font-size: 16px;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0077B6, #023047);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
}

.testimonial-prev, .testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
}

.testimonial-prev {
    left: -20px;
}

.testimonial-next {
    right: -20px;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: #0077B6;
    color: white;
    transform: translateY(-50%) scale(1.05);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: #0077B6;
    width: 28px;
    border-radius: 10px;
}

.testimonial-footer {
    text-align: center;
    margin-top: 20px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-col h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    font-size: 13px;
}

.footer-contact i {
    color: var(--accent);
    width: 20px;
}

.footer-sosmed {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-sosmed a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.footer-sosmed a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
}

/* ========== FLOATING WHATSAPP ========== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    transition: all 0.3s;
    text-decoration: none;
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* ========== POPUP BOOKING ========== */
.booking-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.booking-popup {
    background: white;
    max-width: 450px;
    width: 90%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.booking-popup-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 25px;
    text-align: center;
}

.booking-form {
    padding: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
}

.booking-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .services-grid,
    .packages-grid,
    .why-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid,
    .packages-grid,
    .why-grid,
    .footer-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        position: relative;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== SPOT SLIDER (untuk snorkling.php) ========== */
.spot-slider-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 20px 20px;
}

.spot-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.spot-slider {
    display: flex;
    gap: 20px;
    width: max-content;
}

.spot-card {
    width: 320px;
    flex-shrink: 0;
    scroll-snap-align: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.spot-card.featured {
    position: relative;
    border: 2px solid var(--accent);
}

.spot-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
}

.spot-card-header {
    padding: 25px;
    text-align: center;
    color: white;
}

.spot-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.spot-card-header h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.spot-label {
    font-size: 12px;
    opacity: 0.9;
}

.spot-card-body {
    padding: 20px;
}

.spot-card-body p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.5;
}

.spot-card-body ul {
    list-style: none;
}

.spot-card-body li {
    font-size: 13px;
    padding: 6px 0;
}

.spot-card-body li i {
    color: var(--success);
    margin-right: 8px;
}

.spot-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.spot-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.spot-dots .dot.active {
    background: var(--accent);
    width: 25px;
    border-radius: 10px;
}

/* ========== PAKET SNORKLING GRID (untuk snorkling.php) ========== */
.paket-snorkling-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.paket-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

.paket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.paket-card.featured {
    border: 2px solid var(--accent);
}

.paket-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
}

.paket-header {
    padding: 30px;
    text-align: center;
    color: white;
}

.paket-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.paket-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.paket-price {
    font-size: 28px;
    font-weight: 800;
}

.paket-price span {
    font-size: 14px;
    font-weight: normal;
}

.paket-body {
    padding: 25px;
}

.paket-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.paket-body li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.paket-body li:last-child {
    border-bottom: none;
}

.paket-body li i {
    color: var(--success);
    margin-right: 8px;
    width: 20px;
}

.info-note {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: var(--gray);
}

/* ========== INFO GRID (untuk snorkling.php) ========== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,119,182,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 15px;
}

.info-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 13px;
    color: var(--gray);
}

/* ========== TENTANG HALAMAN (untuk tentang.php) ========== */
.tentang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tentang-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.visimisi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.visimisi-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.visimisi-card:hover {
    transform: translateY(-5px);
}

.visimisi-header {
    padding: 40px;
    text-align: center;
    color: white;
}

.visimisi-header i {
    font-size: 60px;
}

.visimisi-body {
    padding: 25px;
}

.visimisi-body h3 {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.visimisi-body ul {
    list-style: none;
}

.visimisi-body li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tim-card {
    text-align: center;
    padding: 35px 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.tim-card:hover {
    transform: translateY(-5px);
}

.tim-icon {
    width: 70px;
    height: 70px;
    background: rgba(0,119,182,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin: 0 auto 20px;
}

.komitmen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.komitmen-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.komitmen-card:hover {
    transform: translateY(-5px);
}

.komitmen-icon {
    width: 70px;
    height: 70px;
    background: rgba(0,119,182,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin: 0 auto 20px;
}

.statistik-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    padding: 50px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.statistik-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

/* ========== KONTAK HALAMAN (untuk kontak.php) ========== */
.kontak-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.kontak-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
}

.kontak-card:hover {
    transform: translateY(-5px);
}

.kontak-icon-wrapper {
    padding: 40px;
    text-align: center;
}

.kontak-icon-wrapper i {
    font-size: 60px;
    color: rgba(255,255,255,0.5);
}

.kontak-body {
    padding: 25px;
}

.kontak-body h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.kontak-number {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
}

.lokasi-kontak-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* ========== HOMESTAY HALAMAN ========== */
.kamar-slider-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 20px 20px;
}

.kamar-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.kamar-slider {
    display: flex;
    gap: 20px;
    width: max-content;
}

.kamar-card {
    width: 320px;
    flex-shrink: 0;
    scroll-snap-align: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

.kamar-card:hover {
    transform: translateY(-5px);
}

.kamar-card.featured {
    border: 2px solid var(--accent);
}

.kamar-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
}

.kamar-card-header {
    padding: 25px;
    text-align: center;
    color: white;
}

.kamar-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.kamar-card-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.kamar-price {
    font-size: 28px;
    font-weight: 800;
}

.kamar-price span {
    font-size: 14px;
    font-weight: normal;
}

.kamar-card-body {
    padding: 20px;
}

.kamar-card-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.kamar-card-body li {
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.kamar-card-body li:last-child {
    border-bottom: none;
}

.kamar-card-body li i {
    color: var(--success);
    margin-right: 8px;
    width: 20px;
}

.kamar-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.kamar-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.kamar-dots .dot.active {
    background: var(--accent);
    width: 25px;
    border-radius: 10px;
}

.fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.fasilitas-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.fasilitas-card:hover {
    transform: translateY(-5px);
}

.fasilitas-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,119,182,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 15px;
}

.lokasi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.jarak-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jarak-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.jarak-item i {
    color: var(--accent);
    margin-right: 8px;
}

/* ========== SPEEDBOAT HALAMAN ========== */
.speedboat-slider-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 20px 20px;
}

.speedboat-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.speedboat-slider {
    display: flex;
    gap: 20px;
    width: max-content;
}

.speedboat-card {
    width: 320px;
    flex-shrink: 0;
    scroll-snap-align: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.speedboat-card:hover {
    transform: translateY(-5px);
}

.speedboat-card.featured {
    position: relative;
    border: 2px solid var(--accent);
}

.speedboat-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
}

.speedboat-card-header {
    padding: 25px;
    text-align: center;
    color: white;
}

.speedboat-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.speedboat-card-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.speedboat-price {
    font-size: 28px;
    font-weight: 800;
}

.speedboat-price span {
    font-size: 14px;
    font-weight: normal;
}

.speedboat-card-body {
    padding: 20px;
}

.speedboat-card-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.speedboat-card-body li {
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.speedboat-card-body li:last-child {
    border-bottom: none;
}

.speedboat-card-body li i {
    color: var(--success);
    margin-right: 8px;
    width: 20px;
}

.speedboat-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.speedboat-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.speedboat-dots .dot.active {
    background: var(--accent);
    width: 25px;
    border-radius: 10px;
}

.rute-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.rute-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.rute-card:hover {
    transform: translateY(-5px);
}

.rute-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,119,182,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 15px;
}

.keunggulan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.keunggulan-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.keunggulan-card:hover {
    transform: translateY(-5px);
}

.keunggulan-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,119,182,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 15px;
}

@media (max-width: 768px) {
    .paket-snorkling-grid {
        grid-template-columns: 1fr;
    }
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .spot-card {
        width: 280px;
    }
    .tentang-grid {
        grid-template-columns: 1fr;
    }
    .visimisi-grid {
        grid-template-columns: 1fr;
    }
    .tim-grid {
        grid-template-columns: 1fr;
    }
    .komitmen-grid {
        grid-template-columns: 1fr;
    }
    .statistik-banner {
        grid-template-columns: repeat(2, 1fr);
    }
    .kontak-grid {
        grid-template-columns: 1fr;
    }
    .lokasi-kontak-grid {
        grid-template-columns: 1fr;
    }
    .rute-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .keunggulan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .speedboat-card {
        width: 280px;
    }
    .kamar-card {
        width: 280px;
    }
    .fasilitas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lokasi-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .rute-grid {
        grid-template-columns: 1fr;
    }
    .keunggulan-grid {
        grid-template-columns: 1fr;
    }
    .fasilitas-grid {
        grid-template-columns: 1fr;
    }
    .statistik-banner {
        grid-template-columns: 1fr;
    }
}