/* Modern Typography */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Critical CSS - Load First */
:root {
    --primary: #3498DB;
    --primary-dark: #2980B9;
    --secondary: #E74C3C;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --background: #F7F9FC;
    --card-bg: #FFFFFF;
    --accent: #00B894;
    --transition-fast: 0.3s ease;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-bg: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Base Styles - Critical */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    margin: 0;
    padding-top: 70px;
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevent layout shift */
}

[loading="lazy"] {
    background: #f0f0f0; /* Placeholder color */
}

/* Container - Critical */
.container {
    width: min(100% - 2rem, 1200px);
    margin-inline: auto;
    padding-inline: 1rem;
    box-sizing: border-box;
}

/* Navbar - Critical */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: background-color var(--transition-fast);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Hero Section - Critical */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/dandeli-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding-block: 150px;
    padding-inline: 20px;
    text-align: center;
    border-radius: 25px;
    margin: 20px auto;
    position: relative;
    max-width: 1400px;
    overflow: hidden;
    will-change: transform;
}

/* Utility Classes - Critical */
.text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.hidden { display: none; }

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* Non-critical styles loaded asynchronously */
@media print {
    .no-print {
        display: none !important;
    }
}

/* Mobile Menu - Non-critical */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        inset-block-start: 0;
        inset-inline-end: -100%;
        width: min(80%, 400px);
        height: 100vh;
        background: white;
        transition: transform var(--transition-fast);
        transform: translateX(100%);
    }

    .nav-menu.active {
        transform: translateX(0);
    }
}

