* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Navigation */
nav {
    background: #1a1a1a;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-bottom: 2px solid #D4AF37;
}
nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #D4AF37;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}
.logo img {
    height: 72px;
    width: auto;
    object-fit: contain;
    max-width: 260px;
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
        max-width: 180px;
    }
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li {
    margin-left: 2rem;
}
.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #D4AF37;
}
.hamburger {
    display: none;
    cursor: pointer;
}
.hamburger div {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px;
    transition: 0.3s;
}
/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out; /* smooth fade */
}

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

.hero-content {
  position: relative; /* keep text above slides */
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #D4AF37;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-weight: bold;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}


.btn {
    background: #D4AF37;
    color: #1a1a1a;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: bold;
}
.btn:hover {
    background: #E8C547;
}
/* Sections */
section {
    padding: 80px 0;
}
section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #D4AF37;
}
/* About */
.about {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    border-top: 3px solid #D4AF37;
    padding: 80px 0;
}

.about .container {
    max-width: 1000px;
}

.about p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: #333;
    line-height: 1.6;
}

.about h3 {
    text-align: center;
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    color: #D4AF37;
    font-weight: 600;
    position: relative;
}

.about h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #E8C547);
    border-radius: 2px;
}

.about ul {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.about ul li {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #D4AF37;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
}

.about ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about ul li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 1.5rem;
    color: #D4AF37;
    font-weight: bold;
    font-size: 1.2rem;
}

.about ul li:last-child {
    border-bottom: none;
}

/* Responsive About Section */
@media (max-width: 768px) {
    .about ul {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }

    .about ul li {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }

    .about ul li::before {
        left: 12px;
        top: 1.2rem;
        font-size: 1rem;
    }
}

/* Services */
.services {
    background: white;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, border-top-color 0.3s;
    border-top: 3px solid #D4AF37;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-card i {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}
/* Destinations */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: stretch;
}
.destination-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, border-top-color 0.3s;
    border-top: 3px solid #D4AF37;
}
.destination-card:hover {
    transform: translateY(-5px);
}
.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.destination-card h3 {
    padding: 1rem;
    margin: 0;
    text-align: center;
    background: #f8f9fa;
    font-size: 1.2rem;
}
.destination-btn {
    display: block;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    text-align: center;
    font-weight: bold;
    transition: background 0.3s;
    border-radius: 5px;
}
.destination-btn:hover {
    background: #1ea853;
}
/* Tour Package Styles */
.tour-package {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.tour-package:hover {
    transform: translateY(-5px);
}
.tour-package img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.tour-package h3 {
    padding: 1rem;
    margin: 0;
    text-align: center;
    background: #f8f9fa;
    font-size: 1.1rem;
    line-height: 1.4;
}
.tour-highlights {
    padding: 0 1rem;
    flex: 1;
}
.tour-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tour-highlights li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}
.tour-highlights li:last-child {
    border-bottom: none;
}
.tour-buttons {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}
.tour-buttons .view-details-btn,
.tour-buttons .book-now-btn {
    flex: 1;
    display: inline-flex;

    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    font-size: 0.80rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: #D4AF37;
    color: #1a1a1a !important;
    transition: background 0.3s;
}

.tour-buttons .view-details-btn:hover,
.tour-buttons .book-now-btn:hover {
    background: #E8C547 !important;
}
/* Vehicles */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.vehicle-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 3px solid #D4AF37;
    transition: transform 0.3s;
}
.vehicle-card:hover {
    transform: translateY(-5px);
}
.vehicle-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}
/* Gallery */
.gallery {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    min-height: 100vh;
}

.gallery .container {
    max-width: 1400px;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #E8C547);
    border-radius: 2px;
}

.gallery-subtitle {
    text-align: center;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-style: italic;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border: 2px solid #D4AF37;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #D4AF37;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: #fff;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-item:nth-child(10) { animation-delay: 1.0s; }
.gallery-item:nth-child(11) { animation-delay: 1.1s; }
.gallery-item:nth-child(12) { animation-delay: 1.2s; }
.gallery-item:nth-child(13) { animation-delay: 1.3s; }
.gallery-item:nth-child(14) { animation-delay: 1.4s; }
.gallery-item:nth-child(15) { animation-delay: 1.5s; }
.gallery-item:nth-child(16) { animation-delay: 1.6s; }
.gallery-item:nth-child(17) { animation-delay: 1.7s; }
.gallery-item:nth-child(18) { animation-delay: 1.8s; }
.gallery-item:nth-child(19) { animation-delay: 1.9s; }
.gallery-item:nth-child(20) { animation-delay: 2.0s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 197, 71, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1);
    opacity: 0;
    transform: scale(1.1);
}

