* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #F6F1EB;
    color: #4E5D5B;
    line-height: 1.6;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.tour-details h3,
.review-item h3,
.tip-card h3,
.faq-container h2,
.gallery-experience h3,
.confirmation h3
.local-guide h2, {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

p, li, a, span, .tour-details p, .review-item .quote, .review-item .source, .tip-card p, .faq-answer {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

html {
    -webkit-overflow-scrolling: touch;
}

a, button, .menu-icon, .view-details-btn, .modal-close-btn, .carousel-prev, .carousel-next, .see-more-btn, .hero-cta, .search-icon {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    touch-action: manipulation;
}

.menu-bar, .back-to-top, .sticky-cta, .customer-support-btn {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    transform: translateX(-8%);
    color: #81D8D0;
    letter-spacing: 0.5px;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    transform: translateX(-35%);
}

@media (max-width: 768px) {
    .logo {
        font-size: 0.9rem;
    }

    .logo img {
        width: 68px;
        height: 68px;
    }
}

.menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background-color: #F6F1EB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    height: 60px;
}

.menu-bar.hidden {
    transform: translateY(-100%);
}

.logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: #81D8D0;
    letter-spacing: 0.5px;
}

.menu-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.menu-links a {
    text-decoration: none;
    color: #4E5D5B;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.menu-links a:hover {
    color: #81D8D0;
}

.menu-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #81D8D0;
    transition: width 0.3s ease-in-out;
}

.menu-links a:hover,
.menu-links a:focus {
    color: #81D8D0;
}

.menu-links a:hover::after,
.menu-links a:focus::after {
    width: 100%;
}

.menu-links li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 1.2rem;
    width: 1px;
    background-color: rgba(78, 93, 91, 0.3); /* Subtle modern divider */
    transition: background-color 0.3s ease;
}

.menu-links li:not(:last-child) {
    position: relative;
}

.menu-links li:hover:not(:last-child)::after {
    background-color: #81D8D0;
}

body.menu-open {
    overflow: hidden;
}


