/* ========================================
   GENERAL STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* ========================================
   HEADER STYLES
======================================== */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header > .container {
    max-width: 1400px;
    padding: 0 40px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
}

.logo-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

.logo-text h1 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
    line-height: 1.2;
}

.logo-text p {
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    margin: 0;
    letter-spacing: 2px;
    white-space: nowrap;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

nav ul li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1;
    white-space: nowrap;
}

nav ul li a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

nav ul li a.active {
    background: rgba(255,255,255,0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    flex-shrink: 0;
}

/* ========================================
   RESPONSIVE HEADER - MEDIUM SCREENS
======================================== */
@media (max-width: 1100px) {
    .header-content {
        gap: 24px;
    }
    nav ul li a {
        font-size: 15px;
        padding: 9px 13px;
        gap: 6px;
    }
}

@media (max-width: 900px) {
    .header-content {
        gap: 16px;
    }
    nav ul li a {
        font-size: 14px;
        padding: 8px 10px;
        gap: 5px;
    }
}

/* ========================================
   SLIDER STYLES
======================================== */
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 0px;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide.active {
    display: block;
    animation: slideInRight 3s forwards;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: slideUp 1s ease-out;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: slideUp 1s ease-out 0.2s backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-explore {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: slideUp 1s ease-out 0.4s backwards;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.5);
}

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

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

/* ========================================
   SECTION STYLES
======================================== */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    font-size: 16px;
    margin-top: 20px;
}

