:root {
    --primary: #2D6FF7;
    --secondary: #FF5E3A;
    --accent: #00C2A8;
    --dark: #1A2B49;
    --light: #F5F7FA;
    --text: #333333;
    --text-light: #6B7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--text);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- START: UPDATED HEADER STYLES --- */
header { 
    background-color: white; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo { font-size: 24px; font-weight: 700; color: var(--primary); display: flex; align-items: center; text-decoration: none; }
.logo i { margin-right: 10px; color: var(--secondary); }

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1002;
    width: 30px;
    height: 21px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--dark);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) { top: 0px; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

.menu-toggle.open span:nth-child(1) { top: 9px; transform: rotate(135deg); background: white; }
.menu-toggle.open span:nth-child(2) { opacity: 0; left: -30px; }
.menu-toggle.open span:nth-child(3) { top: 9px; transform: rotate(-135deg); background: white; }

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li { margin-left: 30px; }
nav ul li a { text-decoration: none; color: var(--text); font-weight: 500; transition: color 0.3s; position: relative; }
nav ul li a.active, nav ul li a:hover { color: var(--primary); }
nav ul li a:after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background-color: var(--primary); transition: width 0.3s; }
nav ul li a.active:after, nav ul li a:hover:after { width: 100%; }

.header-buttons .btn-whatsapp {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}
.header-buttons .btn-whatsapp i { margin-right: 8px; }
/* --- END: UPDATED HEADER STYLES --- */


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1539367628448-4bc5c9d171c8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.highlight-secondary {
    color: var(--secondary);
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.search-box {
    background: white;
    border-radius: 50px;
    padding: 5px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.search-input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.search-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #1a56c7;
}

/* NEW: Tour Packages Slider Section */
.tour-slider-section {
    padding: 80px 0;
    background-color: white;
}

.tour-slider {
    margin: 0 -15px;
}

.tour-slide {
    padding: 0 15px;
    outline: none;
}

.tour-slide-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    height: 100%;
}

.tour-slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tour-slide-image {
    height: 180px;
    overflow: hidden;
}

.tour-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tour-slide-card:hover .tour-slide-image img {
    transform: scale(1.05);
}

.tour-slide-content {
    padding: 20px;
}

.tour-slide-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
    transition: color 0.3s ease; /* Added for hover effect */
}

.tour-slide-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.tour-slide-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    margin-top: 10px;
}

.tour-slider-arrows {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.tour-slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s;
}

.tour-slider-arrow:hover {
    background: var(--primary);
    color: white;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700; /* Added font-weight */
}

.section-title h4 {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}