.menu-icon {
    display: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.menu-icon-svg {
    width: 100%;
    height: 100%;
}

.menu-icon-line {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.menu-icon.active .menu-icon-line-1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active .menu-icon-line-2 {
    opacity: 0;
}

.menu-icon.active .menu-icon-line-3 {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-icon span {
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #4E5D5B;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon span:nth-child(3) {
    bottom: 0;
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.hero {
    height: calc(80vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('hotel/hotel-1.webp') no-repeat center center/cover;
    color: #F6F1EB;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: no-repeat center center/cover;
    opacity: 0;
    -webkit-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    opacity: 0;
    transform: translateY(20px);
    -webkit-transition: opacity 0.6s ease, transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
    z-index: 2;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 600px;
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113.64,28.62,1200,40.85V0Z" fill="rgba(246,241,235,0.8)"/></svg>') repeat-x;
    background-size: 1200px 120px;
    -webkit-animation: wave 10s linear infinite;
    animation: wave 10s linear infinite;
    z-index: 2;
}

@-webkit-keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 1200px 0; }
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 1200px 0; }
}

.cta-btn, .tour-btn, .whatsapp-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #81D8D0;
    color: #4E5D5B;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    -webkit-transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-btn:hover, .tour-btn:hover, .whatsapp-btn:hover {
    background-color: #B8EBD0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sticky-cta {
    display: flex;
    position: fixed;
    bottom: calc(30px + env(safe-area-inset-bottom));
    right: calc(30px + env(safe-area-inset-right));
    background-color: #81D8D0;
    color: #4E5D5B;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    z-index: 900;
    transition: transform 0.2s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    max-width: 200px;
    width: auto;
}

.sticky-cta.hidden {
    opacity: 0;
    pointer-events: none;
}

.sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.customer-support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    padding: 0;
    background-color: #25D366;
    color: #FFFFFF;
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 900;
    transform: translateY(-100%);
    transition: transform 0.2s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.customer-support-btn:hover {
    background-color: #128C7E;
    transform: translateY(-50px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.customer-support-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.sticky-cta:not(.customer-support-btn) {
    bottom: 30px;
}

@media (max-width: 768px) {
    .customer-support-btn {
        display: flex;
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .sticky-cta:not(.customer-support-btn) {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .customer-support-btn {
        bottom: 80px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .sticky-cta:not(.customer-support-btn) {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .tour-details h3 {
        font-size: 0.9rem;
    }
    .tour-details p, .countdown, .tour-details .availability {
        font-size: 0.7rem;
    }
    .local-guide-card h3 {
        font-size: 1.1rem;
    }
    .blog-preview-content h3 {
        font-size: 1.1rem;
    }
}

.sticky-cta, .customer-support-btn {
    position: -webkit-sticky;
}

@media (hover: none) {
    .cta-btn:hover, .tour-btn:hover, .whatsapp-btn:hover, .sticky-cta:hover, 
    .customer-support-btn:hover, .view-details-btn:hover, .local-guide-card:hover,
    .blog-preview-card:hover, .tip-card:hover, .faq-item:hover, .polaroid-item:hover,
    .masonry-item:hover, .review-item:hover {
        transform: none;
        box-shadow: none;
    }
}

.about {
    padding: 5rem 2rem;
    background-color: #B8EBD0;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateX(-20px);
    -webkit-transition: opacity 0.6s ease, transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-text p, .about-text li {
    font-size: 0.95rem;
}

.about-text ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.about-image {
    flex: 0.8;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4E5D5B;
    background-color: #F6F1EB;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.fact-icon {
    width: 24px;
    height: 24px;
    color: #81D8D0;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .quick-facts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fact-item {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .fact-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .fact-item {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    .fact-icon {
        width: 18px;
        height: 18px;
    }
}

.tours {
    padding: 5rem 2rem;
    background-color: #F6F1EB;
    text-align: center;
}

.tours h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 1.5rem;
}

.tour-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: none;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-item {
    position: relative;
    min-height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(0.98);
    -webkit-transition: opacity 0.6s ease, transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.tour-item.visible .tour-details {
    transform: translateY(0);
}

.tour-item.scrolling-up .tour-details {
    transform: translateY(100%);
}

.tour-item.visible {
    opacity: 1;
    transform: scale(1);
}

.tour-item:nth-child(1) {
    background-image: url('hotel/hotel-3.webp');
}

.tour-item:nth-child(2) {
    background-image: url('hotel/hotel-4.webp');
}

.tour-item:nth-child(3) {
    background-image: url('hotel/hotel-4.webp');
}

.tour-item:nth-child(4) {
    background-image: url('hotel/hotel-4.webp');
}

.tour-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(246, 241, 235, 0.95);
    padding: 1rem;
    text-align: left;
    transform: translateY(0);
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    min-height: 100px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-item:hover .tour-details {
    background: rgba(246, 241, 235, 1);
}

.tour-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.4;
}

.tour-details p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .tour-details {
        padding: 0.75rem;
        min-height: 80px;
        height: auto;
    }

    .tour-details h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .tour-details p {
        font-size: 0.8rem;
    }

    .tour-details .availability {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .tour-details {
        padding: 0.5rem;
        min-height: 70px; /* Adjust for smaller screens */
        height: auto; /* Ensure dynamic height */
    }

    .tour-details h3 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .tour-details p {
        font-size: 0.75rem;
    }

    .tour-details .availability {
        font-size: 0.7rem;
    }
}

.tour-details .availability {
    font-size: 0.85rem;
    color: #81D8D0;
    font-weight: 400;
}

.strike { text-decoration: line-through; color: #4E5D5B99; }
.save { color: #81D8D0; font-weight: 400; }

.special-offers-card {
    max-width: 600px;
    margin: 2rem auto;
    background-color: #F6F1EB;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-image: url('special.png');
    background-size: cover;
    background-position: center;
}

.special-offers-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.special-offers-card h3 span {
    font-family: 'Dancing Script', cursive;
    color: #000;
}

.special-offers-card p {
    font-size: 0.95rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
}

.offers-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    text-align: left;
}

.offer-column {
    flex: 1;
}

.offer-column p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #white;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-column p i {
    color: #81D8D0;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .offers-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .special-offers-card {
        padding: 1.5rem;
    }

    .special-offers-card h3 {
        font-size: 1.5rem;
    }
}

.traveler-help {
    padding: 5rem 2rem;
    background-color: #B8EBD0;
    text-align: center;
}

.tips-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    -webkit-transition: opacity 0.6s ease, transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.tips-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.tips-container h2 {
    font-size: 2rem;
    font-weight: 700;
}

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

.tip-card {
    background-color: #F6F1EB;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.tip-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4E5D5B;
    margin-bottom: 0.75rem;
}

.tip-card p {
    font-size: 0.95rem;
    font-weight: 300;
    color: #4E5D5B;
    margin-bottom: 1rem;
}

.whatsapp-cta {
    display: block;
    margin: 2rem auto 0;
    max-width: 400px;
    text-align: center;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #B8EBD0;
    text-align: center;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    -webkit-transition: opacity 0.6s ease, transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

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

.faq-item {
    background-color: #F6F1EB;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1rem;
    font-size: 1.5rem;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    font-size: 0.95rem;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 100px;
}

.faq-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-preview {
    padding: 5rem 2rem;
    background-color: #B8EBD0;
    text-align: center;
}

.gallery-preview-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    -webkit-transition: opacity 0.6s ease, transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-preview-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.polaroid-stack {
    position: relative;
    height: 400px;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.polaroid-item {
    width: 200px;
    background: #FFFFFF;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    -webkit-transition: transform 0.3s ease, z-index 0.3s ease;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.polaroid-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.polaroid-item p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #4E5D5B;
    margin-top: 8px;
    text-align: center;
}

.polaroid-item:nth-child(1) {
    top: 50px;
    left: 50px;
    transform: rotate(-10deg);
    z-index: 1;
}

.polaroid-item:nth-child(2) {
    top: 30px;
    left: 200px;
    transform: rotate(8deg);
    z-index: 2;
}

.polaroid-item:nth-child(3) {
    top: 150px;
    left: 100px;
    transform: rotate(-5deg);
    z-index: 3;
}

.polaroid-item:nth-child(4) {
    top: 120px;
    left: 250px;
    transform: rotate(12deg);
    z-index: 4;
}

.polaroid-item:nth-child(5) {
    top: 200px;
    left: 50px;
    transform: rotate(-8deg);
    z-index: 5;
}

.polaroid-item:nth-child(6) {
    top: 180px;
    left: 200px;
    transform: rotate(5deg);
    z-index: 6;
}

.polaroid-item:nth-child(7) {
    top: 100px;
    left: 150px;
    transform: rotate(0deg);
    z-index: 7;
}

.polaroid-item:hover {
    transform: translateY(-10px) rotate(0deg);
    z-index: 10;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .polaroid-stack {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .polaroid-item {
        position: relative;
        top: 0 !important;
        left: 0 !important;
        transform: rotate(0deg) !important;
        width: 250px;
    }

    .polaroid-item img {
        height: 180px;
    }
}

.reviews {
    padding: 5rem 2rem;
    background-color: #B8EBD0;
    text-align: center;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(20px);
    -webkit-transition: transform 0.3s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reviews-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.reviews h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #4E5D5B;
    transform: translateY(40%);
    margin-bottom: 3rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.review-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.review-item {
    background-color: #F6F1EB;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-item:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    -webkit-transition: transform 0.3s ease;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #81D8D0;
    color: #F6F1EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 600;
    border: 2px solid #4E5D5B;
    text-transform: uppercase;
}

.verified-icon {
    width: 24px;
    height: 24px;
    margin-left: -10px;
    margin-top: 20px;
    z-index: 1;
}

.review-title {
    flex: 1;
    text-align: left;
}

.review-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4E5D5B;
    margin-bottom: 0.5rem;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.2rem;
    color: #4E5D5B33;
}

.star.filled {
    color: #FFD700;
}

.review-item .quote {
    font-size: 1rem;
    font-weight: 400;
    color: #4E5D5B;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.review-item .source {
    font-size: 0.95rem;
    font-weight: 500;
    color: #81D8D0;
    text-align: right;
}

.review-date {
    font-size: 0.85rem;
    font-weight: 400;
    color: #4E5D5B99;
    text-align: right;
    margin-top: 0.25rem;
}

.review-item::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 3rem;
    color: #81D8D0;
    opacity: 0.2;
}

.review-item .source {
    font-size: 0.9rem;
    font-weight: 400;
    color: #81D8D0;
}

@media (max-width: 768px) {
    .reviews {
        padding: 3rem 1.5rem;
    }

    .reviews h2 {
        font-size: 2rem;
    }

    .review-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-item {
        padding: 1.5rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .review-item .reviewer-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50% !important;
        object-fit: cover;
        border: 2px solid #81D8D0;
        clip-path: circle(50% at 50% 50%);
    }
    
    .verified-icon {
        width: 20px;
        height: 20px;
        margin-left: 0;
        margin-top: 0;
        position: absolute;
        top: 30px;
        left: 30px;
    }
    
    .review-date {
        font-size: 0.8rem;
    }

    .review-item h3 {
        font-size: 1.2rem;
    }

    .star-rating {
        gap: 0.2rem;
    }

    .star {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .reviews {
        padding: 2rem 1rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #81D8D0;
    }

    .reviews h2 {
        font-size: 1.8rem;
    }

    .review-item {
        padding: 1rem;
    }
    
    .review-date {
        font-size: 0.75rem;
    }

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

    .review-item .quote {
        font-size: 0.9rem;
    }

    .review-item .source {
        font-size: 0.85rem;
    }
}

.gallery {
    padding: 5rem 2rem;
    background-color: #F6F1EB;
    text-align: center;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #4E5D5B;
    margin-bottom: 2.5rem;
}

.gallery-experience {
    margin-bottom: 4rem;
}

.gallery-experience h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4E5D5B;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.masonry-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
    loading: lazy;
}

.masonry-item[data-parallax] {
    transform: translateY(0);
}

.gallery-experience .cta-btn {
    display: inline-block;
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 1.5remrem;
    }

    .masonry-item {
        aspect-ratio: 3 / 4;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .masonry-item {
        aspect-ratio: 3 / 4;
        height: 250px;
    }

    .gallery-experience h3 {
        font-size: 1.3rem;
    }

    .gallery h2 {
        font-size: 1.8rem;
    }
}

.booking-section {
    padding: 7rem 2rem 5rem;
    background-color: #B8EBD0;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.booking-container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    -webkit-transition: opacity 0.6s ease, transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.booking-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.booking-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-form {
    background-color: #F6F1EB;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    flex: none;
    width: 100%;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 400;
    color: #4E5D5B;
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #4E5D5B33;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4E5D5B;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #81D8D0;
    box-shadow: 0 0 8px rgba(129, 216, 208, 0.3);
    outline: none;
}

.form-group input:invalid:focus,
.form-group select:invalid:focus,
.form-group textarea:invalid:focus {
    border-color: #D8000C;
    box-shadow: 0 0 8px rgba(216, 0, 12, 0.3);
}

.form-group .error-message {
    display: none;
    font-size: 0.85rem;
    color: #D8000C;
    margin-top: 0.3rem;
    position: absolute;
    bottom: -1.5rem;
    left: 0;
}

.form-group input:invalid[required] + .error-message,
.form-group select:invalid[required] + .error-message,
.form-group textarea:invalid[required] + .error-message {
    display: block;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group .price-display,
.form-group .total-price {
    font-size: 1rem;
    font-weight: 400;
    color: #4E5D5B;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.form-group .price-display .strike {
    color: #4E5D5B99;
}

.form-group .price-display .save {
    color: #81D8D0;
    font-weight: 400;
}

.confirmation {
    background-color: #F6F1EB;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.confirmation h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 1rem;
}

.confirmation p {
    font-size: 0.95rem;
    font-weight: 300;
    color: #4E5D5B;
    margin-bottom: 1.5rem;
}

footer {
    background-color: #4E5D5B;
    padding: 1.5rem;
    text-align: center;
    color: #F6F1EB;
    position: relative;
    z-index: 1;
}

.footer-content p {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.footer-content a {
    color: #81D8D0;
    text-decoration: none;
}

.footer-content a:hover {
    color: #B8EBD0;
}

.social-links a {
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a[href*="facebook.com"] {
    color: #1877F2;
}

.social-links a[href*="facebook.com"]:hover {
    color: #3B8AF5;
}

.social-links a[href*="instagram.com"] {
    color: #E1306C;
}

.social-links a[href*="instagram.com"]:hover {
    color: #F06292;
}

.social-links a:not([href*="facebook.com"]):not([href*="instagram.com"]):hover {
    color: #81D8D0;
}

.footer-content .business-hours,
.footer-content .quick-links {
    margin: 1rem 0;
}

.footer-content .business-hours h3,
.footer-content .quick-links h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #F6F1EB;
    margin-bottom: 0.5rem;
}

.footer-content .business-hours p,
.footer-content .quick-links p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #F6F1EB;
}

.footer-content .quick-links a {
    color: #81D8D0;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-content .quick-links a:hover {
    color: #B8EBD0;
}

@media (max-width: 768px) {
    .footer-content .business-hours h3,
    .footer-content .quick-links h3 {
        font-size: 1.1rem;
    }

    .footer-content .business-hours p,
    .footer-content .quick-links p {
        font-size: 0.85rem;
    }

    .footer-content .quick-links a {
        margin: 0 0.3rem;
    }
}

@media (max-width: 768px) {
    .menu-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #F6F1EB;
        padding: 1.5rem 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        visibility: hidden;
        display: none;
        -webkit-transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }
    
    .menu-links li:not(:last-child)::after {
        display: none;
    }

    .menu-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .menu-links a {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        text-align: center;
    }

    .menu-icon {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group {
        min-width: 100%;
    }

    .booking-section {
        padding: 6rem 1.5rem 3rem;
        min-height: calc(100vh - 60px);
    }

    .booking-form, .confirmation {
        padding: 1.5rem;
    }

    .menu-bar {
        padding: 0.8rem 1.5rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .tips-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    .tip-card img {
        height: 140px;
    }

    .tip-card, .faq-item {
        padding: 1rem;
    }

    .review-gallery {
        grid-template-columns: 1fr;
    }

    .review-item img {
        height: 140px;
    }

    .review-item {
        padding: 1rem;
    }

    .masonry-item {
        position: relative;
        width: 100%;
        height: 200px;
        top: 0 !important;
        left: 0 !important;
    }
    
    .sticky-cta {
        bottom: calc(20px + env(safe-area-inset-bottom));
        right: calc(20px + env(safe-area-inset-right));
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .cta-btn, .tour-btn, .whatsapp-cta {
        padding: 0.8rem 2rem;
    }

    .faq-ctas {
        flex-direction: column;
    }

    .booking-section {
        padding: 5rem 1rem 2rem;
    }

    .booking-container {
        max-width: 100%;
    }

    .form-group input, .form-group select, .form-group textarea {
        padding: 0.7rem;
    }
    
    .sticky-cta {
        bottom: calc(15px + env(safe-area-inset-bottom));
        right: calc(15px + env(safe-area-inset-right));
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel .polaroid-item,
.carousel .masonry-item {
    flex: 0 0 100%;
    position: relative;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(78, 93, 91, 0.8);
    color: #F6F1EB;
    border: none;
    padding: 0.8rem;
    cursor: pointer;
    border-radius: 12px;
    font-size: 1.4rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 44px;
    min-height: 44px;
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-prev svg,
.carousel-next svg {
    width: 24px;
    height: 24px;
    fill: #F6F1EB;
    transition: fill 0.3s ease;
}

.carousel-prev:hover svg,
.carousel-next:hover svg {
    fill: #4E5D5B;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background-color: #4E5D5B66;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: #81D8D0;
}

@media (max-width: 768px) {
    .polaroid-stack.carousel,
    .masonry-grid.carousel {
        height: auto;
    }

    .carousel .polaroid-item,
    .carousel .masonry-item {
        max-width: 100%;
    }
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(45deg, #81D8D0, #B8EBD0, #81D8D0);
    background-size: 200% 200%;
    color: #4E5D5B;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s ease-in-out infinite;
}

.hero-cta:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(129, 216, 208, 0.4);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(129, 216, 208, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(129, 216, 208, 0.6);
    }
    100% {
        box-shadow: 0 0 10px rgba(129, 216, 208, 0.3);
    }
}

@media (max-width: 768px) {
    .hero-cta {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

.local-guide {
    padding: 6rem 2rem;
    background-color: #B8EBD0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.local-guide-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.local-guide-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.local-guide h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #3A4A48;
    margin-bottom: 3rem;
    transform: translateY(20%);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.local-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    justify-content: center; /* Center the grid items */
}

.local-guide-card {
    background-color: #F6F1EB;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.local-guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.local-guide-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.local-guide-card img:hover {
    transform: scale(1.03);
}

.local-guide-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #3A4A48;
    margin: 0;
}

.local-guide-card .caption {
    font-size: 1rem;
    font-weight: 400;
    color: #3A4A48;
    line-height: 1.5;
}

.local-guide-card .see-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.5rem;
    background-color: #81D8D0;
    color: #3A4A48;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    min-height: 44px;
}

.local-guide-card .see-more-btn:hover {
    background-color: #B8EBD0;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.local-guide-card .see-more-btn:focus {
    outline: 2px solid #3A4A48;
}

.local-guide-card .see-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.local-guide-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, padding 0.6s ease;
    padding: 0;
}

.local-guide-content.active {
    max-height: 3500px;
    padding: 1.5rem 0;
}

.local-guide-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3A4A48;
    margin-bottom: 1rem;
}

.local-guide-content ul {
    list-style-type: disc;
    margin-left: 1.8rem;
    margin-bottom: 1.5rem;
}

.local-guide-content li {
    font-size: 0.95rem;
    font-weight: 400;
    color: #3A4A48;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.local-guide-content p {
    font-size: 0.95rem;
    font-weight: 400;
    color: #3A4A48;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .local-guide {
        padding: 4rem 1.5rem;
    }

    .local-guide h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .local-guide-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .local-guide-card {
        padding: 1.5rem;
    }

    .local-guide-card img {
        height: 180px;
    }

    .local-guide-card h3 {
        font-size: 1.4rem;
    }

    .local-guide-card .caption {
        font-size: 0.9rem;
    }

    .local-guide-card .see-more-btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .local-guide {
        padding: 3rem 1rem;
    }

    .local-guide h2 {
        font-size: 1.8rem;
    }

    .local-guide-grid {
        gap: 1rem;
    }

    .local-guide-card {
        padding: 1rem;
    }

    .local-guide-card img {
        height: 150px;
    }

    .local-guide-card .see-more-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
}

.tour-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, padding 0.6s ease;
    padding: 0;
    background: rgba(246, 241, 235, 0.95);
}

.tour-content.active {
    max-height: 350px;
    padding: 1rem;
}

.tour-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4E5D5B;
    margin-bottom: 0.75rem;
}

.tour-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.tour-content li {
    font-size: 0.9rem;
    font-weight: 400;
    color: #4E5D5B;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.tour-content p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #4E5D5B;
    line-height: 1.5;
}

.view-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: #81D8D0;
    border: 2px solid #81D8D0;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 0.5rem;
}

.view-details-btn:hover {
    background-color: #81D8D0;
    color: #4E5D5B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.view-details-btn:focus {
    outline: 2px solid #4E5D5B;
}

.view-details-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .tour-content.active {
        max-height: 500px;
        padding: 0.75rem;
    }

    .tour-content h4 {
        font-size: 1.1rem;
    }

    .tour-content ul {
        margin-left: 1.2rem;
    }

    .tour-content li {
        font-size: 0.85rem;
    }

    .tour-content p {
        font-size: 0.85rem;
    }

    .view-details-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tour-content.active {
        max-height: 600px;
        padding: 0.5rem;
    }

    .tour-content h4 {
        font-size: 1rem;
    }

    .tour-content li {
        font-size: 0.8rem;
    }

    .tour-content p {
        font-size: 0.8rem;
    }

    .view-details-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #F6F1EB;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    position: relative;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: 60vh;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4E5D5B;
    -webkit-overflow-scrolling: touch;
}

.modal-body h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4E5D5B;
    margin: 1rem 0 0.75rem;
}

.modal-body ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body li {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.modal-body p {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #4E5D5B;
    cursor: pointer;
    transform: translateX(95%);
    transform: translateY(-70%);
    transition: color 0.3s ease, transform 0.2s ease;
}

.modal-close-btn:focus {
    outline: 2px solid #4E5D5B;
}

.modal-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.5rem;
    background-color: #81D8D0;
    color: #4E5D5B;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.modal-book-btn:hover {
    background-color: #B8EBD0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-book-btn:focus {
    outline: 2px solid #4E5D5B;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .modal-body {
        padding: 1.5rem;
        max-height: 65vh;
        font-size: 0.9rem;
    }

    .modal-body h4 {
        font-size: 1.2rem;
    }

    .modal-body li {
        font-size: 0.9rem;
    }

    .modal-body p {
        font-size: 0.9rem;
    }

    .modal-book-btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
    }

    .modal-body {
        padding: 1rem;
        max-height: 70vh;
        font-size: 0.85rem;
    }

    .modal-body h4 {
        font-size: 1.1rem;
    }

    .modal-body li {
        font-size: 0.85rem;
    }

    .modal-body p {
        font-size: 0.85rem;
    }

    .modal-book-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }

    .modal-close-btn {
        font-size: 1.3rem;
        top: 0.8rem;
        right: 0.8rem;
    }
}

.blog-content {
    padding: 5rem 2rem;
    background-color: #F6F1EB;
    min-height: calc(100vh - 60px);
}

.blog-container {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-post {
    width: 100%;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #4E5D5B99;
    transform: translateY(70%);
    margin-bottom: 1.5rem;
}

.blog-post h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-post h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #4E5D5B;
    margin: 2rem 0 1rem;
}

.blog-post h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4E5D5B;
    margin: 1.5rem 0 0.8rem;
}

.blog-post p {
    font-size: 1rem;
    font-weight: 400;
    color: #4E5D5B;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.blog-post ul {
    list-style-type: disc;
    margin-left: 1.8rem;
    margin-bottom: 1.5rem;
}

.blog-post li {
    font-size: 1rem;
    font-weight: 400;
    color: #4E5D5B;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.blog-post blockquote {
    background: #B8EBD0;
    padding: 1.5rem;
    border-left: 4px solid #81D8D0;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.blog-post blockquote p {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.blog-post blockquote cite {
    font-size: 0.9rem;
    color: #4E5D5B99;
    font-style: normal;
}

.blog-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-post a {
    color: #81D8D0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post a:hover {
    color: #B8EBD0;
    text-decoration: underline;
}

.blog-engagement {
    margin: 3rem 0;
}

.share-section, .comments-section {
    margin-bottom: 2rem;
}

.share-section h3, .comments-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4E5D5B;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.share-btn.facebook { background-color: #1877F2; }
.share-btn.twitter { background-color: #1DA1F2; }
.share-btn.linkedin { background-color: #0077B5; }
.share-btn.whatsapp { background-color: #25D366; }

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn i {
    font-size: 1.3rem;
}

#comment-form .form-group {
    margin-bottom: 1.2rem;
}

#comment-form .form-group label {
    font-size: 0.95rem;
    font-weight: 400;
    color: #4E5D5B;
}

#comment-form .form-group input,
#comment-form .form-group textarea {
    padding: 0.9rem;
    border: 1px solid #4E5D5B33;
    border-radius: 6px;
    font-size: 0.95rem;
    width: 100%;
    transition: border-color 0.3s ease;
}

#comment-form .form-group input:focus,
#comment-form .form-group textarea:focus {
    border-color: #81D8D0;
    outline: none;
}

#comment-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

#comments-list {
    margin-top: 1.5rem;
}