/* ========================================
   CARD STYLES
======================================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.card-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price-label {
    color: #999;
    font-size: 14px;
}

.price-value {
    color: #4CAF50;
    font-size: 24px;
    font-weight: bold;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-detail {
    background: #f0f0f0;
    color: #333;
}

.btn-detail:hover {
    background: #e0e0e0;
}

.btn-order {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Paket Card Specific */
.card.paket-card .card-content {
    background: linear-gradient(to bottom, #f8f9ff, white);
}

.destinations-list {
    background: #f8f9ff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.destinations-list h4 {
    font-size: 14px;
    color: #667eea;
    margin-bottom: 10px;
}

.destinations-list ul {
    list-style: none;
    padding: 0;
}

.destinations-list ul li {
    padding: 5px 0;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.destinations-list ul li::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
}

.discount-badge {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

/* ========================================
   GALLERY STYLES
======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #667eea;
    pointer-events: none;
}

.gallery-item:hover .play-icon {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* ========================================
   FOOTER STYLES
======================================== */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 50px 0 20px;
    margin-top: 0px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: white;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.social-link.whatsapp:hover { background: #25D366; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-link.facebook:hover { background: #1877F2; }
.social-link.tiktok:hover { background: #000; }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ========================================
   RESPONSIVE STYLES
======================================== */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0;
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: linear-gradient(160deg, #667eea 0%, #764ba2 100%);
        display: none;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        z-index: 999;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
        align-items: stretch;
    }

    nav ul li {
        width: 100%;
        justify-content: center;
    }

    nav ul li a {
        justify-content: center;
        text-align: center;
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        gap: 8px;
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    nav ul li a:hover {
        background: rgba(255,255,255,0.15);
        transform: none;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

/* ========================================
   PAKET PAGE STYLES
======================================== */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
    margin-top: 0px;
}

.page-header h1 {
    font-size: 3em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.95;
}

.packages-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.package-slideshow {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 15px 15px 0 0;
}

.package-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.package-slide.active {
    opacity: 1;
}

.package-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: white;
}

.package-overlay h3 {
    font-size: 1.8em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slideshow-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    width: 25px;
    border-radius: 4px;
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.no-image-placeholder i {
    font-size: 4em;
    margin-bottom: 15px;
}

/* Price Category Badge */
.price-category-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    pointer-events: none;
    font-family: 'Segoe UI', sans-serif;
}

.badge-low {
    background: #2ecc71;
    color: #fff;
}

.badge-mid {
    background: #f5a623;
    color: #fff;
}

.badge-high {
    background: #1a98ec;
    color: #fff;
}

.package-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.package-price {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.package-destinations {
    margin-bottom: 20px;
}

.package-destinations h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.destination-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.destination-tag {
    background: #e8eaf6;
    color: #667eea;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.package-footer {
    padding: 0 30px 30px;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.package-footer .btn {
    flex: 1;
    max-width: 160px;
    text-align: center;
    padding: 12px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.no-packages {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.no-packages i {
    font-size: 5em;
    color: #ddd;
    margin-bottom: 20px;
}

.no-packages h3 {
    color: #666;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.no-packages p {
    color: #999;
}

/* ========================================
   PAKET DETAIL PAGE STYLES
======================================== */
.detail-header {
    background: linear-gradient(135deg, #667eea 0%, #bb9cda 100%);
    padding: 100px 0 60px;
    margin-top: 0px;
    color: white;
    position: relative;
    overflow: hidden;
}

.header-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.header-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.header-slide.active {
    opacity: 0.3;
}

.header-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    z-index: 1;
}

.detail-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.detail-header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.detail-header .package-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 12px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.meta-item i {
    font-size: 1.5em;
}

.detail-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.main-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: #667eea;
}

.description-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #555;
}

.destinations-list {
    display: grid;
    gap: 20px;
}

.destination-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 5px solid #667eea;
}

.destination-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.destination-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-item:hover .destination-image img {
    transform: scale(1.1);
}

.destination-icon {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: #667eea;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.destination-info {
    flex-grow: 1;
}

.destination-info h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 8px;
}

.destination-info p {
    color: #666;
    margin: 0;
}

.destination-price {
    font-size: 1.2em;
    font-weight: bold;
    color: #667eea;
}

.price-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.price-card .price-label {
    font-size: 1em;
    opacity: 0.9;
    margin-bottom: 10px;
    color: white;
}

.price-card .price-amount {
    font-size: 2.5em;
    font-weight: bold;
    margin: 15px 0;
    color: white;
}

.price-note {
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 10px;
}

.booking-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.booking-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-item i {
    color: #667eea;
    font-size: 1.2em;
    width: 25px;
}

.btn-book {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-book:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-book i {
    margin-right: 8px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: rgba(255,255,255,0.25);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.btn-back:hover {
    background: rgba(255,255,255,0.35);
    transform: translateX(-5px);
    border-color: rgba(255,255,255,0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 2em;
    color: #667eea;
}

.feature-item div {
    flex-grow: 1;
}

.feature-item strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.feature-item span {
    color: #666;
    font-size: 0.9em;
}

.no-destinations {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #999;
}

.no-destinations i {
    font-size: 3em;
    margin-bottom: 15px;
    display: block;
}

/* ========================================
   RESPONSIVE STYLES - PAKET PAGES
======================================== */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .detail-header {
        padding: 80px 0 40px;
        margin-top: 0px;
    }
    
    .detail-header h1 {
        font-size: 2em;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
        margin-top: 0px;
    }
    
    .page-header h1 {
        font-size: 2em;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-content {
        padding: 25px;
    }
    
    .destination-item {
        flex-direction: column;
        text-align: center;
    }
    
    .destination-image,
    .destination-icon {
        width: 100%;
        height: 200px;
    }
    
    .destination-image img {
        object-fit: cover;
    }
    
    .price-card .price-amount {
        font-size: 2em;
    }
}

/* ============================================================
   DROPDOWN SUBMENU - Tour Packages
   ============================================================ */
nav ul li.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

nav ul li.has-dropdown > a.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 11px;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

nav ul li.has-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown panel */
ul.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    min-width: 260px;
    max-width: 320px;
    z-index: 2000;
    list-style: none;
    padding: 6px 0;
    flex-direction: column;
    gap: 0;
    /* animasi muncul */
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
}

/* segitiga kecil di atas dropdown */
ul.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top: 0;
    border-bottom: 8px solid #fff;
    filter: drop-shadow(0 -2px 3px rgba(0,0,0,0.08));
}

nav ul li.has-dropdown.open > ul.dropdown-menu {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Header label */
li.dropdown-header {
    padding: 10px 16px 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Item link */
ul.dropdown-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px 12px;
    color: #333 !important;
    font-size: 14px;
    font-weight: 500;
    background: transparent !important;
    border-radius: 0;
    transition: background 0.15s ease, color 0.15s ease;
    transform: none !important;
    white-space: normal;
}

ul.dropdown-menu li a:hover {
    background: linear-gradient(135deg, #667eea15, #764ba215) !important;
    color: #667eea !important;
    transform: none !important;
}

.submenu-name {
    flex: 1;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    word-break: break-word;
    margin-right: 8px;
    line-height: 1.4;
}

/* Badge jumlah destinasi */
.submenu-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Footer "Lihat Semua" */
li.dropdown-footer {
    border-top: 1px solid #f0f0f0;
    margin-top: 4px;
}

li.dropdown-footer a {
    justify-content: center !important;
    color: #667eea !important;
    font-weight: 600 !important;
    gap: 6px;
}

li.dropdown-footer a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: #fff !important;
}

/* ============================================================
   MOBILE - dropdown jadi accordion
   ============================================================ */
@media (max-width: 768px) {
    nav ul li.has-dropdown {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    nav ul li.has-dropdown > a.dropdown-toggle {
        width: 100%;
        justify-content: center;
    }

    ul.dropdown-menu {
        position: static;
        display: none;
        transform: none !important;
        opacity: 1 !important;
        box-shadow: none;
        border-radius: 0;
        background: rgba(0,0,0,0.15);
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        padding: 4px 0;
        pointer-events: auto;
        margin-top: 0;
    }

    ul.dropdown-menu::before {
        display: none;
    }

    nav ul li.has-dropdown.open > ul.dropdown-menu {
        display: flex;
        flex-direction: column;
    }

    ul.dropdown-menu li {
        width: 100%;
    }

    ul.dropdown-menu li a {
        color: rgba(255,255,255,0.85) !important;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 14px;
        display: flex;
        justify-content: center;
        width: 100%;
        border-radius: 0;
    }

    ul.dropdown-menu li a:hover {
        background: rgba(255,255,255,0.15) !important;
        color: #fff !important;
    }

    .submenu-badge {
        background: rgba(255,255,255,0.25);
    }

    li.dropdown-footer a {
        color: rgba(255,255,255,0.9) !important;
    }

    li.dropdown-header {
        color: rgba(255,255,255,0.5);
        border-bottom-color: rgba(255,255,255,0.1);
        justify-content: center;
    }

    .dropdown-arrow {
        margin-left: 6px;
    }
}

/* ===== TESTIMONI SECTION ===== */
.testimoni-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    padding: 60px 0;
}

.testimoni-section .section-title h2 {
    color: #fff;
}

.testimoni-section .section-title p {
    color: rgba(255,255,255,0.7);
}

.testimoni-section .section-title h2 i {
    color: #f4c430;
}

.testimoni-slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimoni-marquee {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.testimoni-marquee:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimoni-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 28px 24px;
    width: 300px;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.testimoni-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.13);
}

.testimoni-rating {
    margin-bottom: 14px;
}

.testimoni-rating .star-filled {
    color: #f4c430;
    font-size: 16px;
}

.testimoni-rating .star-empty {
    color: rgba(255,255,255,0.25);
    font-size: 16px;
}

.testimoni-komentar {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimoni-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
}

.testimoni-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4c430, #e67e22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.testimoni-info strong {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 2px;
}

.testimoni-info span {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

/* ========================================
   CAR FLEET PAGE (car.php)
======================================== */

/* ── Page Header ── */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 60px; margin-bottom: 0;
    position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; top:0;left:0;right:0;bottom:0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    opacity: 0.3;
}
.page-header-overlay { position: relative; z-index: 1; }
.page-header-content { text-align: center; color: white; }
.page-header-content h1 { font-size: 48px; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.page-header-content p  { font-size: 18px; margin-bottom: 20px; opacity: .95; }
.breadcrumb {
    display: inline-flex; gap: 10px; align-items: center;
    background: rgba(255,255,255,0.2); padding: 10px 20px;
    border-radius: 25px; font-size: 14px;
}
.breadcrumb a { color: white; text-decoration: none; transition: opacity .3s; }
.breadcrumb a:hover { opacity: .8; }
.breadcrumb span { color: rgba(255,255,255,0.8); }

/* ── Filter Section ── */
.filter-section { background: white; padding: 30px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.filter-container { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.search-box { flex: 1; min-width: 250px; position: relative; }
.search-box i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #999; }
.search-box input {
    width: 100%; padding: 12px 15px 12px 45px;
    border: 2px solid #e0e0e0; border-radius: 25px; font-size: 14px; transition: all .3s;
}
.search-box input:focus { outline: none; border-color: #667eea; }
.filter-options { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
    padding: 10px 20px; border: 2px solid #e0e0e0; background: white;
    border-radius: 20px; cursor: pointer; font-size: 14px; font-weight: 500;
    transition: all .3s; white-space: nowrap;
}
.filter-btn:hover { border-color: #667eea; color: #667eea; }
.filter-btn.active { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border-color: transparent; }
.sort-box { display: flex; align-items: center; gap: 10px; }
.sort-box label { font-size: 14px; font-weight: 500; color: #666; }
.sort-box select { padding: 10px 15px; border: 2px solid #e0e0e0; border-radius: 20px; font-size: 14px; cursor: pointer; background: white; }
.sort-box select:focus { outline: none; border-color: #667eea; }

/* ── Overlay zoom hint ── */
.package-overlay { cursor: pointer; }
.overlay-zoom-hint {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff; font-size: 12px; font-weight: 600;
    padding: 5px 12px; border-radius: 20px;
    margin-top: 8px; transition: all .3s;
}
.package-overlay:hover .overlay-zoom-hint { background: rgba(255,255,255,0.35); }

/* ── Cursor pointer pada gambar ── */
.lightbox-trigger { cursor: zoom-in !important; }

/* ── Photo count badge (kanan bawah foto) ── */
.photo-count-badge {
    position: absolute; bottom: 48px; right: 12px; z-index: 10;
    background: rgba(0,0,0,0.55); color: #fff;
    font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
    display: flex; align-items: center; gap: 5px;
    backdrop-filter: blur(4px); pointer-events: none;
}

/* ── Car Type Badge ── */
.car-type-badge {
    position: absolute; top: 14px; left: 14px; z-index: 20;
    background: rgba(0,0,0,0.55); color: #fff;
    font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 50px;
    letter-spacing: .4px; backdrop-filter: blur(4px); pointer-events: none;
}

/* ── Car Info Row ── */
.car-info-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.car-info-item {
    display: inline-flex; align-items: center; gap: 6px;
    background: #f0f2ff; color: #667eea;
    font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px;
}
.car-info-item i { font-size: 12px; }

/* ── Description ── */
.car-description {
    -webkit-line-clamp: unset !important; line-clamp: unset !important;
    overflow: visible !important; display: block !important;
    color: #555; line-height: 1.8; margin-bottom: 10px;
}

/* ── WhatsApp Button ── */
.btn-wa-full {
    display: flex !important; width: 100%; max-width: 100% !important;
    justify-content: center; align-items: center; gap: 10px;
    padding: 14px 20px !important;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important; border-radius: 30px !important;
    font-size: 16px !important; font-weight: 700 !important;
    text-decoration: none; transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}
.btn-wa-full:hover {
    transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.5);
    color: white !important; text-decoration: none;
}
.btn-wa-full i { font-size: 20px; }

/* ── No data ── */
.no-packages { text-align: center; padding: 60px 20px; background: white; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.no-packages i { font-size: 5em; color: #ddd; margin-bottom: 20px; display: block; }
.no-packages h3 { color: #666; font-size: 1.5em; margin-bottom: 10px; }
.no-packages p  { color: #999; }

/* ── Read More / Show Less ── */
.desc-short,
.desc-full {
    display: block;
    line-height: 1.65;
    color: #555;
    font-size: 14px;
}
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #667eea;
    transition: color .2s, gap .2s;
}
.btn-read-more:hover { color: #764ba2; gap: 8px; }
.btn-read-more i {
    font-size: 11px;
    transition: transform .3s;
}
.btn-read-more.expanded i { transform: rotate(180deg); }

/* ════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════ */
#lightbox {
    display: none;
    position: fixed; inset: 0; z-index: 99999;
}
#lightbox.open { display: flex; align-items: center; justify-content: center; }

/* Backdrop */
#lb-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.92);
    animation: lbFadeIn .2s ease;
}
@keyframes lbFadeIn { from { opacity:0; } to { opacity:1; } }

/* Panel */
#lb-panel {
    position: relative; z-index: 1;
    width: min(96vw, 1100px);
    max-height: 96vh;
    display: flex; flex-direction: column;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
    animation: lbSlideUp .25s ease;
}
@keyframes lbSlideUp { from { transform: translateY(30px); opacity:0; } to { transform: translateY(0); opacity:1; } }

/* Header */
#lb-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px;
    background: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
    flex-shrink: 0;
}
#lb-title { display: flex; align-items: center; gap: 14px; }
#lb-car-name { color: #fff; font-size: 16px; font-weight: 700; }
#lb-counter {
    color: rgba(255,255,255,0.5); font-size: 13px;
    background: rgba(255,255,255,0.08); padding: 3px 10px; border-radius: 20px;
}
#lb-close {
    background: rgba(255,255,255,0.08); border: none; cursor: pointer;
    color: #fff; width: 36px; height: 36px; border-radius: 50%;
    font-size: 16px; display: flex; align-items: center; justify-content: center;
    transition: all .2s; flex-shrink: 0;
}
#lb-close:hover { background: #e53e3e; transform: scale(1.1); }

/* Image area */
#lb-image-wrap {
    flex: 1; display: flex; align-items: center;
    min-height: 0; position: relative; overflow: hidden;
}

/* Prev / Next arrows */
#lb-prev, #lb-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; background: rgba(255,255,255,0.12); border: none; cursor: pointer;
    color: #fff; width: 48px; height: 48px; border-radius: 50%;
    font-size: 18px; display: flex; align-items: center; justify-content: center;
    transition: all .2s; backdrop-filter: blur(6px);
}
#lb-prev { left: 14px; }
#lb-next { right: 14px; }
#lb-prev:hover, #lb-next:hover { background: rgba(102,126,234,0.75); transform: translateY(-50%) scale(1.1); }
#lb-prev.hidden, #lb-next.hidden { opacity: 0; pointer-events: none; }

/* Image container */
#lb-img-container {
    flex: 1; display: flex; align-items: center; justify-content: center;
    padding: 20px 70px; min-height: 320px; position: relative;
}
#lb-img {
    max-width: 100%; max-height: 65vh;
    object-fit: contain; border-radius: 8px;
    display: block;
    transition: opacity .25s ease;
    user-select: none; -webkit-user-drag: none;
}
#lb-img.loading { opacity: 0; }

/* Loader spinner */
#lb-loader {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    color: rgba(255,255,255,0.4); font-size: 30px;
    display: none;
}
#lb-loader.show { display: block; }

/* Thumbnail strip */
#lb-thumbs {
    display: flex; gap: 8px; padding: 12px 16px;
    background: #1a1a1a; border-top: 1px solid #2a2a2a;
    overflow-x: auto; flex-shrink: 0;
    scrollbar-width: thin; scrollbar-color: #444 transparent;
}
#lb-thumbs::-webkit-scrollbar { height: 4px; }
#lb-thumbs::-webkit-scrollbar-thumb { background: #444; border-radius: 4px; }

.lb-thumb {
    flex-shrink: 0; width: 64px; height: 48px;
    border-radius: 6px; overflow: hidden; cursor: pointer;
    border: 2px solid transparent; transition: all .2s;
    opacity: .55;
}
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lb-thumb:hover { opacity: .85; transform: scale(1.05); }
.lb-thumb.active { border-color: #667eea; opacity: 1; }

/* Responsive - Car Fleet */
@media (max-width: 768px) {
    .page-header-content h1 { font-size: 32px; }
    .page-header-content p  { font-size: 15px; }
    .filter-container { flex-direction: column; align-items: stretch; }
    .filter-options   { justify-content: flex-start; }
    .sort-box         { justify-content: flex-start; }
    .car-info-row     { gap: 8px; }

    #lb-panel { width: 100vw; max-height: 100dvh; border-radius: 0; }
    #lb-prev, #lb-next { width: 38px; height: 38px; font-size: 15px; }
    #lb-img-container { padding: 12px 50px; min-height: 220px; }
    #lb-img { max-height: 52vh; }
    .lb-thumb { width: 52px; height: 40px; }
    #lb-car-name { font-size: 14px; }
}