.gallery-item img.loaded {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2.5rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.overlay-content {
    position: relative;
}

.gallery-item .overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-item .overlay p {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.category-tag {
    display: inline-block;
    background: #D4AF37;
    color: #1a1a1a;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Premium Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: none;
    border: none;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: #D4AF37;
    transform: scale(1.1);
}

.lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.lightbox-nav {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.lightbox-nav:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    transform: scale(1.1);
}

.lightbox-prev {
    margin-right: 20px;
}

.lightbox-next {
    margin-left: 20px;
}

.lightbox-image-container {
    position: relative;
    max-width: 80%;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
}

.lightbox-title {
    color: #D4AF37;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.lightbox-description {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.lightbox-category-tag {
    background: #D4AF37;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lightbox-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
}

.thumbnails-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.thumbnails-container::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
    border-color: #D4AF37;
    transform: scale(1.1);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery h2 {
        font-size: 2rem;
    }

    .gallery-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .gallery-item {
        height: 240px;
    }

    .lightbox-content {
        flex-direction: column;
        padding: 20px;
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-image-container {
        max-width: 100%;
        max-height: 50vh;
    }

    .lightbox-thumbnails {
        position: relative;
        bottom: auto;
        margin-top: 20px;
    }
}
/* Testimonials */
.testimonials {
    background: white;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #D4AF37;
    transition: transform 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}
.testimonial-card .author {
    font-weight: bold;
    color: #D4AF37;
}
/* Contact */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    border-top: 3px solid #D4AF37;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #D4AF37;
}
.contact-info h3 {
    margin-bottom: 1rem;
    color: #D4AF37;
}
.contact-info p {
    margin-bottom: 1rem;
}
.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: bold;
    transition: background 0.3s;
}
.whatsapp-btn:hover {
    background: #1ea853;
}
.map {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}
/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 2px solid #D4AF37;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h4 {
    margin-bottom: 1rem;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section ul li a {
    color: #e8f5e8;
    text-decoration: none;
}
.social-icons {
    display: flex;
    gap: 1rem;
}
.social-icons a {
    color: white;
    font-size: 1.5rem;
}
.copyright {
    text-align: center;D4AF37
    border-top: 1px solid #42a5f5;
    padding-top: 1rem;
}
/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}
/* Telephone Float */
.telephone-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #D4AF37;
    color: #1a1a1a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    font-weight: bold;
}
/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 100%;
        width: 100%;
        flex-direction: column;
        text-align: center;
        transform: translateX(100%);
        transition: transform 0.3s;
        border-top: 2px solid #D4AF37;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(8px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.4);
        z-index: 999;
    }
    .nav-links.active {
        transform: translateX(0);
    }
    .nav-links a {
        display: block;
        color: #ffffff;
        padding: 0.9rem 1rem;
        border-bottom: 1px solid rgba(212,175,55,0.2);
    }
    .nav-links a:hover {
        background: rgba(212,175,55,0.2);
        color: #D4AF37;
    }
    .nav-links li {
        margin: 1rem 0;
    }
    .hamburger {
        display: block;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .contact-content {
        grid-template-columns: 1fr;
    }
    .services-grid,
    .destinations-grid,
    .vehicles-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .gallery-item .overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .gallery-item .overlay h3 {
        font-size: 1.1rem;
    }

    .gallery-item .overlay p {
        font-size: 0.85rem;
    }

    /* Tour Package Mobile Styles */
    .tour-buttons {
        flex-direction: column;
    }

    .view-details-btn,
    .book-now-btn {
        flex: none;
        width: 100%;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery-item {
        height: 220px;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2.5rem;
    }

    .gallery-item {
        height: 280px;
    }
}

/* Modal Styles - Gallery Only */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    max-width: 90%;
    margin: 0 auto;
    padding-top: 60px; /* Add space at the top */
}

.modal-content {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 30px;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -80px;
}

.next-btn {
    right: -80px;
}

.caption {
    margin: 20px auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.5;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Tour Modal Content Styles */
#tourDetails h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

#tourDetails h3 {
    color: #2d3748;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

#tourDetails h4 {
    color: #4a5568;
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#tourDetails h4::before {
    content: '📅';
    font-size: 1rem;
    opacity: 0.7;
}

#tourDetails ul {
    margin: 0 0 1.5rem 0;
    padding-left: 1.8rem;
}

#tourDetails li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #4a5568;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