.comment {
    background: #FFFFFF;
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.comment p {
    font-size: 0.95rem;
    color: #4E5D5B;
    line-height: 1.6;
}

.comment-meta {
    font-size: 0.85rem;
    color: #4E5D5B99;
    margin-bottom: 0.5rem;
}

.related-posts-section {
    margin-top: 3rem;
}

.related-posts-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4E5D5B;
    margin-bottom: 1rem;
}

.related-posts {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.related-posts li {
    font-size: 1rem;
}

.related-posts a {
    color: #81D8D0;
    text-decoration: none;
}

.related-posts a:hover {
    color: #B8EBD0;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-content {
        padding: 3rem 1.5rem;
    }

    .blog-post h1 {
        font-size: 2.2rem;
    }

    .blog-post h2 {
        font-size: 1.8rem;
    }

    .blog-post h3 {
        font-size: 1.3rem;
    }

    .blog-post p, .blog-post li {
        font-size: 0.95rem;
    }

    .blog-image {
        max-height: 400px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
    }

    .share-btn i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .blog-content {
        padding: 2rem 1rem;
    }

    .blog-post h1 {
        font-size: 1.8rem;
    }

    .blog-post h2 {
        font-size: 1.6rem;
    }

    .blog-post h3 {
        font-size: 1.2rem;
    }

    .blog-post p, .blog-post li {
        font-size: 0.9rem;
    }

    .blog-image {
        max-height: 300px;
    }

    .share-btn {
        width: 35px;
        height: 35px;
    }

    .share-btn i {
        font-size: 1rem;
    }
}