.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Packages Section - UPDATED */
.packages {
    padding: 80px 0; /* Adjusted padding since wave is removed */
    position: relative;
    background: linear-gradient(135deg, rgba(45, 111, 247, 0.8), rgba(0, 194, 168, 0.75)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

.packages .section-title h2 {
    color: white;
}

.packages .section-title p {
    color: rgba(255, 255, 255, 0.85);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    position: relative;
    z-index: 1;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.package-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-content {
    padding: 20px;
}

.package-badge {
    background: var(--secondary);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* NEW: Style for clickable package titles */
.package-title-link {
    text-decoration: none;
    color: var(--dark);
}

.package-title-link:hover .package-title,
.package-title-link:hover .tour-slide-title {
    color: var(--primary);
}

.package-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
    transition: color 0.3s ease; /* Added for hover effect */
}

.package-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.package-info span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.package-info i {
    margin-right: 5px;
}

.package-features {
    margin-bottom: 15px;
}

.package-feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.package-feature i {
    color: var(--accent);
    margin-right: 10px;
}

.package-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.price-from {
    font-size: 14px;
    color: var(--text-light);
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.price-person {
    font-size: 14px;
    color: var(--text-light);
}

/* NEW: Explore More Button Container */
.explore-more-container {
    text-align: center;
    margin-top: 50px;
}

.explore-more-container .btn-light {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.explore-more-container .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


.explore-more-container .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.explore-more-container .btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.explore-more-container .btn:hover i {
    transform: translateX(5px);
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background-color: #fff;
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-us-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-us-text h3 {
    font-size: 28px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.about-us-text .highlight-secondary {
    font-weight: 700;
}

.about-us-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-us-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-us-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.animated-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-icon svg {
    width: 100%;
    height: 100%;
    animation: icon-pulse 2.5s infinite ease-in-out;
}

.about-us-features li:nth-child(2) .animated-icon svg {
    animation-delay: 0.2s;
}

.about-us-features li:nth-child(3) .animated-icon svg {
    animation-delay: 0.4s;
}

@keyframes icon-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: var(--light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 5px;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 14px;
}

.testimonial-rating {
    color: #FFC107;
    margin-top: 5px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-image {
    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;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.gallery-location {
    font-size: 14px;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.9);
}

.gallery-location i {
    margin-right: 5px;
    color: var(--accent);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: white;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.btn-light {
    background: white;
    color: var(--primary);
    font-weight: 600;
}

.btn-light:hover {
    background: #f0f0f0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    overflow: auto;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalFade 0.3s;
}

@keyframes modalFade {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
}

.modal-title {
    margin-bottom: 20px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #1a56c7;
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.8);
    z-index: 2000;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* NEW FOOTER STYLES */
.white {
    color: white !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.m-0 {
    margin: 0 !important;
}

/* Footer specific styles from the snippet */
footer {
    position: relative;
    color: white;
    background-color: var(--dark);
}

.section-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.insta-main {
    padding-top: 20px;
}

/* UPDATED: Container for the slider and the central button */
.insta-inner {
    position: relative;
}

.insta-image {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.insta-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
}

.slick-slide {
    padding: 0 10px;
}

/* UPDATED: Central button styles */
.insta-center-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.insta-center-button a {
    background: white;
    display: inline-block;
    padding: 12px 25px;
    color: #333;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.insta-center-button a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.insta-center-button a .fab {
    color: #333;
}

/* Darken images when hovering the central button */
.insta-inner:hover .insta-image img {
    filter: brightness(0.7);
}

.footer-upper {
    position: relative;
    z-index: 1;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-copyright {
    background-color: rgba(0,0,0,0.2);
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

/* NEW: Gallery Lightbox Styles */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    flex-direction: column; /* To stack image and caption */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    animation-name: zoom;
    animation-duration: 0.4s;
}

.lightbox-caption {
    margin-top: 15px;
    color: #ccc;
    text-align: center;
    font-size: 16px;
    animation-name: zoom;
    animation-duration: 0.4s;
}

@keyframes zoom {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

/* NEW: Lightbox Navigation */
.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px; /* Adjust based on your arrow size */
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
}

.lightbox-prev {
    left: 15px;
}
.lightbox-next {
    right: 15px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-us-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .destination-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* --- START: UPDATED RESPONSIVE HEADER --- */
    .header-container { padding: 15px 20px; }
    .logo { order: 1; font-size: 20px; }
    .header-buttons { order: 2; display: none; }
    .menu-toggle { display: block; order: 3; }
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(26, 43, 73, 0.98);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1001;
    }
    nav.nav-active { transform: translateX(0); }
    nav ul { flex-direction: column; text-align: center; }
    nav ul li { margin: 20px 0; }
    nav ul li a { color: white; font-size: 20px; }
    /* --- END: UPDATED RESPONSIVE HEADER --- */
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .search-input {
        border-radius: 15px 15px 0 0;
    }
    
    .search-btn {
        border-radius: 0 0 15px 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .packages {
         background-attachment: scroll; /* Disable parallax on mobile for performance */
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }

    /* NEW: Responsive Lightbox Image */
    .lightbox-content {
        max-width: 95%; /* Use more of the screen width */
        max-height: 75vh; /* Reduce height slightly to ensure caption fits */
    }

    /* Footer responsive */
    .footer-upper .row > div {
        margin-bottom: 30px;
    }
    
    .insta-center-button a {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Tour slider responsive */
    .tour-slider-arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .feature-card, .package-card, .testimonial-card {
        padding: 20px;
    }
    
    .package-price {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .package-price .btn {
        margin-top: 15px;
        width: 100%;
    }
    
    .insta-center-button {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        text-align: center;
        margin: 20px 0;
    }
    
    .insta-center-button a {
        display: inline-block;
    }

    /* Tour slider responsive */
    .tour-slide-content {
        padding: 15px;
    }
    
    .tour-slide-title {
        font-size: 16px;
    }

    .destination-sub-grid {
        grid-template-columns: 1fr;
    }
}

/* Destination Section Styles - NEW LAYOUT */
.destination {
    padding: 80px 0;
    background-color: #fff; /* Changed from var(--light) for contrast */
}

.destination-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem; /* Spacing between destination items */
}

.destination-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 992px) {
    .destination-item {
        grid-template-columns: 3fr 7fr; /* Rasio diubah untuk memperkecil gambar */
        gap: 3rem;
    }

    /* Alternating layout for desktop */
    .destination-item:nth-child(even) {
        grid-template-columns: 7fr 3fr; /* Rasio diubah untuk memperkecil gambar */
    }
    .destination-item:nth-child(even) .destination-item-image {
        order: 2;
    }
}

.destination-item-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.destination-item-image:hover {
    transform: scale(1.03);
}

.destination-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.destination-item-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.destination-item-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.destination-item-content .btn {
    padding: 10px 25px;
    font-weight: 600;
}

.destination-item-content .btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.destination-item-content .btn:hover i {
    transform: translateX(5px);
}
/* End of new Destination styles */


/* ---------------------------------- */
/* NEW: TOUR DETAIL PAGE STYLES       */
/* ---------------------------------- */

.tour-header {
    padding: 60px 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1571898224250-5a9a8fc843db?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center center/cover no-repeat;
    text-align: center;
    color: white;
}

.tour-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.highlight-text {
    color: var(--secondary);
}

.tour-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 16px;
}

.tour-meta span i {
    color: var(--accent);
    margin-right: 8px;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background-color: var(--light);
}

.gallery-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.tour-gallery-slider .slide-item {
    padding: 0 10px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.tour-gallery-slider .slide-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.tour-gallery-slider .slide-item:hover img {
    transform: scale(1.05);
}

.tour-gallery-slider .slide-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    font-size: 14px;
    border-radius: 0 0 12px 12px;
}

/* Tour Content Section */
.tour-content-section {
    padding: 80px 0;
}

.tour-content-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .tour-content-layout {
        grid-template-columns: 2fr 1fr;
    }
}

.tour-main-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
}

.tour-main-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Highlights */
.tour-highlights {
    margin: 40px 0;
}
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.highlight-item {
    text-align: center;
}
.highlight-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
}
.highlight-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Itinerary */
.itinerary-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    position: relative;
    border-left: 2px solid var(--primary);
}
.itinerary-item {
    position: relative;
    padding: 10px 0 20px 40px;
}
.itinerary-item:before {
    content: '';
    position: absolute;
    left: -11px;
    top: 15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--primary);
}
.itinerary-time {
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

/* Inclusions */
.inclusion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}
@media (min-width: 576px) {
    .inclusion-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.inclusion-list {
    list-style: none;
    padding: 0;
}
.inclusion-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.inclusion-list li i {
    margin-right: 10px;
    font-size: 18px;
}
.inclusion-list.included i { color: var(--accent); }
.inclusion-list.excluded i { color: var(--secondary); }

/* Booking Sidebar */
.booking-sidebar {
    position: sticky;
    top: 100px; /* Adjust based on your header height */
}
.booking-card {
    background: var(--light);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.booking-price {
    text-align: center;
    margin-bottom: 20px;
}
.tour-type {
    font-size: 14px;
    color: var(--text-light);
}
.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}
.price-person {
    font-size: 14px;
}
.tiered-discounts {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.tiered-discounts h4 {
    font-size: 16px;
    margin-bottom: 10px;
}
.tiered-discounts ul {
    font-size: 14px;
    padding-left: 20px;
    margin: 0;
}
.btn-book-now {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
}
.btn-book-now:hover {
    background: #e64a23;
    border-color: #e64a23;
}
.booking-details-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}
.quick-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
}
.quick-info-item i {
    color: var(--primary);
    margin-right: 15px;
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

/* Recommended Tours */
.recommended-tours {
    padding: 80px 0;
    background-color: white;
}
.recommended-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}
.recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.rec-card {
    display: block;
    text-decoration: none;
    color: var(--text);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.rec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.rec-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.rec-card-content {
    padding: 20px;
}
.rec-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Price summary in modal */
.price-summary {
    margin: 20px 0;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 16px;
}
.total-row {
    font-weight: 700;
    font-size: 18px;
}