#tourDetails li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.itinerary-day {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border-left: 4px solid #4299e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.itinerary-day:nth-child(1) { animation-delay: 0.1s; }
.itinerary-day:nth-child(2) { animation-delay: 0.2s; }
.itinerary-day:nth-child(3) { animation-delay: 0.3s; }
.itinerary-day:nth-child(4) { animation-delay: 0.4s; }
.itinerary-day:nth-child(5) { animation-delay: 0.5s; }
.itinerary-day:nth-child(6) { animation-delay: 0.6s; }
.itinerary-day:nth-child(7) { animation-delay: 0.7s; }

.itinerary-day:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.itinerary-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4299e1, #63b3ed);
}

.itinerary-day p {
    margin: 0.8rem 0 0 0;
    line-height: 1.7;
    color: #4a5568;
    font-size: 1rem;
}

/* Tour Modal Background Image Styles */
.modal-header-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0; /* Removed padding to make image start at top */
    color: white;
    text-align: center;
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.3);
    margin: 0; /* Ensure no margin */
}

.modal-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.modal-header-section .close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.modal-header-section .close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.modal-header-section h2 {
    position: relative;
    z-index: 2;
    color: white !important;
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    letter-spacing: -0.5px;
    max-width: 800px;
    margin: 0 auto;
}

.modal-content-section {
    background: white;
    padding: 3rem;
    flex: 1;
    overflow-y: auto;
    max-height: calc(100vh - 450px); /* Adjusted for new modal positioning */
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    scroll-behavior: smooth;
}

.modal-content-section::-webkit-scrollbar {
    width: 8px;
}

.modal-content-section::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-content-section::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4299e1, #63b3ed);
    border-radius: 4px;
}

.modal-content-section::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #3182ce, #4299e1);
}

.modal-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 20%, #e0e0e0 80%, transparent 100%);
}

.modal-book-now-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem 0;
    border-top: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.modal-book-now-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4299e1, #63b3ed);
    border-radius: 2px;
}

.modal-book-now-btn {
    background: linear-gradient(135deg, #25d366 0%, #22c55e 100%);
    color: white;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.modal-book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modal-book-now-btn:hover::before {
    left: 100%;
}

.modal-book-now-btn:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.modal-book-now-btn:active {
    transform: translateY(-1px);
}

.modal-footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e2e8f0;
    color: #718096;
    font-size: 0.95rem;
    font-style: italic;
}

/* Tour Modal Specific Styles */
#tourModal {
    position: fixed;
    top: 80px; /* Account for fixed header */
    left: 0;
    width: 100%;
    height: calc(100vh - 100px); /* Adjust height to account for header */
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    z-index: 3000;
    overflow-y: auto;
    display: none;
    animation: modalFadeIn 0.3s ease-out;
    backdrop-filter: blur(2px);
}

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

#tourModal .modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    position: relative;
}

#tourPlanDetails {
    margin: 0 auto;
    width: 100%;
}

/* Tour Plan Pages: behave like normal pages (body scrolls) */
.tour-plan-page {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}

.tour-plan-page .modal-content-section {
    max-height: none; /* don't cap height like modal */
    overflow: visible; /* let page scroll naturally */
}

/* Give tour plan pages the same smooth scrollbar styling */
body.tour-plan-body::-webkit-scrollbar {
    width: 8px;
}
body.tour-plan-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
body.tour-plan-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4299e1, #63b3ed);
    border-radius: 4px;
}
body.tour-plan-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #3182ce, #4299e1);
}

.tour-close-btn {
    position: fixed;
    top: 92px; /* below nav */
    right: 20px;
    color: white;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    z-index: 4000;
    background: rgba(6, 27, 252, 0.404);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    line-height: 1;
}

.tour-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .modal-content-wrapper {
        height: 70vh;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 10px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .caption {
        font-size: 14px;
        width: 90%;
        padding: 5px 0;
    }

    /* Tour Modal Mobile Styles */
    .modal-header-section {
        padding: 3rem 1.5rem;
        min-height: 280px;
    }

    .modal-header-section h2 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .modal-header-section .close {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 28px;
    }

    .modal-content-section {
        padding: 2rem 1.5rem;
        max-height: calc(100vh - 380px); /* Adjusted for new modal positioning on mobile */
    }

    .modal-book-now-btn {
        padding: 16px 40px;
        font-size: 1.2rem;
    }

    #tourDetails h2 {
        font-size: 1.8rem;
    }

    #tourDetails h3 {
        font-size: 1.3rem;
    }
    .itinerary-day {
        padding: 1.2rem;
    }

    .tour-close-btn {
        top: 90px;
        right: 16px;
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
}