.blog-preview {
    padding: 5rem 2rem;
    background-color: #F6F1EB;
    text-align: center;
}

.blog-preview-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-preview-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-preview h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.blog-preview-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
}

.blog-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.blog-preview-image {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
}

.blog-preview-content {
    flex: 1;
    text-align: left;
}

.blog-preview-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4E5D5B;
    margin-bottom: 0.75rem;
}

.blog-preview-excerpt {
    font-size: 0.95rem;
    font-weight: 400;
    color: #4E5D5B;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.blog-preview-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background-color: #81D8D0;
    color: #4E5D5B;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.blog-preview-btn:hover {
    background-color: #B8EBD0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.see-more-blogs {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .blog-preview {
        padding: 3rem 1.5rem;
    }

    .blog-preview h2 {
        font-size: 1.8rem;
    }

    .blog-preview-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }

    .blog-preview-image {
        width: 100%;
        height: 200px;
    }

    .blog-preview-content {
        text-align: center;
    }

    .blog-preview-content h3 {
        font-size: 1.3rem;
    }

    .blog-preview-excerpt {
        font-size: 0.9rem;
    }

    .blog-preview-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .blog-preview {
        padding: 2rem 1rem;
    }

    .blog-preview h2 {
        font-size: 1.6rem;
    }

    .blog-preview-card {
        padding: 1rem;
    }

    .blog-preview-image {
        height: 180px;
    }

    .blog-preview-content h3 {
        font-size: 1.2rem;
    }

    .blog-preview-excerpt {
        font-size: 0.85rem;
    }

    .blog-preview-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