/* Load fonts asynchronously */
@font-face {
    font-family: 'Poppins';
    font-display: swap;
    src: local('Poppins'), url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap') format('woff2');
    unicode-range: U+000-5FF; /* Latin glyphs only */
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.landing-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: url('images/dandeli-bg.jpg') no-repeat center center;*/
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Activity Cards Update */
.activity-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.activity-card i {
    font-size: 2.2em;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Timeline Update */
.timeline li {
    list-style: none;
    padding: 15px 0;
    border-bottom: 1px solid #E2E8F0;
}

.timeline li span {
    font-weight: 600;
    color: var(--primary);
    margin-right: 10px;
}

/* CTA Button Update */
.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

/* Section Headers */
h2 {
    font-size: 2.2em;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 1.4em;
    font-weight: 500;
    color: var(--text-dark);
}

/* Price Tag Update */
.price-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    margin: 25px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price {
    font-size: 2.5em;
    font-weight: 700;
}

.per-couple {
    font-size: 1.1em;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 30px;
}

.hero-cta .cta-button {
    background: #3498DB;
    color: white;
    padding: 15px 40px;
    font-size: 1.2em;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.hero-cta .cta-button:hover {
    background: #2980B9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px;
    }

    .hero-content h1 {
        font-size: 2.8em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .price-tag {
        padding: 12px 25px;
    }

    .price {
        font-size: 2em;
    }

    .per-couple {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 15px;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .price-tag {
        padding: 10px 20px;
        flex-direction: column;
        gap: 5px;
    }

    .price {
        font-size: 1.8em;
    }

    .per-couple {
        font-size: 0.9em;
    }
}

.water-activities .activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.indoor-activities .activities-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin: 20px 0;
}

/* For mobile responsiveness */
@media (max-width: 1200px) {
    .indoor-activities .activities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .water-activities .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .indoor-activities .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .water-activities .activities-grid,
    .indoor-activities .activities-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern Itinerary Section */
.itinerary-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 40px;
    border-radius: 30px;
    margin: 60px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.itinerary-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.itinerary-section h2 {
    color: var(--text-dark);
    font-size: 2.5em;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.itinerary-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.day-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

.day-card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.day-card h3 {
    color: var(--primary);
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.day-card h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 30px;
    background: var(--primary);
    border-radius: 4px;
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline li {
    position: relative;
    padding: 20px 0 20px 70px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.timeline li::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
}

.timeline li::after {
    content: '';
    position: absolute;
    left: 31px;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #e9ecef;
    transform: translateY(-50%);
}

.timeline li span {
    display: block;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1em;
    margin-bottom: 5px;
}

.timeline li p {
    margin: 0;
    color: var(--text-light);
    font-size: 1em;
}

@media (max-width: 1024px) {
    .day-cards {
        gap: 30px;
    }
    
    .day-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .itinerary-section {
        padding: 40px 25px;
    }

    .day-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .day-card {
        padding: 25px;
    }
    
    .day-card h3 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    
    .timeline li {
        padding: 15px 0 15px 60px;
    }
}

@media (max-width: 480px) {
    .itinerary-section {
        padding: 30px 20px;
    }
    
    .day-card {
        padding: 20px;
    }
    
    .day-card h3 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    
    .timeline li {
        padding: 12px 0 12px 50px;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline li::before {
        left: 18px;
        width: 14px;
        height: 14px;
    }
    
    .timeline li::after {
        left: 26px;
        width: 25px;
    }
}

/* Modern Meals Section */
.meals-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 40px;
    border-radius: 30px;
    margin: 60px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.meals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.meals-section h2 {
    color: var(--text-dark);
    font-size: 2.5em;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.meals-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.meals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding: 20px;
}

.meal-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.meal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.meal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.meal-card:hover::before {
    transform: scaleX(1);
}

.meal-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(0, 184, 148, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.meal-card:hover .meal-icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(0, 184, 148, 0.2) 100%);
}

.meal-card i {
    font-size: 2.2em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.meal-card h3 {
    color: var(--text-dark);
    font-size: 1.5em;
    margin: 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.meal-time {
    color: var(--text-light);
    font-size: 0.9em;
    margin-top: 10px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .meals-grid {
        gap: 25px;
    }
    
    .meal-card {
        padding: 35px 25px;
    }
    
    .meal-icon-wrapper {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .meals-section {
        padding: 40px 25px;
    }

    .meals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 10px;
    }
    
    .meal-card {
        padding: 30px 20px;
    }
    
    .meal-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .meal-card i {
        font-size: 1.8em;
    }
    
    .meal-card h3 {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .meals-section {
        padding: 30px 20px;
    }

    .meals-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .meal-card {
        padding: 25px 20px;
    }
}

/* Gallery Section */
.gallery-section {
    margin: 60px 0;
    position: relative;
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
    -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
    scrollbar-width: none;  /* Hide scrollbar for Firefox */
}

.gallery-track::-webkit-scrollbar {
    display: none;  /* Hide scrollbar for Chrome, Safari and Opera */
}

.gallery-item {
    flex: 0 0 calc(25% - 15px);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Updated gallery navigation buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-nav.prev { left: 0; }
.gallery-nav.next { right: 0; }

/* Updated Modal Styles */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.gallery-modal.active {
    display: flex;
}

.modal-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
    padding: 0 50px;
}

.modal-track {
    display: flex;
    transition: transform 0.3s ease;
}

.modal-track img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

/* Updated modal close button */
.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Updated modal navigation buttons */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-nav.prev { left: 0; }
.modal-nav.next { right: 0; }

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .gallery-carousel {
        padding: 0 35px;
    }

    .gallery-item {
        flex: 0 0 100%;
    }
    
    .gallery-overlay {
        opacity: 1;
    }
    
    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

    .modal-content {
        padding: 0 40px;
    }
    
    .modal-nav {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .gallery-carousel {
        padding: 0 30px;
    }

    .gallery-nav {
        width: 30px;
        height: 30px;
    }

    .modal-content {
        padding: 0 35px;
    }

    .modal-nav {
        width: 30px;
        height: 30px;
    }
}

/* Water Activities List Style */
.activities-list-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
}

.activities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activities-list li {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.activities-list li:last-child {
    border-bottom: none;
}

.activities-list li:hover {
    background: linear-gradient(to right, rgba(52, 152, 219, 0.05), transparent);
    transform: translateX(10px);
}

.activity-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.activity-icon i {
    color: white;
    font-size: 1.8em;
}

.activity-details {
    flex-grow: 1;
}

.activity-details h3 {
    margin: 0 0 5px 0;
    color: var(--text-dark);
}

.activity-details p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .activities-list-card {
        padding: 20px;
    }

    .activities-list li {
        padding: 15px;
    }

    .activity-icon {
        width: 50px;
        height: 50px;
    }

    .activity-icon i {
        font-size: 1.5em;
    }
}
/* Water Activities Cards Style */
.activities-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.activity-destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.activity-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.activity-destination-card:hover .activity-image img {
    transform: scale(1.05);
}

.rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating i {
    color: #FFD700;
}

.activity-content {
    padding: 20px;
}

.activity-content h3 {
    margin: 0 0 15px 0;
    color: var(--text-dark);
    font-size: 1.3em;
}

.activity-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9em;
}

.activity-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.activity-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.activity-price .price {
    color: var(--primary);
    font-size: 1.4em;
    font-weight: 600;
}

.activity-price .per-person {
    color: var(--text-light);
    font-size: 0.9em;
}

@media (max-width: 1024px) {
    .activities-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .activities-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .activities-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
/* Indoor Activities specific grid */
.indoor-activities .activities-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 30px 0;
}

@media (max-width: 1024px) {
    .indoor-activities .activities-cards {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .indoor-activities .activities-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .indoor-activities .activities-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
.popular-destinations {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .subtitle {
    color: #777;
    font-size: 1.1em;
}

.section-header h2 {
    font-size: 2.5em;
    margin: 10px 0;
}

.section-header .highlight {
    color: #FF6B35;
}

.destinations-carousel {
    position: relative;
    padding: 0 50px;
    display: flex;
    align-items: center;
}

.destinations-track {
    display: flex;
    gap: 25px;
    overflow: hidden;
}

.destination-card {
    flex: 0 0 calc(33.333% - 17px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: white;
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.trip-details {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    color: #666;
    font-size: 0.9em;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price .amount {
    color: #FF6B35;
    font-size: 1.2em;
    font-weight: 600;
}

.price .per-person {
    color: #666;
    font-size: 0.9em;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
}

.nav-btn.prev { left: 0; }
.nav-btn.next { right: 0; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.dot.active {
    background: #FF6B35;
}

@media (max-width: 1024px) {
    .destination-card {
        flex: 0 0 calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .destination-card {
        flex: 0 0 100%;
    }
    
    .destinations-carousel {
        padding: 0 30px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Modern Booking Section */
.booking-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 40px;
    border-radius: 30px;
    margin: 60px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.booking-section h2 {
    color: var(--text-dark);
    font-size: 2.5em;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.booking-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.booking-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.price-details {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(0, 184, 148, 0.1) 100%);
    border-radius: 15px;
    width: 100%;
}

.price-details h3 {
    color: var(--text-dark);
    font-size: 1.8em;
    margin-bottom: 20px;
}

.price-details .price {
    font-size: 2.5em;
    color: var(--primary);
    font-weight: 700;
    margin: 15px 0;
    display: block;
}

.price-details .note {
    color: var(--text-light);
    font-size: 0.9em;
    margin-top: 10px;
}

.booking-section .cta-button {
    padding: 18px 45px;
    font-size: 1.1em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 200px;
}

.booking-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

@media (max-width: 768px) {
    .booking-section {
        padding: 40px 25px;
    }
    
    .booking-info {
        padding: 15px;
    }
    
    .price-details {
        padding: 20px;
    }

    .price-details h3 {
        font-size: 1.5em;
    }

    .price-details .price {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .booking-section {
        padding: 30px 20px;
    }

    .booking-info {
        padding: 10px;
    }
}

/* Modern Section Container */
.modern-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 40px;
    border-radius: 30px;
    margin: 60px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.modern-section h2 {
    color: var(--text-dark);
    font-size: 2.5em;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.modern-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

/* To-do and Not-to-do Lists */
.lists-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.list-card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
}

.list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.list-card h3 {
    color: var(--primary);
    font-size: 1.8em;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.list-card h3 i {
    font-size: 0.9em;
}

.todo-list h3 i {
    color: var(--accent);
}

.not-todo-list h3 i {
    color: var(--secondary);
}

.list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-items li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.list-items li:last-child {
    border-bottom: none;
}

.list-items li i {
    margin-top: 5px;
    flex-shrink: 0;
}

.todo-list .list-items li i {
    color: var(--accent);
}

.not-todo-list .list-items li i {
    color: var(--secondary);
}

.list-items li p {
    margin: 0;
    color: var(--text-light);
    font-size: 1em;
    line-height: 1.6;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .lists-container {
        gap: 30px;
    }
    
    .list-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .modern-section {
        padding: 40px 25px;
    }

    .lists-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .list-card {
        padding: 25px;
    }
    
    .list-card h3 {
        font-size: 1.6em;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .modern-section {
        padding: 30px 20px;
    }
    
    .list-card {
    padding: 20px;
    }
    
    .list-card h3 {
        font-size: 1.4em;
        margin-bottom: 20px;
    }
    
    .list-items li {
        padding: 12px 0;
    }
}

/* Modern Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-logo span {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu li a.nav-cta {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu li a.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.nav-menu li a.nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
    background: white;
        flex-direction: column;
        padding: 80px 40px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

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

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

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 15px 0;
        font-size: 1.2em;
    }

    .nav-menu li a.nav-cta {
        display: inline-block;
        text-align: center;
        margin-top: 10px;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .nav-logo span {
        font-size: 1.3em;
    }

    .nav-logo img {
        height: 35px;
    }

    .nav-menu {
        width: 100%;
        padding: 80px 30px;
    }
}

/* Amenities & Food Menu Section */
.amenities-food-section {
    padding: 40px;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.section-column {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 15px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(0, 184, 148, 0.1) 100%);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15) 0%, rgba(0, 184, 148, 0.15) 100%);
}

.amenity-item i {
    font-size: 1.8em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.amenity-item span {
    font-size: 0.9em;
    color: var(--text-dark);
    font-weight: 500;
}

/* Food Menu */
.menu-tabs {
    display: grid;
    gap: 25px;
    margin-top: 25px;
}

.menu-category {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(0, 184, 148, 0.1) 100%);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.menu-category:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15) 0%, rgba(0, 184, 148, 0.15) 100%);
}

.menu-category h3 {
    color: var(--primary);
    font-size: 1.3em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-category h3 i {
    font-size: 0.9em;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.menu-list li {
    color: var(--text-light);
    font-size: 0.95em;
    padding-left: 20px;
    position: relative;
}

.menu-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-food-section {
        padding: 30px;
    }

    .section-column {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .amenities-food-section {
        padding: 20px;
    }

    .section-column {
        padding: 20px;
    }

    .amenity-item {
        padding: 12px;
    }

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

    .menu-category {
        padding: 15px;
    }
}

/* Accommodation Section */
.accommodation-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding: 20px;
}

.accommodation-card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.accommodation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.accommodation-card:hover::before {
    transform: scaleX(1);
}

.accommodation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(0, 184, 148, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.accommodation-card:hover .accommodation-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(0, 184, 148, 0.2) 100%);
}

.accommodation-icon i {
    font-size: 2.2em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accommodation-card h3 {
    color: var(--text-dark);
    font-size: 1.5em;
    margin: 0 0 20px;
    font-weight: 600;
}

.accommodation-features {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.accommodation-features span {
    color: var(--text-light);
    font-size: 0.95em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.accommodation-features i {
    color: var(--primary);
    font-size: 1.1em;
}

.accommodation-price {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.accommodation-price .price {
    font-size: 2em;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.accommodation-price .per-night {
    color: var(--text-light);
    font-size: 0.9em;
}

/* Responsive Design for Accommodation Section */
@media (max-width: 1200px) {
    .accommodation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .accommodation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .accommodation-card {
        padding: 30px;
    }

    .accommodation-icon {
        width: 70px;
        height: 70px;
    }

    .accommodation-icon i {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .accommodation-card {
        padding: 25px;
    }

    .accommodation-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .accommodation-icon i {
        font-size: 1.5em;
    }

    .accommodation-price .price {
        font-size: 1.8em;
    }
}

/* Utility Classes for Responsive Visibility */
.hide-mobile {
    display: block;
}

.hide-desktop {
    display: none;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    
    .hide-desktop {
        display: block !important;
    }
}

/* For flex containers */
.flex.hide-mobile {
    display: flex;
}

.flex.hide-desktop {
    display: none;
}

@media (max-width: 768px) {
    .flex.hide-mobile {
        display: none !important;
    }
    
    .flex.hide-desktop {
        display: flex !important;
    }
}

/* For grid containers */
.grid.hide-mobile {
    display: grid;
}

.grid.hide-desktop {
    display: none;
}

@media (max-width: 768px) {
    .grid.hide-mobile {
        display: none !important;
    }
    
    .grid.hide-desktop {
        display: grid !important;
    }
}