.local-guide-preview {
    padding: 5rem 2rem;
    background-color: #F6F1EB;
    text-align: center;
}

.local-guide-preview-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.local-guide-preview-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.local-guide-preview h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.local-guide-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.local-guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.local-guide-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.local-guide-card img:hover {
    transform: scale(1.03);
}

.local-guide-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4E5D5B;
    margin: 0;
}

.local-guide-card .caption {
    font-size: 0.95rem;
    font-weight: 400;
    color: #4E5D5B;
    line-height: 1.5;
}

.local-guide-card .see-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background-color: #81D8D0;
    color: #4E5D5B;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.local-guide-card .see-more-btn:hover {
    background-color: #B8EBD0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.see-more-guides {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .local-guide-preview {
        padding: 3rem 1.5rem;
    }

    .local-guide-preview h2 {
        font-size: 1.8rem;
    }

    .local-guide-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .local-guide-card {
        padding: 1.2rem;
    }

    .local-guide-card img {
        height: 160px;
    }

    .local-guide-card h3 {
        font-size: 1.3rem;
    }

    .local-guide-card .caption {
        font-size: 0.9rem;
    }

    .local-guide-card .see-more-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .local-guide-preview {
        padding: 2rem 1rem;
    }

    .local-guide-preview h2 {
        font-size: 1.6rem;
    }

    .local-guide-card {
        padding: 1rem;
    }

    .local-guide-card img {
        height: 140px;
    }

    .local-guide-card h3 {
        font-size: 1.2rem;
    }

    .local-guide-card .caption {
        font-size: 0.85rem;
    }

    .local-guide-card .see-more-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* About Page Specific Styles */
.about h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #4E5D5B;
    margin-bottom: 1rem;
    position: relative;
}

.about h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #81D8D0;
    margin: 0.5rem 0 1rem;
}

.about-text p {
    font-size: 1rem;
    font-weight: 400;
    color: #4E5D5B;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-text ul {
    list-style-type: disc;
    margin-left: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-text li {
    font-size: 0.95rem;
    font-weight: 400;
    color: #4E5D5B;
    margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
    .about h1 {
        font-size: 2.2rem;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .about-text p, .about-text li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about h1 {
        font-size: 1.8rem;
    }

    .about h2 {
        font-size: 1.6rem;
    }

    .about-text p, .about-text li {
        font-size: 0.9rem;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #81D8D0;
    color: #4E5D5B;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #B8EBD0;
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.back-to-top:focus {
    outline: 2px solid #4E5D5B;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.search-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: #4E5D5B;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    transform: translateX(200%);
    justify-content: center;
}

.search-icon:focus {
    outline: 2px solid #81D8D0;
}

.search-icon svg {
    width: 24px;
    height: 24px;
}

.search-container {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #4E5D5B;
}

#search-input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 1px solid #4E5D5B33;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4E5D5B;
    transition: border-color 0.3s ease;
}

#search-input:focus {
    border-color: #81D8D0;
    outline: none;
}

.search-results {
    max-height: 50vh;
    overflow-y: auto;
    padding: 0.5rem;
}

.search-result-item {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.search-result-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4E5D5B;
    margin-bottom: 0.5rem;
}

.search-result-item p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #4E5D5B;
    margin-bottom: 0.5rem;
}

.search-result-item a {
    color: #81D8D0;
    text-decoration: none;
    font-weight: 500;
}

.search-result-item a:hover {
    color: #B8EBD0;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .search-icon {
        padding: 0.4rem;
    }

    .search-icon svg {
        width: 20px;
        height: 20px;
    }

    #search-input {
        font-size: 0.9rem;
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    }

    .search-input-icon {
        width: 18px;
        height: 18px;
    }

    .search-result-item h4 {
        font-size: 1.1rem;
    }

    .search-result-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .search-icon {
        padding: 0.3rem;
    }

    .search-icon svg {
        width: 18px;
        height: 18px;
    }

    #search-input {
        font-size: 0.85rem;
        padding: 0.7rem 0.7rem 0.7rem 2.2rem;
    }

    .search-input-icon {
        width: 16px;
        height: 16px;
    }

    .search-result-item {
        padding: 0.8rem;
    }

    .search-result-item h4 {
        font-size: 1rem;
    }

    .search-result-item p {
        font-size: 0.8rem;
    }
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.whatsapp-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background: lightGreen;
    background-size: 150% 150%;
    color: black;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulseGlowWhatsApp 2.5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero-ctas {
        gap: 1rem;
    }

    .whatsapp-hero-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        gap: 0.8rem;
    }

    .whatsapp-hero-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

.contact {
    padding: 7rem 2rem 5rem;
    background-color: #B8EBD0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    padding: 2rem;
    background-color: #F6F1EB;
}

.contact-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0,0.5);
}

.contact p {
    font-size: 1.1rem;
    font-weight: 400;
    color: #4E5D5B;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#contact-form {
    background-color: #F6F1EB;
    padding: 3rem;
    border-radius: 16px;
    transition: box-shadow 0.3s ease;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4E5D5B;
    min-height: 24px;
}

.form-status.error {
    color: #D8000C;
}

.form-status.success {
    color: #81D8D0;
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 1.5rem;
    }

    .contact h2 {
        font-size: 2.2rem;
    }

    .contact p {
        font-size: 1rem;
    }

    #contact-form {
        padding: 2rem;
    }
    
    .form-row {
        gap: 1rem;
    }

    .form-group {
        min-width: 100%;
    }

    .submit-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 1rem;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact p {
        font-size: 0.9rem;
    }

    #contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    .form-group .error-message {
        font-size: 0.8rem;
        bottom: -1.2rem;
    }
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: #81D8D0;
    color: #4E5D5B;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-position 0.5s ease, transform 0.2s ease, box-shadow 0.3s ease;
    background-size: 200% 200%;
    animation: pulseGlow 2s ease-in-out infinite;
}

.submit-btn:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background: #4E5D5B33;
    color: #4E5D5B99;
    cursor: not-allowed;
    animation: none;
}

.submit-btn .spinner {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #4E5D5B;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 0.5rem;
    display: none;
}

.submit-btn .spinner.active {
    display: inline-block;
}

.spinner {
    display: none;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #F6F6;
    border-top: 2px solid #4E5D5B;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: relative;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.spinner.active {
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 480px) {
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .spinner {
        width: 1rem;
        height: 1rem;
        border-width: 2px;
    }
}

.tour-info p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tour-info strong {
    color: #4E5D5B;
    font-weight: 600;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    min-width: 220px;
    position: relative;
}

.form-group.full-width {
    flex: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4E5D5B;
    transition: color 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #4E5D5B33;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4E5D5B;
    background-color: #F6F1EB;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner.active {
    display: inline-block;
}

.form-status {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 400;
    display: none;
    text-align: center;
}

.form-status.success {
    display: block;
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-status.error {
    display: block;
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(129, 216, 208, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(129, 216, 208, 0.6);
    }
    100% {
        box-shadow: 0 0 10px rgba(129, 216, 208, 0.3);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.carousel .masonry-item {
    overflow: hidden;
    width: 100%;
    height: 350px;
    border-radius: 10px;
    margin: 0 0.75rem;
}

.carousel .masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .carousel .masonry-item {
        height: 300px;
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .carousel .masonry-item {
        height: 250px;
        margin: 0 0.5rem;
    }
}

.image-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.image-preview img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.close-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.reviews-screenshots {
    padding: 5rem 2rem;
    background-color: #B8EBD0;
    text-align: center;
}

.reviews-screenshots h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.reviews-screenshots .carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.reviews-screenshots .carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.reviews-screenshots .polaroid-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 1rem;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin: 0 0.5rem;
}

.reviews-screenshots .polaroid-item img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.reviews-screenshots .carousel-prev,
.reviews-screenshots .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(78, 93, 91, 0.8);
    color: #F6F1EB;
    border: none;
    padding: 0.8rem;
    cursor: pointer;
    border-radius: 12px;
    font-size: 1.4rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    z-index: 10;
    width: 40px;
    height: 40px;
    min-width: 44px;
    min-height: 44px;
}

.reviews-screenshots .carousel-prev {
    left: 10px;
}

.reviews-screenshots .carousel-next {
    right: 10px;
}

.reviews-screenshots .carousel-prev:hover,
.reviews-screenshots .carousel-next:hover {
    background-color: rgba(78, 93, 91, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.reviews-screenshots .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.reviews-screenshots .carousel-dot {
    width: 12px;
    height: 12px;
    background-color: #4E5D5B66;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.reviews-screenshots .carousel-dot.active {
    background-color: #81D8D0;
    transform: scale(1.2);
}

.reviews-cta {
    margin-top: 2rem;
}

.reviews-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.5rem;
    background-color: #81D8D0;
    color: #4E5D5B;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.reviews-cta .btn:hover {
    background-color: #B8EBD0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .reviews-screenshots {
        padding: 3rem 1.5rem;
    }

    .reviews-screenshots h2 {
        font-size: 2rem;
    }

    .reviews-screenshots .carousel {
        max-width: 100%;
    }

    .reviews-screenshots .polaroid-item {
        padding: 0.75rem;
        margin: 0 0.3rem;
    }

    .reviews-screenshots .polaroid-item img {
        max-height: 400px;
    }

    .reviews-cta .btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .reviews-screenshots {
        padding: 2rem 1rem;
    }

    .reviews-screenshots h2 {
        font-size: 1.8rem;
    }

    .reviews-screenshots .polaroid-item img {
        max-height: 300px;
    }

    .reviews-screenshots .carousel-prev,
    .reviews-screenshots .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .reviews-screenshots .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .reviews-cta .btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
}

.whatsapp-group {
    position: relative;
}

.input-with-button {
    display: flex;
    align-items: center;
    position: relative;
}

.reminder-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #4E5D5B;
    transition: color 0.3s ease, transform 0.2s ease;
}

.reminder-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 480px) {
    .reminder-btn {
        padding: 0.3rem;
    }

    .reminder-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Styling for the Number of Nights field in book.html */
form#booking-form .form-group label[for="nights"] {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4E5D5B;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

form#booking-form .form-group select#nights {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #4E5D5B33;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4E5D5B;
    background-color: #F6F1EB;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="#4E5D5B" d="M2 4l4 4 4-4H2z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

form#booking-form .form-group select#nights:focus {
    outline: none;
    border-color: #81D8D0;
    box-shadow: 0 0 8px rgba(129, 216, 208, 0.3);
}

form#booking-form .form-group select#nights:invalid {
    color: #4E5D5B66; /* Placeholder-like color for "Select Number of Nights" */
}

@media (max-width: 480px) {
    form#booking-form .form-group label[for="nights"] {
        font-size: 0.9rem;
    }

    form#booking-form .form-group select#nights {
        padding: 0.8rem;
        font-size: 0.9rem;
        background-position: right 0.8rem center;
    }
}

.tour-bundles {
    padding: 5rem 2rem;
    background-color: #F6F1EB;
    text-align: center;
}

.tour-bundles h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 1rem;
}

.tour-bundles p {
    font-size: 1.1rem;
    font-weight: 400;
    color: #4E5D5B;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bundle-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.bundle-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.bundle-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 1rem;
}

.bundle-card.best-seller h3 span {
    font-size: 1rem;
    color: #81D8D0;
    font-weight: 500;
}

.bundle-card .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #81D8D0;
    margin-bottom: 1.5rem;
}

.bundle-card ul {
    list-style-type: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.bundle-card ul li {
    font-size: 0.95rem;
    color: #4E5D5B;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.bundle-card ul li strong {
    font-weight: 600;
}

@media (max-width: 768px) {
    .tour-bundles {
        padding: 3rem 1.5rem;
    }

    .tour-bundles h2 {
        font-size: 2rem;
    }

    .tour-bundles p {
        font-size: 1rem;
    }

    .bundle-card {
        padding: 1.5rem;
    }

    .bundle-card h3 {
        font-size: 1.5rem;
    }

    .bundle-card .price {
        font-size: 1.1rem;
    }

    .bundle-card ul li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tour-bundles {
        padding: 2rem 1rem;
    }

    .tour-bundles h2 {
        font-size: 1.8rem;
    }

    .tour-bundles p {
        font-size: 0.9rem;
    }

    .bundle-card {
        padding: 1rem;
    }

    .bundle-card h3 {
        font-size: 1.3rem;
    }

    .bundle-card .price {
        font-size: 1rem;
    }

    .bundle-card ul li {
        font-size: 0.85rem;
    }
}

#booking-form select#tour {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #4E5D5B33;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4E5D5B;
    background-color: #F6F1EB;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="#4E5D5B" d="M2 4l4 4 4-4H2z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

#booking-form select#tour:focus {
    outline: none;
    border-color: #81D8D0;
    box-shadow: 0 0 8px rgba(129, 216, 208, 0.3);
}

#booking-form select#tour:invalid {
    color: #4E5D5B66;
}

@media (max-width: 480px) {
    #booking-form select#tour {
        padding: 0.8rem;
        font-size: 0.9rem;
        background-position: right 0.8rem center;
    }
}

.menu-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    text-decoration: none;
    color: #4E5D5B;
    transition: color 0.3s ease;
    cursor: pointer; /* Ensure the button is clickable */
}

.cart-btn:hover {
    color: #81D8D0;
}

.cart-btn svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #81D8D0;
    color: #4E5D5B;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.upsell {
    padding: 6rem 1.5rem;
    background-color: #F6F1EB;
    text-align: center;
}

.upsell-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.upsell-container h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.upsell-container p {
    font-size: 1.1rem;
    font-weight: 400;
    color: #4E5D5B;
    max-width: 680px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.upsell-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4E5D5B;
    margin: 3rem 0 1.5rem;
    text-align: left;
    letter-spacing: -0.01em;
}

.upsell-item {
    flex: 0 0 100%;
    max-width: 360px; /* Set a fixed max-width for consistency */
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.upsell-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.upsell-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.upsell-details {
    text-align: left;
}

.upsell-details p:first-child {
    font-size: 1.15rem;
    font-weight: 600;
    color: #4E5D5B;
    margin-bottom: 0.75rem;
}

.upsell-details p {
    font-size: 0.95rem;
    color: #4E5D5B;
    line-height: 1.6;
}

.add-to-cart-btn {
    padding: 0.9rem 2.25rem;
    background-color: #81D8D0;
    color: #4E5D5B;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    cursor: pointer;
    min-width: 140px;
    text-align: center;
}

.add-to-cart-btn:hover {
    background-color: #B8EBD0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn:focus {
    outline: 3px solid #4E5D5B;
    outline-offset: 2px;
}

.add-to-cart-btn:disabled {
    background-color: #d1d1d1;
    color: #6b6b6b;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.upsell-cta {
    background-color: #81D8D0;
    color: #4E5D5B;
    font-weight: 600;
    padding: 1.1rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 2.5rem auto;
    transition: background-color 0.3s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.upsell-cta:hover {
    background-color: #B8EBD0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.upsell-cta:focus {
    outline: 3px solid #4E5D5B;
    outline-offset: 2px;
}

/* Cart Dropdown */
.cart-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    min-width: 300px;
    max-width: 360px;
    z-index: 1000;
    padding: 1.75rem;
    border: 1px solid #4E5D5B0F;
}

.cart-dropdown-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4E5D5B;
    margin-bottom: 1.5rem;
    text-align: left;
    letter-spacing: -0.01em;
}

.cart-items {
    list-style: none;
    max-height: 240px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    padding-right: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: #81D8D0 #F6F1EB;
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: #F6F1EB;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #81D8D0;
    border-radius: 6px;
}

.cart-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #4E5D5B;
    padding: 0.8rem 0;
    border-bottom: 1px solid #4E5D5B0F;
}

.remove-item-btn {
    background-color: #FF6B6B;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.remove-item-btn:hover {
    background-color: #FF8787;
}

.remove-item-btn:focus {
    outline: 3px solid #4E5D5B;
    outline-offset: 2px;
}

.cart-empty {
    font-size: 0.95rem;
    color: #4E5D5B;
    text-align: center;
    padding: 1.25rem 0;
    font-style: italic;
}

.cart-checkout-btn {
    display: block;
    text-align: center;
    padding: 0.9rem;
    background-color: #81D8D0;
    color: #4E5D5B;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-checkout-btn:hover {
    background-color: #B8EBD0;
    transform: translateY(-2px);
}

.cart-checkout-btn:focus {
    outline: 3px solid #4E5D5B;
    outline-offset: 2px;
}

.cart-count {
    position: absolute;
    top: -14px;
    right: -14px;
    background-color: #81D8D0;
    color: #4E5D5B;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .upsell {
        padding: 4rem 1.25rem;
    }

    .upsell-container h2 {
        font-size: 2.4rem;
    }

    .upsell-container p {
        font-size: 1rem;
        max-width: 90%;
    }

    .upsell-container h3 {
        font-size: 1.4rem;
    }

    .upsell-item {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .add-to-cart-btn {
        width: 100%;
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .upsell-cta {
        padding: 1rem 2.5rem;
        font-size: 0.95rem;
    }

    .cart-dropdown {
        min-width: 260px;
        max-width: 320px;
        padding: 1.5rem;
    }

    .cart-dropdown-content h3 {
        font-size: 1.2rem;
    }

    .cart-items li {
        font-size: 0.9rem;
    }

    .cart-checkout-btn {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .upsell {
        padding: 3rem 1rem;
    }

    .upsell-container h2 {
        font-size: 2rem;
    }

    .upsell-container p {
        font-size: 0.95rem;
    }

    .upsell-container h3 {
        font-size: 1.25rem;
    }

    .upsell-item {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .upsell-details p:first-child {
        font-size: 1.05rem;
    }

    .upsell-details p {
        font-size: 0.9rem;
    }

    .add-to-cart-btn {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .upsell-cta {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .cart-dropdown {
        min-width: 220px;
        padding: 1.25rem;
    }

    .cart-dropdown-content h3 {
        font-size: 1.1rem;
    }

    .cart-items li {
        font-size: 0.85rem;
    }

    .cart-checkout-btn {
        font-size: 0.85rem;
    }

    .cart-count {
        width: 24px;
        height: 24px;
        font-size: 0.85rem;
    }
}

.add-ons-list {
    list-style: none;
    margin-top: 1rem;
}

.add-ons-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #4E5D5B;
    border-bottom: 1px solid #4E5D5B33;
}

.add-on-quantity {
    width: 60px;
    padding: 0.2rem;
    margin-right: 0.5rem;
    border: 1px solid #4E5D5B;
    border-radius: 4px;
    background-color: #FFFFFF;
    font-size: 0.9rem;
    color: #4E5D5B;
    font-family: 'Poppins', sans-serif;
}

.add-on-quantity:focus {
    outline: none;
    border-color: #81D8D0;
    box-shadow: 0 0 5px rgba(129, 216, 208, 0.5);
}

@media (max-width: 768px) {
    .add-on-quantity {
        width: 50px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .add-on-quantity {
        width: 45px;
        font-size: 0.8rem;
    }
}

.remove-add-on-btn {
    background: none;
    border: none;
    color: #FF6B6B;
    cursor: pointer;
    transition: color 0.3s ease;
}

.remove-add-on-btn:hover {
    color: #FF8787;
}

.remove-add-on-btn svg {
    width: 20px;
    height: 20px;
}

.add-ons-empty {
    font-size: 0.9rem;
    color: #4E5D5B;
    text-align: center;
    display: none;
    margin-top: 1rem;
}

.upsell-cta {
    background-color: #81D8D0;
    color: black;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .upsell-cta {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .upsell-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

.upsell-carousel {
    padding: 4rem 10%;
    background-color: #F6F1EB;
    text-align: center;
}

.upsell-carousel h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 1rem;
}

.upsell-carousel p {
    font-size: 1.1rem;
    color: #4E5D5B;
    margin-bottom: 1.5rem;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.upsell-item {
    flex: 0 0 33.33%; /* Show 3 items at a time */
    max-width: 33.33%;
    padding: 1.5rem;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.upsell-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.upsell-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4E5D5B;
    margin-bottom: 0.5rem;
}

.upsell-item p {
    font-size: 0.95rem;
    color: #4E5D5B;
    margin-bottom: 1rem;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #81D8D0;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carousel-prev {
    left: -50px;
}

.carousel-next {
    right: -50px;
}

.carousel-prev:hover, .carousel-next:hover {
    background-color: #B8EBD0;
}

@media (max-width: 1024px) {
    .upsell-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .carousel-prev {
        left: -30px;
    }

    .carousel-next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .upsell-carousel {
        padding: 2rem 5%;
    }

    .upsell-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .carousel-prev, .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: -15px;
    }

    .carousel-next {
        right: -15px;
    }
}

@media (max-width: 480px) {
    .upsell-carousel h2 {
        font-size: 1.8rem;
    }

    .upsell-carousel p {
        font-size: 0.9rem;
    }

    .upsell-item {
        padding: 1rem;
    }

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

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

/* Add to styles.css */
.add-ons-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    background-color: #81D8D0;
    color: #4E5D5B;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.add-ons-btn:hover {
    background-color: #B8EBD0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .add-ons-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }
}

@media (max-width: 480px) {
    .add-ons-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
    }
}

.category-section {
    position: relative;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    z-index: 1;
}

.category-section h3,
.category-section .upsell-item {
    position: relative;
    z-index: 2;
}

.category-section h3 {
    color: #F6F1EB; /* Light text for contrast on dark overlay */
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.category-section .upsell-item {
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white for contrast */
}

.category-section.beach-gear {
    background-image: url('beach-gear.webp');
}

.category-section.equipment {
    background-image: url('equipment.webp');
}

.category-section.services {
    background-image: url('services.webp');
}

.category-section.transport {
    background-image: url('transport.webp');
}

.category-section.recovery {
    background-image: url('recovery.webp');
}

.category-section.experience {
    background-image: url('exclusive.webp');
}

@media (max-width: 768px) {
    .category-section {
        padding: 2rem 1.25rem;
        margin-bottom: 1.5rem;
    }

    .category-section h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .category-section {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .category-section h3 {
        font-size: 1.4rem;
    }
}

.bundle-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.bundle-gallery > h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.bundle-gallery > p {
    font-size: 1.1rem;
    color: #4E5D5B;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.bundle-item {
    background-color: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
}

.bundle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.bundle-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.bundle-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4E5D5B;
    margin-bottom: 0.75rem;
}

.bundle-item p {
    font-size: 1rem;
    color: #4E5D5B;
    margin-bottom: 1.25rem;
}

.bundle-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #81D8D0;
    color: #4E5D5B;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.bundle-btn:hover {
    background-color: #B8EBD0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .bundle-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bundle-item {
        padding: 1.25rem;
    }

    .bundle-image {
        height: 180px;
    }

    .bundle-item h3 {
        font-size: 1.3rem;
    }

    .bundle-item p {
        font-size: 0.95rem;
    }

    .bundle-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .bundle-gallery {
        gap: 1rem;
    }

    .bundle-item {
        padding: 1rem;
    }

    .bundle-image {
        height: 160px;
    }

    .bundle-item h3 {
        font-size: 1.2rem;
    }

    .bundle-item p {
        font-size: 0.9rem;
    }

    .bundle-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}