/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Process Section Styles */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.process-card:nth-child(1) {
    border-left: 5px solid #4CAF50;
}

.process-card:nth-child(2) {
    border-left: 5px solid #2196F3;
}

.process-card:nth-child(3) {
    border-left: 5px solid #FF9800;
}

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

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

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

.process-content {
    padding: 30px;
}

.process-content h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.process-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(44, 85, 48, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(44, 85, 48, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.2rem;
    color: #2c5530;
    width: 25px;
    text-align: center;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

/* Responsive Design for Process Cards */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .process-content {
        padding: 25px 20px;
    }
    
    .process-content h3 {
        font-size: 1.6rem;
    }
    
    .process-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-content h3 {
        font-size: 1.4rem;
    }
    
    .process-content p {
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

/* Biodiversity Page Styles */
.biodiversity-hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 85, 48, 0.3);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4CAF50;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Biodiversity Overview */
.biodiversity-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.overview-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
}

.overview-card i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 20px;
}

.overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.overview-card p {
    color: #666;
    line-height: 1.6;
}

/* Identification Guide */
.identification-guide {
    padding: 80px 0;
}

.guide-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guide-intro {
    text-align: center;
    margin-bottom: 60px;
}

.guide-intro h3 {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 20px;
}

.guide-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.identification-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.method-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #2c5530;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.method-header i {
    font-size: 2rem;
    color: #2c5530;
}

.method-header h4 {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

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

.method-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

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

/* Ecosystem Zones */
.ecosystem-zones {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

.zone-card:hover {
    transform: translateY(-10px);
}

.zone-image {
    height: 250px;
    overflow: hidden;
}

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

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

.zone-content {
    padding: 30px;
}

.zone-content h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 10px;
}

.zone-location {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.zone-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.zone-plants h4 {
    color: #333;
    margin-bottom: 10px;
}

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

.zone-plants li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
}

/* Plant Families */
.plant-families {
    padding: 80px 0;
}

.families-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.family-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.family-card:hover {
    transform: translateY(-5px);
}

.family-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #2c5530);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.family-icon i {
    font-size: 2rem;
    color: white;
}

.family-card h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 15px;
}

.family-card p {
    color: #666;
    margin-bottom: 20px;
}

.family-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.family-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

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

/* Identification Tools */
.identification-tools {
    padding: 80px 0;
    background: #f8f9fa;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

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

.tool-card:hover {
    transform: translateY(-10px);
}

.tool-image {
    height: 200px;
    overflow: hidden;
}

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

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

.tool-content {
    padding: 30px;
}

.tool-content h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 15px;
}

.tool-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tool-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

.tool-features i {
    color: #2c5530;
    width: 20px;
}

/* Conservation Message */
.conservation-message {
    padding: 80px 0;
}

.conservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.conservation-text h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 20px;
}

.conservation-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.conservation-text li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

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

.conservation-text i {
    color: #2c5530;
    font-size: 1.2rem;
    width: 25px;
}

.conservation-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Biodiversity CTA */
.biodiversity-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5530, #4CAF50);
    color: white;
    text-align: center;
}

.biodiversity-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.biodiversity-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: white;
    color: #2c5530;
}

.cta-button.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #2c5530;
    transform: translateY(-2px);
}

/* Places Slideshow Styles */
.places-slideshow {
    position: relative;
    margin-top: 100px;
    max-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-container {
    position: relative;
    overflow: visible;
    flex: 1 1 auto;
    max-width: 900px;
}

.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.slide.active {
    display: block;
    opacity: 1;
    position: relative;
}

.slideshow-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.prev-btn,
.next-btn {
    background: #2c5530;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin: 0 10px;
}

.prev-btn:hover,
.next-btn:hover {
    background: #1e3a22;
    transform: scale(1.1);
}

.prev-btn i,
.next-btn i {
    font-size: 1.2rem;
}

.slide-indicators {
    display: flex;
    gap: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    z-index: 3;
    background: rgba(255,255,255,0.7);
    padding: 6px 16px;
    border-radius: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #2c5530;
    transform: scale(1.2);
}

.indicator:hover {
    background: #2c5530;
}

/* Responsive Design for Biodiversity Page */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        height: 250px;
        max-width: 450px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .conservation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .conservation-text h2 {
        font-size: 2rem;
    }
    
    .biodiversity-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slideshow-controls {
        gap: 20px;
    }
    
    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .overview-grid,
    .identification-methods,
    .zones-grid,
    .families-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .conservation-text h2 {
        font-size: 1.8rem;
    }
    
    .biodiversity-cta h2 {
        font-size: 1.8rem;
    }
    
    .slideshow-controls {
        gap: 15px;
    }
    
    .prev-btn,
    .next-btn {
        width: 35px;
        height: 35px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff !important;
    background-color: #ffffff !important;
    opacity: 1;
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 0 0 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 140px;
    gap: 0;
    position: relative;
}

/* Desktop Navigation Styles - Consolidated */
@media (min-width: 769px) {
    .nav-container {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        gap: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .nav-logo {
        margin-right: auto !important;
        margin-left: 0 !important;
        padding-left: 35px !important;
        flex: 0 0 auto !important;
    }
    
    .nav-logo h2 {
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
        flex-shrink: 0 !important;
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        color: white !important;
        font-weight: 700 !important;
    }
    
    .nav-menu {
        grid-column: 3 !important;
        justify-self: end !important;
        margin-left: auto !important;
    }
}

/* Force desktop navigation positioning */
@media (min-width: 769px) {
    .navbar .nav-container .nav-logo {
        margin-left: 0 !important;
        padding-left: 35px !important;
        position: relative !important;
        left: 0 !important;
        transform: translateX(0) !important;
    }
    
    .navbar .nav-container .nav-logo h2 {
        white-space: nowrap !important;
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }
    
    /* Ensure logo image touches the left edge */
    .navbar .nav-container .nav-logo .logo-image {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Force the nav-container to start from the very left */
    .navbar .nav-container {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
    
    /* Ensure logo is at the left edge of its container */
    .navbar .nav-container .nav-logo {
        margin-left: 0 !important;
        padding-left: 35px !important;
        position: relative !important;
        left: 0 !important;
    }
}

/* Hide text on smaller screens while keeping navigation */
@media (max-width: 1200px) {
    .navbar .nav-container .nav-logo h2 {
        display: none !important;
    }
    
    .navbar .nav-container .nav-logo {
        padding-left: 20px !important;
    }
}

@media (max-width: 1000px) {
    .navbar .nav-container .nav-logo h2 {
        display: none !important;
    }
    
    .navbar .nav-container .nav-logo {
        padding-left: 15px !important;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    min-width: 0;
    margin-right: 0;
    margin-left: 0;
    grid-column: 1;
    justify-self: start;
}

.nav-logo h2 {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    min-width: 0;
    flex-shrink: 0;
}

.nav-logo a {
    gap: 15px;
}

.nav-logo .logo-image {
    height: 132px;
    width: auto;
    max-width: 440px;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border-radius: 8px;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    margin-left: auto !important;
    flex-shrink: 0;
    align-items: center;
}

.nav-container .nav-menu {
    grid-column: 3;
    justify-self: end;
    margin-left: auto !important;
    margin-right: 0 !important;
    position: relative !important;
    right: 0 !important;
}

/* Force navigation menu to far right with maximum specificity - Desktop only */
@media (min-width: 769px) {
    body .navbar .nav-container .nav-menu {
        position: absolute !important;
        right: 0 !important;
        left: auto !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        transform: none !important;
        padding-right: 40px !important;
    }
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2c5530;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c5530;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-login-btn {
    background: transparent;
    color: #333 !important;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
    border: none;
    position: relative;
}

.nav-login-btn:hover {
    background: transparent;
    color: #2c5530 !important;
    transform: none;
    box-shadow: none;
}

.nav-login-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c5530;
    transition: width 0.3s ease;
}

.nav-login-btn:hover::after {
    width: 100%;
}

/* Bottom Login Button Styles */
.bottom-login-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.bottom-login-btn {
    background: #2c5530;
    color: white !important;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
}

.bottom-login-btn:hover {
    background: #1e3a21;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 85, 48, 0.4);
    color: white !important;
}

/* Footer Login Button Styles */
.footer-login {
    margin-top: 15px;
    text-align: center;
}

.footer-login-btn {
    background: #2c5530;
    color: white !important;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
}

.footer-login-btn:hover {
    background: #1e3a21;
    transform: translateY(-1px);
    color: white !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .bottom-login-container {
        bottom: 15px;
        right: 15px;
    }
    
    .bottom-login-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-login-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .navbar .nav-container .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: transparent !important;
        border: none !important;
        padding: 8px !important;
        width: 48px !important;
        height: 48px !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
        z-index: 1001 !important;
        grid-column: 3 !important;
        justify-self: end !important;
        margin-left: auto !important;
    }
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d5a2d;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

/* Make hamburger spans visible on mobile */
@media (max-width: 768px) {
    .navbar .nav-container .hamburger span {
        background: #2d5a2d !important;
        height: 3px !important;
        width: 25px !important;
        margin: 3px 0 !important;
        border-radius: 2px !important;
        display: block !important;
    }
}

/* Force hamburger visibility on mobile - maximum specificity */
@media (max-width: 768px) {
    body .navbar .nav-container .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        z-index: 1001 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 4px !important;
    }
}

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

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    opacity: var(--hero-opacity, 0);
    transition: opacity 0.3s ease-in;
}

/* Hero Slideshow */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

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

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

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

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #45a049, #4CAF50);
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.prev-slide, .next-slide {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.prev-slide:hover, .next-slide:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Design for Hero Slideshow */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .slideshow-controls {
        padding: 0 10px;
    }
    
    .prev-slide, .next-slide {
        width: 40px;
        height: 40px;
    }
    
    .slide-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .prev-slide, .next-slide {
        width: 35px;
        height: 35px;
    }
}

/* Monteverde Cloud Forest Animation - REMOVED */
.monteverde-animation {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(180deg, rgba(135, 206, 235, 0.8) 0%, rgba(152, 251, 152, 0.6) 50%, rgba(34, 139, 34, 0.8) 100%),
        url('https://www.shoreexcursionsgroup.com/img/tour/CAPACLOUDCOF-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: backgroundShift 60s ease-in-out infinite;
}

/* Photo blend overlay to help integrate the real image with animations */
.photo-blend-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse 80% 60% at 50% 40%, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(135, 206, 235, 0.15) 30%,
        rgba(152, 251, 152, 0.1) 60%,
        rgba(34, 139, 34, 0.2) 100%
    );
    mix-blend-mode: soft-light;
    animation: overlayShift 45s ease-in-out infinite;
    z-index: 1;
}

@keyframes overlayShift {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    33% { opacity: 0.8; transform: scale(1.05); }
    66% { opacity: 0.4; transform: scale(0.98); }
}

/* Fallback for browsers that don't support background-attachment: fixed */
@media (max-width: 768px) {
    /* Monteverde animation removed */
}

.sky-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, 
        rgba(135, 206, 235, 0.3) 0%, 
        rgba(176, 224, 230, 0.2) 30%, 
        rgba(240, 248, 255, 0.1) 60%, 
        rgba(230, 243, 255, 0.05) 100%);
    animation: skyShift 20s ease-in-out infinite;
    mix-blend-mode: overlay;
    z-index: 2;
}

.cloud-layer {
    position: absolute;
    width: 120%;
    height: 100%;
    opacity: 0.8;
    z-index: 3;
}

.monteverde-animation .cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    animation: cloudFloat 15s ease-in-out infinite;
}

.monteverde-animation .cloud:before,
.monteverde-animation .cloud:after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
}

.monteverde-animation .cloud-1 {
    width: 200px;
    height: 60px;
    top: 10%;
    left: -200px;
    animation: driftAcross 25s linear infinite;
}

.monteverde-animation .cloud-1:before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.monteverde-animation .cloud-1:after {
    width: 60px;
    height: 40px;
    top: -15px;
    right: 15px;
}

.monteverde-animation .cloud-2 {
    width: 150px;
    height: 40px;
    top: 20%;
    left: -150px;
    animation: driftAcross 30s linear infinite 5s;
}

.monteverde-animation .cloud-2:before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 15px;
}

.monteverde-animation .cloud-2:after {
    width: 50px;
    height: 30px;
    top: -10px;
    right: 20px;
}

.monteverde-animation .cloud-3 {
    width: 180px;
    height: 50px;
    top: 5%;
    left: -180px;
    animation: driftAcross 35s linear infinite 10s;
}

.monteverde-animation .cloud-3:before {
    width: 45px;
    height: 45px;
    top: -22px;
    left: 20px;
}

.monteverde-animation .cloud-3:after {
    width: 55px;
    height: 35px;
    top: -12px;
    right: 25px;
}

.monteverde-animation .cloud-4 {
    width: 120px;
    height: 35px;
    top: 25%;
    left: -120px;
    animation: driftAcross 40s linear infinite 15s;
}

.monteverde-animation .cloud-4:before {
    width: 35px;
    height: 35px;
    top: -18px;
    left: 12px;
}

.monteverde-animation .cloud-4:after {
    width: 45px;
    height: 25px;
    top: -8px;
    right: 18px;
}

.mist-layer {
    position: absolute;
    width: 100%;
    height: 40%;
    bottom: 40%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 30%,
        rgba(255, 255, 255, 0.4) 70%,
        rgba(255, 255, 255, 0.6) 100%);
    animation: mistFlow 12s ease-in-out infinite;
    mix-blend-mode: soft-light;
}

.mountains {
    position: absolute;
    bottom: 30%;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(45deg, #2F4F2F, #228B22, #32CD32);
    clip-path: polygon(0 100%, 15% 60%, 25% 70%, 35% 50%, 50% 65%, 65% 45%, 80% 55%, 95% 40%, 100% 45%, 100% 100%, 0 100%);
    animation: mountainSway 25s ease-in-out infinite;
}

.forest-canopy {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, 
        #228B22 0%,
        #32CD32 30%,
        #00FF00 60%,
        #ADFF2F 100%);
    clip-path: polygon(0 40%, 8% 30%, 15% 35%, 25% 25%, 35% 30%, 45% 20%, 55% 25%, 65% 15%, 75% 20%, 85% 10%, 95% 15%, 100% 20%, 100% 100%, 0 100%);
}

.trees .tree {
    position: absolute;
    bottom: 0;
}

.trees .tree:before {
    content: '';
    width: 8px;
    height: 60px;
    background: #8B4513;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.trees .tree:after {
    content: '';
    width: 40px;
    height: 50px;
    background: radial-gradient(circle, #228B22, #006400);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    animation: treeGrow 8s ease-in-out infinite;
}

.trees .tree-1 {
    left: 10%;
    animation-delay: 0s;
}

.trees .tree-2 {
    left: 25%;
    animation-delay: 2s;
}

.trees .tree-3 {
    left: 45%;
    animation-delay: 4s;
}

.trees .tree-4 {
    left: 65%;
    animation-delay: 1s;
}

.trees .tree-5 {
    left: 85%;
    animation-delay: 3s;
}

.wildlife .bird {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    animation: birdFlight 20s linear infinite;
}

.wildlife .bird:before {
    content: '';
    position: absolute;
    left: -8px;
    top: -1px;
    width: 8px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transform: rotate(-20deg);
    animation: wingFlap 0.5s ease-in-out infinite;
}

.wildlife .bird:after {
    content: '';
    position: absolute;
    right: -8px;
    top: -1px;
    width: 8px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transform: rotate(20deg);
    animation: wingFlap 0.5s ease-in-out infinite 0.25s;
}

.wildlife .bird-1 {
    top: 15%;
    left: -50px;
    animation-delay: 0s;
}

.wildlife .bird-2 {
    top: 25%;
    left: -50px;
    animation-delay: 8s;
}

.wildlife .bird-3 {
    top: 20%;
    left: -50px;
    animation-delay: 15s;
}

.particles .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 10s ease-in-out infinite;
}

.particles .particle:nth-child(1) {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.particles .particle:nth-child(2) {
    top: 50%;
    left: 60%;
    animation-delay: 3s;
}

.particles .particle:nth-child(3) {
    top: 40%;
    left: 80%;
    animation-delay: 6s;
}

.particles .particle:nth-child(4) {
    top: 60%;
    left: 30%;
    animation-delay: 2s;
}

.particles .particle:nth-child(5) {
    top: 70%;
    left: 70%;
    animation-delay: 8s;
}

/* Monteverde Animation Keyframes */
@keyframes skyShift {
    0%, 100% { 
        filter: brightness(1.0) hue-rotate(0deg);
        transform: translateX(0px);
    }
    50% { 
        filter: brightness(1.2) hue-rotate(10deg);
        transform: translateX(5px);
    }
}

/* Background image subtle movement */
@keyframes backgroundShift {
    0%, 100% { 
        background-position: center center;
        transform: scale(1);
    }
    25% { 
        background-position: 51% 49%;
        transform: scale(1.02);
    }
    50% { 
        background-position: center 48%;
        transform: scale(1.01);
    }
    75% { 
        background-position: 49% 51%;
        transform: scale(1.02);
    }
}

@keyframes driftAcross {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 200px)); }
}

@keyframes cloudFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes mistFlow {
    0%, 100% { 
        opacity: 0.6; 
        transform: translateX(0px) scaleY(1); 
    }
    33% { 
        opacity: 0.8; 
        transform: translateX(20px) scaleY(1.1); 
    }
    66% { 
        opacity: 0.4; 
        transform: translateX(-15px) scaleY(0.9); 
    }
}

@keyframes mountainSway {
    0%, 100% { filter: brightness(1.0); }
    50% { filter: brightness(1.1); }
}

@keyframes treeGrow {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

@keyframes birdFlight {
    0% { 
        transform: translateX(0) translateY(0); 
    }
    25% { 
        transform: translateX(25vw) translateY(-20px); 
    }
    50% { 
        transform: translateX(50vw) translateY(10px); 
    }
    75% { 
        transform: translateX(75vw) translateY(-15px); 
    }
    100% { 
        transform: translateX(100vw) translateY(5px); 
    }
}

@keyframes wingFlap {
    0%, 100% { transform: rotate(-20deg) scaleY(1); }
    50% { transform: rotate(-25deg) scaleY(1.2); }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.2;
    }
    25% { 
        transform: translateY(-30px) translateX(10px);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-60px) translateX(-5px);
        opacity: 1;
    }
    75% { 
        transform: translateY(-40px) translateX(15px);
        opacity: 0.6;
    }
}



.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-logo {
    height: 300px;
    width: auto;
    max-width: 600px;
    object-fit: contain;
    margin-bottom: 0;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #4CAF50, #2c5530);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 2rem;
    position: relative;
}

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

/* Tours Section */
.tours {
    padding: 100px 0;
    background: #f8f9fa;
}

.tours .section-title {
    margin-bottom: 4rem; /* Increased space between header and content */
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Desktop only: Make tour cards look like package cards */
@media (min-width: 1024px) {
    .tour-card {
        border-radius: 20px;
        padding: 0.75rem;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border: 3px solid transparent;
        height: 350px;
        min-height: 350px;
        max-height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .tour-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        border-color: #2c5530;
    }
    
    /* Match tour card image dimensions with places section */
    .tour-card img {
        height: 200px;
        margin-top: 0.5rem;
        flex-shrink: 0;
        align-self: flex-end;
    }
    
    /* Adjust tour info padding to match places section */
    .tour-info {
        padding: 0.75rem 0.75rem 0.25rem 0.75rem;
        margin-bottom: 0.25rem;
        flex-shrink: 0;
        min-height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tour-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px 12px 0 0;
    margin: 0;
    padding: 0;
    display: block;
    transition: transform 0.3s ease;
}

.tour-card:hover img {
    transform: scale(1.05);
}

.tour-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
    text-align: center;
}

.tour-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex: 1;
}

.tour-features {
    display: flex;
    gap: 1rem;
}

.tour-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #888;
}

.tour-features i {
    color: #4CAF50;
}

/* Packages Section */
.packages {
    padding: 60px 0 40px 0;
    background: white;
    position: relative;
    overflow: visible; /* Allow content to be fully visible */
}

.packages .section-title {
    margin-bottom: 1rem; /* Reduced space to accommodate description text */
}

.package-description-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    padding: 0 1rem;
}

.package-description-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

#places .section-title {
    margin-bottom: 4rem; /* Increased space between header and content */
}

/* Small Group Concierge Section */
.small-group-concierge {
    padding: 60px 0 40px 0;
    background: #f8f9fa;
    position: relative;
}

.small-group-concierge .section-title {
    margin-bottom: 3rem;
}

.concierge-travel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.concierge-travel-image {
    text-align: center;
}

.concierge-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.concierge-travel-text {
    padding: 0 20px;
}

.concierge-travel-text h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.concierge-travel-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.concierge-travel-text p:last-child {
    margin-bottom: 0;
}

.image-placeholder-note {
    display: block;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    align-items: stretch;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 500px !important;
    max-height: none !important;
    overflow: visible !important;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #2c5530;
}

.package-card.featured {
    transform: scale(1.02); /* Reduced scale to prevent overlap */
    z-index: 2; /* Ensure it stays above other cards but doesn't overlap sections */
}

.package-card.featured .popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4CAF50, #2c5530);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Enhanced package features and button positioning */
.package-features {
    flex: 1 !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    overflow: visible !important;
    height: auto !important;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.package-features li {
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(44, 85, 48, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

.package-features i {
    color: #4CAF50;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Activity options styling */
.package-features h4 {
    color: #2c5530;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: left;
    white-space: nowrap;
}

.activity-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.activity-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(44, 85, 48, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.3;
}

.activity-option:hover {
    background: rgba(44, 85, 48, 0.1);
    transform: translateX(5px);
}

.activity-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4CAF50;
    cursor: pointer;
    flex-shrink: 0;
}

.activity-option input[type="checkbox"]:checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

/* Ensure left alignment for packages section */
#packages .package-features h4 {
    text-align: left !important;
}

#packages .activity-options {
    text-align: left !important;
}

#packages .activity-option {
    text-align: left !important;
    justify-content: flex-start !important;
}

/* Package cycling indicators */
.package-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem 0;
}

.package-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(44, 85, 48, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.package-indicator.active {
    background: #4CAF50;
    transform: scale(1.2);
}

.package-indicator:hover {
    background: rgba(44, 85, 48, 0.6);
    transform: scale(1.1);
}

/* Package card transitions */
.package-card {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.package-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.package-card.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

/* Packages Carousel Styles */
.packages-carousel {
    position: relative;
    margin-top: 2rem;
    padding: 0 20px;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    /* Ensure proper carousel behavior */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Remove any scrollbar artifacts */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-wrapper {
    position: relative;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 20px;
    /* Prevent border artifacts */
    border: none;
    outline: none;
    /* Hide scrollbars completely */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.packages-carousel .packages-grid {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    align-items: stretch;
    box-sizing: border-box;
    /* Ensure proper carousel behavior */
    flex-wrap: nowrap;
    /* Prevent border artifacts */
    margin: 0;
    padding: 0;
    /* Hide scrollbars completely */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.packages-carousel .packages-grid::-webkit-scrollbar {
    display: none;
}

.packages-carousel .package-card {
    min-width: 100%;
    flex-shrink: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none !important;
    outline: none !important;
    text-align: center;
    position: relative;
    opacity: 1;
    transform: scale(1);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Ensure content is fully visible */
    overflow: visible;
    word-wrap: break-word;
    min-height: 500px;
}

.packages-carousel .package-card:hover {
    transform: translateY(-10px);
    box-shadow: none;
}

/* Navigation arrows */
.carousel-nav {
    position: absolute;
    top: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5530;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.carousel-nav.prev-btn {
    left: 20px;
}

.carousel-nav.next-btn {
    right: 20px;
}

/* Package indicators */
.package-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    padding: 0 20px;
}

.package-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(44, 85, 48, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-indicator.active {
    background: #2c5530;
    transform: scale(1.2);
}

.package-indicator:hover {
    background: #4a7c59;
    transform: scale(1.1);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .packages-carousel {
        padding: 0 15px;
    }
    
    .packages-carousel .package-card {
        padding: 1.5rem;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 15px;
    }
    
    .carousel-nav.prev-btn {
        left: 10px;
    }
    
    .carousel-nav.next-btn {
        right: 10px;
    }
    
    .carousel-wrapper {
        min-height: 500px;
    }
}

/* Tablet responsive styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .packages-carousel .package-card {
        max-width: 100%;
        width: 100%;
        padding: 1.8rem;
    }
    
    .carousel-wrapper {
        min-height: 550px;
    }
}

/* Large desktop styles */
@media (min-width: 1200px) {
    .packages-carousel .package-card {
        max-width: 100%;
        width: 100%;
        padding: 2.5rem;
    }
    
    .carousel-wrapper {
        min-height: 650px;
    }
}

/* Ensure packages section is always visible on desktop */
@media (min-width: 769px) {
    #packages .packages-slideshow .slide {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
    }
    
    #packages .packages-slideshow .slideshow-container {
        overflow: visible !important;
    }
    
    #packages .packages-slideshow .prev-btn,
    #packages .packages-slideshow .next-btn {
        display: none !important;
    }
}

/* Ensure places section slideshow works properly on desktop */
@media (min-width: 769px) {
    /* Override any conflicting rules with higher specificity */
    #places.packages .slideshow-container .slide {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        transition: opacity 0.3s ease-in-out !important;
    }
    
    #places.packages .slideshow-container .slide.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
    }
    
    #places.packages .slideshow-container {
        overflow: hidden !important;
        position: relative !important;
        min-height: 400px !important;
    }
    
    #places.packages .packages-slideshow .prev-btn,
    #places.packages .packages-slideshow .next-btn {
        display: none !important;
    }
    
}

/* Location categories styling */
.location-categories {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.location-category {
    border: 1px solid rgba(44, 85, 48, 0.2);
    border-radius: 10px;
    padding: 0.5rem;
    background: rgba(44, 85, 48, 0.02);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.location-category:hover {
    background: rgba(44, 85, 48, 0.05);
    border-color: rgba(44, 85, 48, 0.3);
}

.location-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem;
    border-radius: 8px;
    background: rgba(44, 85, 48, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 0.75rem;
    text-align: left;
    justify-content: flex-start;
}

.location-option:hover {
    background: rgba(44, 85, 48, 0.15);
    transform: translateX(3px);
}

.location-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #4CAF50;
    cursor: pointer;
    flex-shrink: 0;
}

.location-name {
    font-weight: 700;
    color: #2c5530;
    text-align: left;
}

.sub-activities {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-left: 3rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(44, 85, 48, 0.2);
    margin-bottom: 1rem;
}

.sub-activities .activity-option {
    font-size: 0.85rem;
    padding: 0.3rem;
    background: rgba(44, 85, 48, 0.03);
    border-radius: 6px;
    margin-bottom: 0.2rem;
}

.sub-activities .activity-option:hover {
    background: rgba(44, 85, 48, 0.08);
    transform: translateX(2px);
}

.sub-activities .activity-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #4CAF50;
}

/* Package button container for bottom positioning */
.package-btn-container {
    margin-top: auto !important;
    flex-shrink: 0 !important;
    padding-top: 1rem;
}

/* Glow animation for configure package button */
@keyframes configureButtonGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(76, 175, 80, 0.5),
                    0 0 20px rgba(76, 175, 80, 0.4),
                    0 0 30px rgba(76, 175, 80, 0.3),
                    0 10px 25px rgba(76, 175, 80, 0.2);
    }
    50% {
        box-shadow: 0 0 15px rgba(76, 175, 80, 0.7),
                    0 0 30px rgba(76, 175, 80, 0.6),
                    0 0 45px rgba(76, 175, 80, 0.4),
                    0 10px 25px rgba(76, 175, 80, 0.3);
    }
}

.package-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4CAF50, #2c5530);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
    background: linear-gradient(135deg, #45a049, #1e4a22);
}

/* Configure button with continuous glow */
.package-btn.configure-button {
    animation: configureButtonGlow 2s ease-in-out infinite;
}

.package-btn.configure-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.8),
                0 0 40px rgba(76, 175, 80, 0.6),
                0 0 60px rgba(76, 175, 80, 0.4),
                0 10px 25px rgba(76, 175, 80, 0.3);
    background: linear-gradient(135deg, #45a049, #1e4a22);
    animation: configureButtonGlow 1.5s ease-in-out infinite;
}

.package-btn.configure-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 90, 45, 0.3),
                0 0 15px rgba(76, 175, 80, 0.6),
                0 0 30px rgba(76, 175, 80, 0.4);
}

.package-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 1rem;
}

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

.package-image .location-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.package-card:hover .package-image .location-video {
    transform: scale(1.05);
}

/* Tours section using packages structure - match places section styling */
#tours.packages .packages-slideshow {
    margin-top: 2rem;
    position: relative;
    padding: 0 20px;
}

#tours.packages .packages-slideshow .slideshow-container {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    max-width: 1200px;
    margin: 0 auto;
}

#tours.packages .packages-slideshow .slide {
    position: relative !important;
    width: 100% !important;
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease-in-out !important;
}

#tours.packages .packages-slideshow .slide.active {
    display: block !important;
    opacity: 1 !important;
}

#tours.packages .packages-slideshow .prev-btn,
#tours.packages .packages-slideshow .next-btn {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5530;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#tours.packages .packages-slideshow .prev-btn:hover,
#tours.packages .packages-slideshow .next-btn:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

#tours.packages .packages-slideshow .prev-btn {
    left: 20px;
}

#tours.packages .packages-slideshow .next-btn {
    right: 20px;
}

#tours.packages .package-card {
    text-align: center;
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    padding: 0.75rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    background: white !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    border: 3px solid transparent !important;
    overflow: visible !important;
}

#tours.packages .package-card img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px 12px 0 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    transition: transform 0.3s ease !important;
    flex-shrink: 0 !important;
}

#tours.packages .tour-info {
    padding: 0.75rem 0.75rem 0.25rem 0.75rem;
    margin-bottom: 0.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#tours.packages .tour-info h3 {
    text-align: center;
    margin-bottom: 0.5rem;
}

#tours.packages .tour-info p {
    text-align: center;
    margin-bottom: 0.5rem;
}

#tours.packages .package-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
    border-color: #2c5530 !important;
}

#tours.packages .package-card:hover img {
    transform: scale(1.05) !important;
}

/* Mobile responsive styles for tours section */
@media (max-width: 768px) {
    #tours.packages .packages-slideshow {
        padding: 0 15px !important;
        margin: 0 !important;
        position: relative !important;
        min-height: 400px !important;
    }
    
    #tours.packages .packages-slideshow .prev-btn,
    #tours.packages .packages-slideshow .next-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    #tours.packages .packages-slideshow .slideshow-container {
        overflow: visible !important;
        min-height: auto !important;
    }
    
    #tours.packages .packages-slideshow .slide {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    #tours.packages .tours-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    #tours.packages .package-card {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        padding: 1rem !important;
    }
    
    #tours.packages .package-card img {
        height: 200px !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }
}

/* Desktop styles for tours section */
@media (min-width: 1024px) {
    #tours.packages .packages-slideshow .prev-btn,
    #tours.packages .packages-slideshow .next-btn {
        display: flex !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 1.5rem !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border: none !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10 !important;
        align-items: center !important;
        justify-content: center !important;
        color: #2c5530 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
    }
    
    #tours.packages .packages-slideshow .prev-btn:hover,
    #tours.packages .packages-slideshow .next-btn:hover {
        background: transparent !important; /* Remove white background */
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
        transform: translateY(-50%) scale(1.1) !important;
    }
    
    #tours.packages .packages-slideshow .prev-btn {
        left: 20px !important;
    }
    
    #tours.packages .packages-slideshow .next-btn {
        right: 20px !important;
    }
}

/* Tours slideshow styles */
.tours-slideshow {
    position: relative;
    margin-top: 2rem;
    padding: 0 20px;
}

.tours-slideshow .slideshow-container {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    max-width: 1200px;
    margin: 0 auto;
}

.tours-slideshow .slideshow-container {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.tours-slideshow .slide {
    position: relative !important;
    width: 100% !important;
    display: none !important; /* Hide by default */
    opacity: 0 !important;
    transition: opacity 0.3s ease-in-out !important;
}

.tours-slideshow .slide.active {
    display: block !important; /* Show active slide */
    opacity: 1 !important;
}

.tours-slideshow .prev-btn,
.tours-slideshow .next-btn {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5530;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tours-slideshow .prev-btn:hover,
.tours-slideshow .next-btn:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

    .tours-slideshow .prev-btn { left: 20px; }
    .tours-slideshow .next-btn { right: 20px; }

/* Places section specific styles for even images */
#places .package-card {
    text-align: center;
    min-height: 400px !important; /* Increased minimum height for larger images */
    max-height: none !important; /* Remove max-height constraint to prevent text cutoff */
    padding: 0 !important; /* Remove all padding */
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important; /* Align content to top */
    overflow: visible !important; /* Allow content to expand naturally */
    background: transparent !important; /* Remove card background */
    border-radius: 0 !important; /* Remove rounded corners */
    box-shadow: none !important; /* Remove shadow */
    border: none !important; /* Remove border */
    outline: none !important; /* Remove any outlines */
}

/* Ensure places section has proper spacing and visibility on desktop */
#places.packages,
#places {
    padding: 40px 0 0 0 !important; /* Top padding only, no bottom padding to remove white space */
    padding-bottom: 0 !important; /* Explicitly remove bottom padding */
    overflow: hidden;
    background: white !important; /* White background for entire section */
    min-height: auto;
    display: flex !important; /* Enable flexbox for vertical centering */
    flex-direction: column !important;
    justify-content: center !important; /* Center content vertically */
    align-items: center !important; /* Center content horizontally */
}

#places .packages-slideshow {
    background: white !important; /* White background for slideshow container */
}

#places .packages-slideshow {
    overflow: hidden;
    min-height: auto;
    padding: 20px 0 0 0 !important; /* Top padding only, no bottom padding to remove white space */
    padding-bottom: 0 !important; /* Explicitly remove bottom padding */
    margin-bottom: 0 !important; /* Remove any bottom margin */
    background: white !important; /* White background for slideshow container */
}

#places .slideshow-container {
    background: white !important; /* White background for slideshow container */
    padding-bottom: 0 !important; /* Remove bottom padding */
    margin-bottom: 0 !important; /* Remove bottom margin */
}

#places .tours-grid {
    background: white !important; /* White background for grid container */
    padding-bottom: 0 !important; /* Remove bottom padding */
    margin-bottom: 0 !important; /* Remove bottom margin */
}

/* Places specific grid adjustments */
#places .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important; /* Smaller minimum width */
    gap: 1.5rem !important; /* Reduced gap */
    background: white !important; /* White background for grid gap area */
    padding-bottom: 0 !important; /* Remove bottom padding */
    margin-bottom: 0 !important; /* Remove bottom margin */
}

#places .tours-grid {
    background: white !important; /* White background for grid gap area */
    gap: 1.5rem !important; /* Ensure consistent gap */
    padding-bottom: 0 !important; /* Remove bottom padding */
    margin-bottom: 0 !important; /* Remove bottom margin */
}

/* Places card header adjustments */
#places .package-header {
    padding: 0.5rem 0.5rem 0.5rem 0.5rem !important; /* Reduced padding for tighter spacing */
    margin-bottom: 0.5rem !important; /* Reduced margin for better spacing */
    flex-shrink: 0 !important; /* Prevent header from shrinking */
    min-height: auto !important; /* Remove minimum height constraint */
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important; /* Align content to top */
}

#places .package-header h3 {
    font-size: 1.3rem !important; /* Slightly larger font size for better readability */
    margin-bottom: 0.5rem !important; /* Adequate margin for spacing */
    color: #2c5530 !important; /* Green color for location names */
    font-weight: 600 !important; /* Bold font weight */
}

#places .package-description {
    font-size: 0.9rem !important; /* Readable font size */
    line-height: 1.4 !important; /* Better line height for readability */
    margin-bottom: 0.5rem !important; /* Adequate margin for spacing */
    min-height: auto !important; /* Remove minimum height constraint */
    color: #666 !important; /* Gray color for descriptions */
}

/* Places image adjustments */
#places .package-image {
    height: 250px !important; /* Fixed height for consistent image size - increased from 200px */
    min-height: 250px !important; /* Reserve space immediately to prevent layout shift */
    width: 100% !important; /* Fill the entire card width */
    margin: 0 !important; /* Remove margins to fill frame */
    flex-shrink: 0 !important; /* Prevent image from shrinking */
    align-self: stretch !important; /* Stretch to fill card frame */
    border-radius: 10px !important; /* Add rounded corners */
    border: none !important; /* Remove any borders */
    box-shadow: none !important; /* Remove any shadows */
    outline: none !important; /* Remove any outlines */
    background: #f0f0f0 !important; /* Light background to reserve space while loading */
    overflow: hidden !important; /* Hide overflow for rounded corners */
    position: relative !important; /* Enable positioning for placeholder */
}

#places .package-header {
    text-align: center;
}

#places .package-header h3 {
    text-align: center;
    margin-bottom: 0.5rem;
}

#places .package-description {
    text-align: center;
    margin-bottom: 0.5rem;
}

#places .package-image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 250px !important; /* Ensure minimum height to prevent shrinking */
    object-fit: cover !important;
    object-position: center !important;
    display: block !important; /* Remove inline spacing issues */
    transition: transform 0.3s ease !important; /* Add smooth hover transition */
    border: none !important; /* Remove any borders */
    border-radius: 10px !important; /* Add rounded corners to match container */
}

#places .package-image .location-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: none !important; /* Remove all transitions */
    border: none !important; /* Remove any borders */
    border-radius: 0 !important; /* Remove border radius */
}

/* Hover effect for #places .package-card */
#places .package-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
}

#places .package-card:hover .package-image img {
    transform: scale(1.05) !important;
}



/* Base package-description styles for consistent spacing */
.package-description {
    color: #666;
    font-size: 0.95rem;
    margin: 0.25rem 0 0.5rem 0;
    line-height: 1.4;
    min-height: 1.5rem;
}

.package-header h3 {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #2c5530 !important;
    margin-bottom: 0.5rem !important; /* Reduced spacing between package name and description */
}

/* Enhanced package header spacing */
.package-header {
    flex-shrink: 0 !important;
    margin-bottom: 0.5rem !important;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.package-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex: 1;
}

.package-features {
    flex: 1 !important;
    min-height: 200px !important; /* Ensure consistent height for features section */
    display: flex !important;
    flex-direction: column !important;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 0.95rem; /* Match package description font size */
}

.package-features i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.package-btn {
    width: 100% !important;
    padding: 15px !important;
    background: linear-gradient(135deg, #4CAF50, #2c5530) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: auto !important;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    z-index: 1; /* Ensure blog appears above any overlapping elements */
    margin-top: 5rem; /* Increased margin to prevent overlap with packages section */
    border-top: 1px solid rgba(44, 85, 48, 0.1); /* Visual separator */
}

.blog .section-title {
    margin-bottom: 4rem; /* Increased space between header and content */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: stretch;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-link:hover .blog-card {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #4CAF50;
}

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

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

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

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: #666;
    font-weight: 500;
}

.blog-category {
    background: linear-gradient(135deg, #4CAF50, #2c5530);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
}

.blog-card-link:hover .read-more {
    color: #2c5530;
    transform: translateX(5px);
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-card-link:hover .read-more i {
    transform: translateX(3px);
}

/* Blog CTA Section */
.blog-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    display: block !important; /* Ensure visibility */
    visibility: visible !important; /* Force visibility */
}

.blog-view-all-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #4CAF50, #2c5530);
    color: white !important;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    text-decoration: none;
    visibility: visible !important; /* Force visibility */
    opacity: 1 !important; /* Ensure opacity */
    margin: 2rem auto; /* Add margin for better spacing */
    min-width: 200px; /* Ensure minimum width */
}

.blog-view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049, #1e4a22);
}

.blog-view-all-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.blog-view-all-btn:hover i {
    transform: translateX(3px);
}

/* Blog Actions Container */
.blog-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Blog Card Transitions and Rotation */
.blog-card-link {
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}

.blog-card-hidden {
    display: none;
}

/* Blog rotation container */
.blog-grid {
    position: relative;
    min-height: 400px; /* Ensure consistent height during transitions */
}

/* Smooth transitions for blog cards */
.blog-card {
    transition: all 0.3s ease;
}

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

/* Show More Button */
.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: #2d5a2d;
    border: 2px solid #2d5a2d;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    min-width: 200px;
}

.show-more-btn:hover {
    background: #2d5a2d;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 90, 45, 0.4);
}

.show-more-btn.hidden {
    display: none;
}

.show-more-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.show-more-btn:hover i {
    transform: translateX(3px);
}

/* Blog Header Styles */
.blog-header {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #2c5530 0%, #4CAF50 100%);
    color: white;
    text-align: center;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* All Blogs Section */
.all-blogs {
    padding: 80px 0;
    background: #f8f9fa;
}

.all-blogs .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .blog-card {
        margin-bottom: 1rem;
        height: auto;
    }
    
    .blog-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .blog {
        padding: 60px 0;
    }
    
    .blog-grid {
        gap: 1rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h2 {
    background: linear-gradient(135deg, #4CAF50, #2c5530);
    color: white;
    padding: 2rem;
    margin: 0;
    border-radius: 20px 20px 0 0;
    text-align: center;
    font-size: 1.8rem;
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

.close:hover {
    opacity: 0.7;
}

#bookingForm {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.booking-summary h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e1e5e9;
}

.summary-item.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c5530;
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #4CAF50;
}


.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #4CAF50, #2c5530);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about .container {
    padding: 0 40px !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    font-size: 2rem;
    color: #4CAF50;
    margin-top: 0.5rem;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact .section-title {
    margin-bottom: 4rem; /* Increased space between header and content */
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    font-size: 2rem;
    color: #4CAF50;
    min-width: 50px;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #2d5a2d;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: #333;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-style: italic;
    transition: color 0.3s ease;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    color: #666;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2d5a2d;
    box-shadow: 0 0 0 3px rgba(45, 90, 45, 0.1);
    background: white;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #2d5a2d, #1a4d1a);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

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

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 45, 0.3);
    background: linear-gradient(135deg, #1a4d1a, #2d5a2d);
}

.contact-form button:active {
    transform: translateY(0);
}

.contact-form button.loading {
    opacity: 0.7;
    cursor: not-allowed;
    background: linear-gradient(135deg, #6c757d, #5a6268);
}

.contact-form button.loading::before {
    display: none;
}

.contact-status {
    margin-top: 1rem;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    display: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-status.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #c3e6cb;
    box-shadow: 0 2px 10px rgba(21, 87, 36, 0.1);
}

.contact-status.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 1px solid #f5c6cb;
    box-shadow: 0 2px 10px rgba(114, 28, 36, 0.1);
}

.contact-status.loading {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    color: #0c5460;
    border: 1px solid #bee5eb;
    box-shadow: 0 2px 10px rgba(12, 84, 96, 0.1);
}

/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a6741;
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
/* Tablet Styles (768px and below) */
@media (max-width: 768px) {
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 20px !important;
    }
    
    /* Old mobile navigation removed - using blog style below */
    
    .nav-logo {
        flex: 0 0 auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .package-card.featured {
        transform: none;
        grid-column: 1 / -1;
    }
    
    /* Packages slideshow tablet optimization */
    .packages-slideshow {
        padding: 40px 0 60px 0;
        border-radius: 20px;
        margin: 0 15px;
    }
    
    .packages-slideshow .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .packages-slideshow .package-card {
        min-height: 450px;
        padding: 1.8rem;
    }
    
    .packages-slideshow .package-header h3 {
        font-size: 1.5rem;
    }
    
    .packages-slideshow .price {
        font-size: 2.5rem;
    }
    
    .packages-slideshow .package-description {
        font-size: 0.9rem;
        margin: 0.5rem 0 0.5rem 0;
    }
    
    .packages-slideshow .package-features li {
        font-size: 0.9rem;
    }
    
    .packages-slideshow .package-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    /* Adjust navigation arrows for tablets */
    .packages-slideshow .prev-btn,
    .packages-slideshow .next-btn {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .packages-slideshow .prev-btn { left: -30px; }
    .packages-slideshow .next-btn { right: -30px; }

    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Places Section Styles */
    .places {
        padding: 80px 0;
        background: transparent;
    }
    
    .places-slideshow {
        padding: 40px 0 60px 0;
        border-radius: 20px;
        margin: 0 15px;
        position: relative;
    }
    
    .places-slideshow .places-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 20px;
    }
    
    .places-slideshow .place-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        min-height: 400px;
    }
    
    .places-slideshow .place-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }
    
    .places-slideshow .place-header {
        padding: 1.5rem;
        text-align: center;
    }
    
    .places-slideshow .place-header h3 {
        font-size: 1.5rem;
        color: #2c5530;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    .places-slideshow .place-description {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #666;
        margin: 0;
    }
    
    .places-slideshow .place-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }
    
    .places-slideshow .place-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .places-slideshow .place-card:hover .place-image img {
        transform: scale(1.1);
    }
    
    /* Places navigation arrows */
    .places-slideshow .prev-btn,
    .places-slideshow .next-btn {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2c5530;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .places-slideshow .prev-btn:hover,
    .places-slideshow .next-btn:hover {
        background: white;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(-50%) scale(1.1);
    }
    
    .places-slideshow .prev-btn { left: -30px; }
    .places-slideshow .next-btn { right: -30px; }
    
    .places-slideshow .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }


    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    /* Improve slideshow controls for tablets */
    .slideshow-controls {
        position: relative;
        margin-top: 2rem;
    }

    .prev-btn,
    .next-btn {
        position: relative;
        transform: none;
        margin: 0 1rem;
    }

    /* Improve package slideshow for tablets */
    .packages-slideshow .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        padding: 0 20px !important;
        display: grid !important;
        justify-items: center !important;
        align-items: center !important;
    }

    /* Improve places slideshow for tablets */
    .places-slideshow {
        padding: 40px 0 60px 0;
        border-radius: 16px;
        position: relative;
    }

    .places-slideshow .slideshow-container {
        padding: 0 15px;
        position: relative !important;
        min-height: 600px;
        overflow: hidden !important;
    }
    
    .places-slideshow {
        position: relative !important;
    }

    .places-slideshow .slide {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s ease-in-out !important;
    }

    .places-slideshow .slide.active {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .places-slideshow .tours-grid {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        justify-items: center !important;
        align-items: center !important;
        display: grid !important;
    }
    
    /* Center places section on tablets */
    .places-slideshow .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .places-slideshow .section-title {
        text-align: center !important;
    }

    .places-slideshow .tour-card {
        min-height: 350px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Improve tablet slideshow navigation */
    .places-slideshow .prev-btn,
    .places-slideshow .next-btn {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(44, 85, 48, 0.1);
        z-index: 10 !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .places-slideshow .prev-btn {
        left: 10px !important;
    }
    
    .places-slideshow .next-btn {
        right: 10px !important;
    }

    .places-slideshow .prev-btn:hover,
    .places-slideshow .next-btn:hover {
        background: rgba(255, 255, 255, 1);
        transform: translateY(-50%) scale(1.05);
    }

    .places-slideshow .tour-card img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }

    .places-slideshow .tour-info {
        padding: 1.25rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .places-slideshow .tour-info h3 {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .places-slideshow .tour-info p {
        font-size: 0.95rem;
        line-height: 1.5;
        flex: 1;
    }

    .places-slideshow .tour-features {
        gap: 0.75rem;
        margin-top: auto;
    }

    .places-slideshow .tour-features span {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        background: rgba(44, 85, 48, 0.05);
    }

    .places-slideshow .prev-btn,
    .places-slideshow .next-btn {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.25rem !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border: 1px solid rgba(44, 85, 48, 0.1) !important;
        border-radius: 50% !important;
        color: #2c5530 !important;
        transition: all 0.3s ease !important;
    }

    .places-slideshow .prev-btn { left: 5px !important; }
    .places-slideshow .next-btn { right: 5px !important; }

    .places-slideshow .prev-btn:hover,
    .places-slideshow .next-btn:hover {
        background: rgba(255, 255, 255, 1) !important;
        transform: translateY(-50%) scale(1.05) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }

    /* Improve map responsiveness */
    .map-container {
        height: 400px;
    }

    .location-marker {
        transform: scale(0.8);
    }

    .marker-tooltip {
        font-size: 0.9rem;
        max-width: 150px;
    }


    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Medium Tablet Styles (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .places-slideshow .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Show all slides on medium tablets for places section */
    .places-slideshow .slideshow-container {
        overflow: visible !important;
    }
    
    .places-slideshow .slide {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    /* Show all slides on medium tablets for tours section */
    .tours-slideshow .slideshow-container {
        overflow: visible !important;
    }
    
    .tours-slideshow .slide {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    /* Show all slides on medium tablets for packages section */
    .packages-slideshow .slideshow-container {
        overflow: visible !important;
    }
    
    .packages-slideshow .slide {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    /* Hide navigation arrows on medium tablets for places */
    .places-slideshow .prev-btn,
    .places-slideshow .next-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Hide navigation arrows on medium tablets for tours section */
    .tours-slideshow .prev-btn,
    .tours-slideshow .next-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Hide navigation arrows on medium tablets for packages section */
    .packages-slideshow .prev-btn,
    .packages-slideshow .next-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Ensure tour-info is visible on medium tablets */
    .places-slideshow .tour-info {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
        background: transparent !important; /* Remove white background */
        padding: 1rem !important;
    }
    
    .places-slideshow .tour-info h3 {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #2c5530 !important;
    }
    
    .places-slideshow .tour-info p {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Override flex display for medium tablets */
    .places-slideshow .tour-info {
        display: block !important;
        flex-direction: unset !important;
        justify-content: unset !important;
    }
    
    /* Ensure consistent image styling for all sections on medium tablets */
    .places-slideshow .package-card img,
    .tours-slideshow .tour-card img,
    .packages-slideshow .package-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: center;
        border-radius: 0;
        margin: 0;
        padding: 0;
        display: block;
    }

    .packages-slideshow .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        padding: 0 20px !important;
        display: grid !important;
        justify-items: center !important;
        align-items: center !important;
    }
    
    /* iPad-specific slideshow container adjustments */
    .places-slideshow,
    .tours-slideshow,
    .packages-slideshow {
        overflow: visible !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    /* Ensure proper spacing on iPad */
    .places-slideshow .tours-grid,
    .tours-slideshow .tours-grid,
    .packages-slideshow .packages-grid {
        gap: 1.5rem !important;
        margin-bottom: 2rem !important;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .map-container {
        height: 350px;
    }

    .location-marker {
        transform: scale(0.85);
    }

    .marker-tooltip {
        font-size: 0.85rem;
        max-width: 140px;
    }
}

/* Mobile Styles (480px and below) */
@media (max-width: 480px) {
    /* Typography adjustments */
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    /* Packages Section Mobile Optimization */
    .packages {
        padding: 60px 0;
    }
    
    .packages-slideshow {
        padding: 30px 0 50px 0;
        border-radius: 16px;
        margin: 0 10px;
        overflow: hidden;
    }
    
    .packages-slideshow .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 15px !important;
        display: grid !important;
    }
    
    .packages-slideshow .package-card {
        min-height: auto;
        padding: 1.2rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(44,85,48,0.12);
    }
    
    .packages-slideshow .package-card.featured {
        transform: none;
        order: -1;
    }
    
    .packages-slideshow .package-header h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .packages-slideshow .price {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .packages-slideshow .price span {
        font-size: 0.9rem;
    }
    
    .packages-slideshow .package-description {
        font-size: 0.9rem;
        margin: 0.5rem 0 0.5rem 0;
        min-height: auto;
    }
    
    .packages-slideshow .package-features {
        margin-bottom: 1.5rem;
    }
    
    .packages-slideshow .package-features ul {
        margin-bottom: 1.5rem;
    }
    
    .packages-slideshow .package-features li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        gap: 0.4rem;
    }
    
    .packages-slideshow .package-features i {
        font-size: 0.8rem;
        min-width: 16px;
    }
    
    .packages-slideshow .package-btn {
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 25px;
        min-height: 48px; /* Touch target size */
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Hide navigation arrows on mobile for packages */
    .packages-slideshow .prev-btn,
    .packages-slideshow .next-btn {
        display: none;
    }
    
    /* Places Section Mobile Optimization */
    .places {
        padding: 60px 0;
    }
    
    .places-slideshow {
        padding: 30px 0 50px 0;
        border-radius: 16px;
        margin: 0 10px;
        overflow: visible;
    }
    
    /* Show all slides on mobile for places section */
    .places-slideshow .slideshow-container {
        overflow: visible !important;
    }
    
    .places-slideshow .slide {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    /* Force all slides to be visible on mobile */
    .places-slideshow .slide[data-slide="0"],
    .places-slideshow .slide[data-slide="1"] {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        height: auto !important;
    }
    
    /* Nuclear option - force everything to be visible on mobile */
    #places .slide,
    #places .packages-slideshow .tours-grid,
    #places .packages-slideshow .package-card,
    #places .packages-slideshow .tour-info,
    #places .packages-slideshow .tour-info h3,
    #places .packages-slideshow .tour-info p {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    /* Completely disable slideshow behavior on mobile */
    #places .slideshow-container {
        overflow: visible !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    /* Force all slides to stack vertically on mobile */
    #places .slide {
        position: relative !important;
        float: none !important;
        clear: both !important;
        margin-bottom: 2rem !important;
    }
    
    /* Override any JavaScript-based hiding on mobile - only apply to mobile */
    @media (max-width: 768px) {
        #places .slide[style*="display: none"],
        #places .slide[style*="visibility: hidden"],
        #places .slide[style*="opacity: 0"] {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
    }
    
    /* Mobile-first approach: show all cards in a single grid */
    @media (max-width: 768px) {
        #places .slideshow-container {
            display: block !important;
        }
        
        #places .slide {
            display: block !important;
            position: relative !important;
            opacity: 1 !important;
            visibility: visible !important;
            height: auto !important;
            margin-bottom: 0 !important;
        }
        
        #places .packages-slideshow .tours-grid {
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 1.5rem !important;
        }
        
        #places .packages-slideshow .package-card {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        #places .packages-slideshow .tour-info {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        #places .packages-slideshow .tour-info h3,
        #places .packages-slideshow .tour-info p {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            color: #2c5530 !important;
        }
    }
    
    .places-slideshow .tours-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 15px !important;
        display: grid !important;
    }
    
    .places-slideshow .package-card {
        min-height: auto;
        padding: 1.2rem;
        border-radius: 0;
        box-shadow: 0 4px 20px rgba(44,85,48,0.12);
        margin-bottom: 1rem;
    }
    
    .places-slideshow .tour-info h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        color: #2c5530;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .places-slideshow .tour-info p {
        font-size: 0.9rem;
        margin: 0.5rem 0 0.5rem 0;
        min-height: auto;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .places-slideshow .package-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 0;
        margin: 0;
        padding: 0;
        display: block;
    }
    
    /* Ensure tour-info is visible on mobile */
    .places-slideshow .tour-info {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
        background: transparent !important; /* Remove white background */
        padding: 1rem !important;
        min-height: auto !important;
        overflow: visible !important;
    }
    
    /* Force visibility of all text elements */
    .places-slideshow .tour-info * {
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    .places-slideshow .tour-info h3,
    .places-slideshow .tour-info p {
        color: #2c5530 !important;
        font-size: inherit !important;
        line-height: inherit !important;
    }
    
    /* Override flex display for mobile */
    .places-slideshow .tour-info {
        display: block !important;
        flex-direction: unset !important;
        justify-content: unset !important;
    }
    
    /* Hide navigation arrows on mobile for places */
    .places-slideshow .prev-btn,
    .places-slideshow .next-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Improve touch targets and spacing for mobile */
    .packages-slideshow .package-card {
        margin-bottom: 1rem;
        touch-action: manipulation;
    }
    
    .packages-slideshow .package-features li {
        padding: 0.3rem 0;
        min-height: 32px;
        display: flex;
        align-items: center;
    }
    
    /* Better mobile spacing */
    .packages .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
        text-align: center !important;
    }
    
    /* Small Group Concierge Section Mobile Styles */
    .small-group-concierge {
        padding: 40px 0 30px 0;
    }
    
    .small-group-concierge .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    
    .concierge-travel-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .concierge-travel-image {
        order: 1;
    }
    
    .concierge-image {
        max-width: 100%;
        border-radius: 10px;
    }
    
    .concierge-travel-text {
        order: 2;
        padding: 0;
    }
    
    .concierge-travel-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .concierge-travel-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    /* Center the entire packages section on mobile */
    .packages .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Mobile-specific package card improvements */
    .packages-slideshow .package-card,
    .package-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        will-change: transform;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Ensure consistent image styling for tours on mobile */
    .tours-slideshow .tour-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: center;
        border-radius: 0;
        margin: 0;
        padding: 0;
        display: block;
    }
    
    /* Force mobile layout */
    .packages-slideshow .packages-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1.5rem !important;
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-items: center !important;
        align-items: center !important;
    }
    
    /* Ensure each package card takes full width on mobile */
    .packages-slideshow .package-card {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-self: center !important;
        align-self: center !important;
        text-align: center !important;
    }
    
    .packages-slideshow .package-card:active,
    .package-card:active {
        transform: scale(0.98);
    }
    
    /* Improve mobile scrolling */
    .packages-slideshow .slideshow-container {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Ensure mobile slideshow works properly */
    .packages-slideshow {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Mobile package slide */
    .packages-slideshow .slide {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Mobile-friendly package features layout */
    .packages-slideshow .package-features ul {
        padding-left: 0;
    }
    
    .packages-slideshow .package-features li {
        list-style: none;
        position: relative;
    }
    
    /* Regular packages grid mobile optimization */
.packages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 15px;
    align-items: stretch;
}
    
    .package-card {
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(44,85,48,0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
}
    
    .package-card.featured {
        transform: none;
        order: -1;
    }
    
    .package-header h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .price {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .price span {
        font-size: 0.9rem;
    }
    
    .package-features ul {
        margin-bottom: 1.5rem;
    }
    
    .package-features li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        gap: 0.4rem;
    }
    
    .package-features i {
        font-size: 0.8rem;
        min-width: 16px;
    }
    
    .package-btn {
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 25px;
        min-height: 48px; /* Touch target size */
    }
    
    /* Desktop packages section stability */
    @media (min-width: 769px) {
        #packages .packages-grid {
            grid-template-columns: repeat(3, 1fr) !important;
            gap: 2rem !important;
            padding: 0 2rem !important;
        }
        
        #packages .package-card {
            min-height: 600px !important;
            height: auto !important;
        }
    }
    
    /* Very small mobile devices (320px and below) */
    @media (max-width: 320px) {
        .packages-slideshow .package-card,
        .package-card {
            padding: 1.2rem;
            border-radius: 12px;
        }
        
        .packages-slideshow .package-header h3,
        .package-header h3 {
            font-size: 1.3rem;
        }
        
        .packages-slideshow .price,
        .price {
            font-size: 2rem;
        }
        
        .packages-slideshow .package-features li,
        .package-features li {
            font-size: 0.85rem;
        }
        
        .packages-slideshow .package-btn,
        .package-btn {
            padding: 10px 16px;
            font-size: 0.95rem;
        }
        
            .packages .section-title {
            font-size: 1.6rem;
            padding: 0 10px;
        }
    
    /* Ensure proper spacing for mobile packages */
    .packages .container {
        padding: 0 10px;
    }
    
    /* Improve mobile package card shadows and borders */
    .packages-slideshow .package-card,
    .package-card {
        border: 1px solid rgba(44, 85, 48, 0.1);
        background: #ffffff;
    }
    
    /* Mobile-friendly hover states */
    .packages-slideshow .package-card:hover,
    .package-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(44, 85, 48, 0.15);
    }
    
    /* Places section very small mobile optimizations */
    .places-slideshow .tour-card {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .places-slideshow .tour-info h3 {
        font-size: 1.1rem;
    }
    
    .places-slideshow .tour-info p {
        font-size: 0.85rem;
    }
    
    .places-slideshow .tour-features span {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .places-slideshow .section-title {
        font-size: 1.5rem;
        padding: 0 10px;
    }
}
    
    .hero-logo {
        height: 180px;
        max-width: 300px;
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    /* Navigation improvements */
    .nav-container {
        padding: 0 15px;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .nav-logo .logo-image {
        height: 50px;
        max-width: 150px;
        margin: 0;
        padding: 0;
        border-radius: 6px;
    }

    body .navbar .nav-container .nav-menu {
        top: 80px !important;
        padding: 1.5rem 0 !important;
    }

    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    .nav-login-btn {
        margin-left: 0;
        margin-top: 0;
        justify-content: flex-start;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Container and spacing */
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Grid layouts for mobile */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    /* Improve places slideshow for mobile */
    .places-slideshow {
        padding: 20px 0 40px 0;
        border-radius: 12px;
        margin: 0 5px;
        position: relative;
        overflow: hidden;
    }

    .places-slideshow .slideshow-container {
        padding: 0 5px;
        position: relative;
        min-height: 350px;
    }

    .places-slideshow .slide {
        position: relative;
        width: 100%;
        opacity: 0;
        transition: opacity 0.4s ease-in-out;
    }

    .places-slideshow .slide.active {
        opacity: 1;
    }

    .places-slideshow .tours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .places-slideshow .tour-card {
        min-height: 280px;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .places-slideshow .tour-card img {
        height: 160px;
        width: 100%;
        object-fit: cover;
        border-radius: 0;
    }

    .places-slideshow .tour-info {
        padding: 1.2rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .places-slideshow .tour-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
        color: #2c5530;
    }

    .places-slideshow .tour-info p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.5;
        flex: 1;
        color: #555;
    }

    .places-slideshow .tour-features {
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-top: auto;
    }

    .places-slideshow .tour-features span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        background: rgba(44, 85, 48, 0.08);
        color: #2c5530;
        font-weight: 500;
    }

    .places-slideshow .prev-btn,
    .places-slideshow .next-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        min-height: 48px; /* Touch target size */
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(44, 85, 48, 0.15);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        display: flex !important; /* Ensure arrows are visible on mobile */
    }

    .places-slideshow .prev-btn { left: 8px; }
    .places-slideshow .next-btn { right: 8px; }

    /* Touch-friendly improvements for places slideshow */
    .places-slideshow .prev-btn,
    .places-slideshow .next-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        -webkit-tap-highlight-color: transparent;
        color: #2c5530 !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        -webkit-user-select: none !important;
        user-select: none !important;
        min-width: 48px !important; /* Touch target size */
        min-height: 48px !important; /* Touch target size */
        font-size: 1.2rem !important; /* Larger icons for mobile */
    }

    .places-slideshow .prev-btn:hover,
    .places-slideshow .next-btn:hover {
        background: rgba(255, 255, 255, 1);
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .places-slideshow .tour-card {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        -webkit-user-select: none;
        user-select: none;
    }

    .places-slideshow .tour-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    /* Improve slide transitions for mobile */
    .places-slideshow .slide {
        transition: opacity 0.4s ease-in-out;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        pointer-events: none;
    }

    .places-slideshow .slide.active {
        opacity: 1;
        pointer-events: auto;
        position: relative;
    }

    /* Ensure proper container sizing */
    .places-slideshow .container {
        max-width: 100% !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    /* Center the entire places section on mobile */
    .places-slideshow {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Center slideshow container */
    .places-slideshow .slideshow-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Fix grid layout for mobile - show one card at a time */
    .places-slideshow .tours-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        width: 100% !important;
        justify-items: center !important;
        align-items: center !important;
        padding: 0 15px !important;
    }
    
    /* Force mobile layout for places */
    .places-slideshow .tours-grid {
        grid-template-rows: auto !important;
        max-width: 100% !important;
    }
    
    /* Ensure each tour card is centered on mobile */
    .places-slideshow .tour-card {
        grid-column: 1 / -1 !important;
        justify-self: center !important;
        align-self: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Additional centering for places section */
    .places-slideshow .section-title {
        text-align: center !important;
        margin-bottom: 1.5rem !important;
        padding: 0 15px !important;
    }
    
    /* Center tour info content */
    .places-slideshow .tour-info {
        text-align: center !important;
        align-items: center !important;
    }
    
    /* Center tour features */
    .places-slideshow .tour-features {
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Mobile-specific places improvements */
    .places-slideshow .tour-card {
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
        will-change: transform !important;
    }
    
    .places-slideshow .tour-card:active {
        transform: scale(0.98) !important;
    }
    
    /* Improve mobile scrolling for places */
    .places-slideshow .slideshow-container {
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
    }
    
    /* Mobile-friendly places layout */
    .places-slideshow .tours-grid {
        padding: 0 10px !important;
        margin: 0 auto !important;
        max-width: 100% !important;
    }
    
    /* Force mobile arrow visibility */
    .places-slideshow .prev-btn,
    .places-slideshow .next-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 2px solid rgba(44, 85, 48, 0.2) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
        color: #2c5530 !important;
        font-weight: bold !important;
    }
    
    /* Mobile arrow positioning and sizing */
    .places-slideshow .prev-btn {
        left: 5px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    .places-slideshow .next-btn {
        right: 5px !important;
        width: 50px !important;
        height: 50px !important;
    }

    .places-slideshow .tour-card {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        min-height: 320px;
    }

    /* Improve mobile slideshow navigation */
    .places-slideshow .prev-btn,
    .places-slideshow .next-btn {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(44, 85, 48, 0.15);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        display: flex !important; /* Ensure arrows are visible on mobile */
        visibility: visible !important; /* Force visibility */
        opacity: 1 !important; /* Ensure opacity */
    }

    .places-slideshow .prev-btn:hover,
    .places-slideshow .next-btn:hover {
        background: rgba(255, 255, 255, 1);
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .places-slideshow .prev-btn:active,
    .places-slideshow .next-btn:active {
        transform: translateY(-50%) scale(0.95);
        transition: transform 0.1s ease;
    }
    
    /* Ensure mobile navigation arrows are properly positioned */
    .places-slideshow .prev-btn,
    .places-slideshow .next-btn {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important; /* High z-index to ensure visibility */
        cursor: pointer !important;
        border-radius: 50% !important;
        transition: all 0.3s ease !important;
    }
    
    /* Mobile arrow positioning */
    .places-slideshow .prev-btn { 
        left: 10px !important; 
    }
    .places-slideshow .next-btn { 
        right: 10px !important; 
    }

    /* Add slide indicators for mobile */
    .places-slideshow .slide-indicators {
        display: flex;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1.5rem;
        padding: 0 15px;
    }

    .places-slideshow .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(44, 85, 48, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .places-slideshow .indicator.active {
        background: #4CAF50;
        transform: scale(1.2);
    }

    .places-slideshow .indicator:hover {
        background: rgba(44, 85, 48, 0.5);
        transform: scale(1.1);
    }

    .places-slideshow .indicator:active {
        transform: scale(0.9);
    }

    .packages-slideshow .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .packages-slideshow .prev-btn,
    .packages-slideshow .next-btn {
        left: 8px;
        right: 8px;
    }

    /* Additional mobile improvements for places slideshow */
    .places-slideshow .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0 15px;
    }

    /* Improve mobile touch scrolling */
    .places-slideshow .slideshow-container {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* Better mobile spacing */
    .places-slideshow {
        margin: 0 10px 20px 10px;
    }

    /* Mobile-optimized tour card shadows */
    .places-slideshow .tour-card {
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    }

    .places-slideshow .tour-card:hover {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    }

    /* Mobile slide indicator improvements */
    .places-slideshow .slide-indicators {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    /* Mobile touch feedback */
    .places-slideshow .tour-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    /* Mobile navigation button improvements */
    .places-slideshow .prev-btn:active,
    .places-slideshow .next-btn:active {
        transform: translateY(-50%) scale(0.95);
        background: rgba(255, 255, 255, 1);
    }

    /* Mobile slideshow container improvements */
    .places-slideshow .slideshow-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

/* Additional mobile improvements for very small screens */
@media (max-width: 360px) {
    .places-slideshow {
        margin: 0 5px 15px 5px;
        padding: 15px 0 30px 0;
    }

    .places-slideshow .section-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .places-slideshow .tour-card {
        min-height: 280px;
    }

    .places-slideshow .tour-card img {
        height: 140px;
    }

    .places-slideshow .tour-info {
        padding: 1rem;
    }

    .places-slideshow .tour-info h3 {
        font-size: 1.1rem;
    }

    .places-slideshow .tour-info p {
        font-size: 0.9rem;
    }

    .places-slideshow .prev-btn,
    .places-slideshow .next-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .places-slideshow .prev-btn { left: 5px; }
    .places-slideshow .next-btn { right: 5px; }

    .places-slideshow .slide-indicators {
        margin-top: 1.5rem;
        gap: 0.6rem;
    }

    .places-slideshow .indicator {
        width: 8px;
        height: 8px;
    }
}

    /* Mobile slide positioning */
    .places-slideshow .slide {
        width: 100%;
        opacity: 0;
        transition: opacity 0.4s ease-in-out;
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
    }

    .places-slideshow .slide.active {
        opacity: 1;
        pointer-events: auto;
        position: relative;
    }

    /* Card improvements for mobile */
    .package-card,
    .tour-card {
        margin-bottom: 1rem;
    }

    .package-card.featured {
        grid-column: 1;
    }

    /* Slideshow controls for mobile */
    .slideshow-controls {
        position: relative;
        margin-top: 1.5rem;
        justify-content: center;
    }

    .prev-btn,
    .next-btn {
        position: relative;
        transform: none;
        margin: 0 0.5rem;
        width: 40px;
        height: 40px;
    }

    .prev-btn i,
    .next-btn i {
        font-size: 1rem;
    }

    /* Modal improvements for mobile */
    .modal-content {
        width: 95%;
        margin: 2% auto;
        padding: 1.5rem;
        max-height: 95vh;
        overflow-y: auto;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Form improvements for mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 15px;
    }



    /* Button improvements for mobile */
    .cta-button,
    .package-btn,
    .submit-btn {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    /* Map improvements for mobile */
    .map-container {
        height: 300px;
    }

    .location-marker {
        transform: scale(0.7);
    }

    .marker-tooltip {
        font-size: 0.8rem;
        max-width: 120px;
        padding: 0.5rem;
    }

    .location-card {
        margin-bottom: 1rem;
    }

    .location-image {
        height: 150px;
    }


    .package-summary-popup h3 {
        font-size: 1.3rem;
    }

    /* Section padding adjustments */
    .packages,
    .tours,
    .about,
    .contact {
        padding: 40px 0;
    }

    /* Footer improvements for mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Animation adjustments for mobile - REMOVED */

    /* Hero stats adjustments */
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        text-align: center;
    }

    /* Itinerary tabs for mobile */
    .itinerary-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-btn {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
    }

    /* Touch-friendly improvements */
    .nav-link,
    .cta-button,
    .package-btn,
    .submit-btn,
    .tab-btn,
    .prev-btn,
    .next-btn {
        min-height: 44px; /* Apple's recommended minimum touch target size */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Improve scrolling on mobile */
    .modal-content {
        -webkit-overflow-scrolling: touch;
    }

    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
    }

    /* Improve image loading on mobile */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Better spacing for mobile forms */
    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        margin-bottom: 0.5rem;
        display: block;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #4CAF50;
}

/* Success message */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
}

/* Error message */
.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
}





/* --- PLACES WE GO SECTION REVAMP --- */
.places-slideshow {
    background: white;
    padding: 60px 0 80px 0;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(44,85,48,0.07);
    position: relative;
}

.places-slideshow .slideshow-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.places-slideshow .slide {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.places-slideshow .slide.active {
    display: block;
    opacity: 1;
    position: relative;
}

.places-slideshow .tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    justify-items: center;
}

.places-slideshow .tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}
.places-slideshow .tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.places-slideshow .tour-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.places-slideshow .tour-card:hover img {
    transform: scale(1.05);
}

.places-slideshow .tour-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: visible; /* Ensure text is not cut off */
}
.places-slideshow .tour-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-align: center;
}
.places-slideshow .tour-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
    overflow: visible; /* Ensure text is not cut off */
    word-wrap: break-word; /* Allow long words to wrap */
}

.places-slideshow .tour-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}
.places-slideshow .tour-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #888;
    background: rgba(44, 85, 48, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.places-slideshow .tour-features span:hover {
    background: rgba(44, 85, 48, 0.1);
}

.places-slideshow .prev-btn,
.places-slideshow .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(44,85,48,0.12);
    color: #2c5530;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, box-shadow 0.2s;
}

.places-slideshow .prev-btn { left: -44px; }
.places-slideshow .next-btn { right: -44px; }
.places-slideshow .prev-btn:hover,
.places-slideshow .next-btn:hover {
    background: #e6f4ea;
    box-shadow: 0 4px 16px rgba(44,85,48,0.18);
}
/* --- END PLACES WE GO SECTION REVAMP --- */

/* --- PACKAGES SLIDESHOW STYLES --- */
.packages-slideshow {
    background: white;
    padding: 60px 0 80px 0;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(44,85,48,0.07);
    position: relative;
    margin-bottom: 40px; /* Add bottom margin to prevent overlap */
}

.packages-slideshow .slideshow-container {
    max-width: 1400px;
    margin: 0 auto;
}

.packages-slideshow .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Ensure mobile responsiveness by default */
@media (max-width: 768px) {
    .packages-slideshow .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .packages-slideshow .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 15px !important;
        display: grid !important;
    }
}

.packages-slideshow .package-card {
    background: #fff;
    box-shadow: 0 4px 24px rgba(44,85,48,0.10);
    border-radius: 18px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 700px;
}

.packages-slideshow .package-card .package-features {
    flex: 1 1 auto;
    margin-bottom: 2rem;
}

.packages-slideshow .package-card .package-btn {
    margin-top: auto;
}

/* Desktop layout: Group bottom elements together */
@media (min-width: 769px) {
    .package-card {
        position: relative;
        min-height: 600px; /* Ensure consistent card heights */
    }
    
    /* Location categories should expand to fill available space */
    .package-card .location-categories {
        flex: 1;
        margin-bottom: 1rem;
    }
    
    /* Bottom container for desktop - pushes to bottom */
    .package-bottom-container {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Reset margins for elements inside bottom container */
    .package-bottom-container .package-participants-selector,
    .package-bottom-container .package-date-picker,
    .package-bottom-container .days-helper,
    .package-bottom-container .package-btn {
        margin: 0;
    }
    
    /* Ensure configure button is at the very bottom */
    .package-bottom-container .package-btn {
        margin-top: 0.5rem;
    }
}

.packages-slideshow .package-description {
    color: #666;
    font-size: 0.95rem;
    margin: 0.5rem 0 0.5rem 0;
    min-height: 2.5rem;
    line-height: 1.4;
}

.packages-slideshow .package-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(44,85,48,0.18);
}

.packages-slideshow .package-card.featured {
    transform: scale(1.02); /* Reduced scale to prevent overlap */
    z-index: 2; /* Ensure it stays above other cards but doesn't overlap sections */
}

/* Package participants selector styles */
.package-participants-selector {
    margin: 1rem 0;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-top: auto;
    width: fit-content;
    min-width: auto;
}

.package-participants-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d5a2d !important;
    font-size: 0.9rem;
}

.package-participants-selector select {
    width: auto;
    min-width: auto;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    font-size: 1rem;
    color: #2d5a2d;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.package-participants-selector select:focus {
    outline: none;
    border-color: #2d5a2d;
    box-shadow: 0 0 0 2px rgba(45, 90, 45, 0.1);
}

/* Package date picker styles */
.package-date-picker {
    margin: 1rem 0;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-top: 0;
    width: fit-content;
    min-width: auto;
}

.package-date-picker label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d5a2d !important;
    font-size: 0.9rem;
}

/* Glow animation for date picker button */
@keyframes dateButtonGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(76, 175, 80, 0.5),
                    0 0 20px rgba(76, 175, 80, 0.4),
                    0 0 30px rgba(76, 175, 80, 0.3),
                    0 10px 25px rgba(76, 175, 80, 0.2);
    }
    50% {
        box-shadow: 0 0 15px rgba(76, 175, 80, 0.7),
                    0 0 30px rgba(76, 175, 80, 0.6),
                    0 0 45px rgba(76, 175, 80, 0.4),
                    0 10px 25px rgba(76, 175, 80, 0.3);
    }
}

.date-picker-button {
    width: auto;
    min-width: auto;
    padding: 1rem 2rem;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    animation: dateButtonGlow 2s ease-in-out infinite;
}

.date-picker-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.8),
                0 0 40px rgba(76, 175, 80, 0.6),
                0 0 60px rgba(76, 175, 80, 0.4),
                0 10px 25px rgba(76, 175, 80, 0.3);
    background: #4CAF50;
    animation: dateButtonGlow 1.5s ease-in-out infinite;
}

.date-picker-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 90, 45, 0.3),
                0 0 15px rgba(76, 175, 80, 0.6),
                0 0 30px rgba(76, 175, 80, 0.4);
}

/* Days helper text styles */
.days-helper {
    margin: 0.5rem 0;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #2d5a2d;
    transition: all 0.3s ease;
}

.days-helper.warning {
    color: #ff6b6b !important;
    font-weight: 600;
    background: rgba(255, 107, 107, 0.1);
    border-left-color: #ff6b6b;
}

/* Location categories styles */
.location-categories {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-category {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    background: #f8f9fa;
}

.location-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #2d5a2d;
    cursor: pointer;
}

.location-option input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
    cursor: pointer;
}

.location-name {
    font-size: 1.1rem;
}

.sub-activities {
    margin-left: 3rem;
    margin-top: 0.5rem;
}

.activity-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.activity-option input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.1);
    cursor: pointer;
}

/* Package header styles for dynamic cards */
.package-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.package-header h3 {
    color: #2d5a2d;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.packages-slideshow .prev-btn,
.packages-slideshow .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(44,85,48,0.12);
    color: #2c5530;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, box-shadow 0.2s;
}

.packages-slideshow .prev-btn { left: -40px; }
.packages-slideshow .next-btn { right: -40px; }

.packages-slideshow .prev-btn:hover,
.packages-slideshow .next-btn:hover {
    background: #e6f4ea;
    box-shadow: 0 4px 16px rgba(44,85,48,0.18);
}
/* --- END PACKAGES SLIDESHOW STYLES --- */

/* Things We Do Section - Align features */
.tours .tour-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tours .tour-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.tours .tour-info p {
    min-height: 48px;
    margin-bottom: 1rem;
}

.tours .tour-features {
    margin-top: auto;
    display: flex;
    gap: 1.2rem;
}

.tours .tour-features span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.98rem;
    color: #4CAF50;
    font-weight: 500;
}

/* --- CONSULTATION PAGE TROPICAL STYLING 
.consultation-hero {
    background: linear-gradient(135deg, #2c5530 0%, #4CAF50 50%, #8BC34A 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.consultation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M10,0 Q15,5 10,10 Q5,5 10,0" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
    opacity: 0.3;
}

.consultation-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.consultation-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.consultation-hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.consultation-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.consultation-hero .stat {
    text-align: center;
}

.consultation-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
}

.consultation-hero .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.consultation-hero .hero-cta {
    margin-top: 3rem;
}

.consultation-hero .hero-cta .cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #FFD700;
    color: #2c5530;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.consultation-hero .hero-cta .cta-button:hover {
    background: #FFC107;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

--- */

/* Benefits Section */
.consultation-benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

.benefit-section {
    margin-bottom: 80px;
}

.benefit-section.reverse .benefit-content {
    flex-direction: row-reverse;
}

.benefit-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 2.2rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-text h3 i {
    color: #4CAF50;
    font-size: 2rem;
}

.benefit-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.benefit-text li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: flex-start;
}

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

.benefit-text li strong {
    color: #2c5530;
    margin-right: 0.5rem;
}

.benefit-image {
    flex: 1;
    position: relative;
}

.benefit-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.benefit-image:hover img {
    transform: scale(1.05);
}

/* Process Section */
.consultation-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c5530 0%, #4CAF50 100%);
    color: white;
}

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

.process-step {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #FFD700;
    color: #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.process-step p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Difference Section */
.consultation-difference {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.difference-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.difference-card:hover {
    transform: translateY(-10px);
    border-color: #4CAF50;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.difference-card i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.difference-card h3 {
    font-size: 1.4rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.difference-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.consultation-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c5530 0%, #4CAF50 100%);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* CTA Section */
.consultation-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    text-align: center;
}

.consultation-cta h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.consultation-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c5530;
    font-weight: 500;
}

.detail-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .consultation-hero h1 {
        font-size: 2.5rem;
    }
    
    .consultation-hero .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .benefit-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .benefit-section.reverse .benefit-content {
        flex-direction: column;
    }
    
    .cta-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-grid,
    .difference-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .consultation-hero h1 {
        font-size: 2rem;
    }
    
    .consultation-hero p {
        font-size: 1.1rem;
    }
    
    .benefit-text h3 {
        font-size: 1.8rem;
    }
}
/* --- END CONSULTATION PAGE TROPICAL STYLING --- */

/* --- INTERACTIVE MAP PAGE STYLING --- */
.map-hero {
    background: linear-gradient(135deg, #2c5530 0%, #4CAF50 50%, #8BC34A 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.map-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="map-leaves" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M10,0 Q15,5 10,10 Q5,5 10,0" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23map-leaves)"/></svg>');
    opacity: 0.3;
}

.map-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

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

.map-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.map-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.map-hero .stat {
    text-align: center;
}

.map-hero .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
}

.map-hero .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Interactive Map Section */
.interactive-map {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

.map-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.map-text {
    padding: 20px;
}

.map-text h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 700;
}

.map-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.route-highlights {
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(44, 85, 48, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(44, 85, 48, 0.1);
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-top: 5px;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: #2c5530;
    margin-bottom: 8px;
    font-weight: 600;
}

.highlight-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.map-instructions {
    background: rgba(44, 85, 48, 0.08);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.map-instructions h4 {
    font-size: 1.1rem;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-instructions h4 i {
    color: #4CAF50;
}

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

.map-instructions li {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.map-instructions li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.map-container {
    max-width: 100%;
    max-height: 900px;
    margin: 0 auto;
    position: relative;
}

.map-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.map-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Travel Route Lines */
.travel-routes {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.travel-routes path {
    animation: routeFlow 2s linear infinite;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.7));
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes routeFlow {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -20;
    }
}

/* Location Markers */
.location-marker {
    position: absolute;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.marker-pin {
    width: 30px;
    height: 30px;
    background: red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 2px solid white;
}

.location-marker:hover .marker-pin,
.location-marker.active .marker-pin {
    background: transparent;
    color: transparent;
    transform: scale(1.2);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.marker-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 85, 48, 0.95);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 10px;
    z-index: 100;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(44, 85, 48, 0.95);
    margin-top: -1px;
}

.location-marker:hover .marker-tooltip,
.location-marker.active .marker-tooltip {
    opacity: 1;
    visibility: visible;
}

.marker-tooltip h4 {
    font-size: 0.9rem;
    margin: 0 0 0.3rem 0;
    color: #FFD700;
}

.marker-tooltip p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.9;
}

/* Location Details Section */
.location-details {
    padding: 80px 0;
    background: white;
}

.itinerary-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 25px;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #e8f5e8;
    color: #2c5530;
}

.tab-btn.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.day-content {
    display: none;
}

.day-content.active {
    display: block;
}

.location-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-card:hover,
.location-card.highlighted {
    transform: translateY(-2px);
    border-color: rgba(44, 85, 48, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.location-card.clicked-highlight {
    transform: translateY(-2px);
    border-color: #4CAF50;
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.2);
}

@keyframes pulse-highlight {
    0% { box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 20px 40px rgba(255, 215, 0, 0.6); }
    100% { box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3); }
}

.location-image {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(44, 85, 48, 0.1);
}

.location-info {
    flex: 2;
}

.location-info h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-info h3 i {
    color: #4CAF50;
}

.location-time {
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.location-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.location-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.location-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c5530;
    font-size: 0.9rem;
    font-weight: 500;
}

.location-features i {
    color: #4CAF50;
}

/* Package Summary Section */
.package-summary {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5530 0%, #4CAF50 100%);
    color: white;
}

.summary-card {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.summary-card h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
}

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

.summary-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.summary-item i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.summary-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

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

.summary-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: #FFD700;
    color: #2c5530;
}

.cta-button.primary:hover {
    background: #FFC107;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #2c5530;
}

/* Responsive Design */
@media (max-width: 768px) {
    .map-hero h1 {
        font-size: 2.5rem;
    }
    
    .map-hero .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .location-card {
        flex-direction: column;
    }
    
    .location-image {
        width: 100%;
        height: 150px;
        flex: none;
    }
    
    .location-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .map-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-text h2 {
        font-size: 2rem;
    }
    
    .highlight-item {
        padding: 12px;
    }
    
    .highlight-item h4 {
        font-size: 1.1rem;
    }
    
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .summary-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .itinerary-tabs {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .map-hero h1 {
        font-size: 2rem;
    }
    
    .map-image {
        height: 400px;
    }
    
    .marker-pin {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .map-text {
        padding: 15px;
    }
    
    .map-text h2 {
        font-size: 1.8rem;
    }
    
    .highlight-item {
        padding: 10px;
        gap: 10px;
    }
    
    .highlight-item i {
        font-size: 1.2rem;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
}
/* --- END INTERACTIVE MAP PAGE STYLING --- */






.places-slideshow .slideshow-container {
    min-height: 520px;
    transition: min-height 0.3s;
    position: relative;
    overflow: hidden;
}

/* Email Header Styling */
.header h2 {
    color: #000 !important;
}

/* --- MOBILE FRIENDLY FIXES - PREVENT HORIZONTAL SCROLLING --- */

/* Global mobile fixes */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    /* Ensure all containers respect viewport width */
    .container {
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    
    /* Fix hero section */
    .hero {
        min-height: 100vh;
        width: 100%;
        overflow: hidden;
    }
    
    .hero-background-logo {
        max-width: 90vw !important;
        height: auto !important;
        max-height: 70vh !important;
    }
    
    /* Fix navigation */
    .nav-container {
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem !important;
        white-space: nowrap;
    }
    
    /* Fix all grid layouts */
    .tours-grid,
    .packages-grid,
    .blog-grid,
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Fix slideshow containers */
    .packages-slideshow,
    .places-slideshow {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 40px 15px 60px 15px !important;
        overflow: hidden !important;
    }
    
    .slideshow-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 0 !important;
    }
    
    /* Fix package cards */
    .package-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 1.5rem auto !important;
        box-sizing: border-box !important;
    }
    
    /* Fix tour cards */
    .tour-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 1.5rem auto !important;
        box-sizing: border-box !important;
    }
    
    /* Fix blog cards */
    .blog-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 1.5rem auto !important;
        box-sizing: border-box !important;
    }
    
    /* Fix about section */
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 !important;
    }
    
    /* Fix contact section */
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 !important;
    }
    
    /* Fix modal */
    .modal-content {
        width: 95% !important;
        max-width: 95% !important;
        margin: 2% auto !important;
        padding: 1rem !important;
    }
    
    /* Fix form layouts */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    
    /* Fix buttons */
    .cta-button,
    .package-btn,
    .submit-btn {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Fix images */
    img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    
    /* Fix typography */
    .section-title {
        font-size: 1.8rem !important;
        padding: 0 15px !important;
        text-align: center !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        padding: 0 15px !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        padding: 0 15px !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    /* Further reduce padding and margins */
    .container {
        padding: 0 10px !important;
    }
    
    .packages-slideshow,
    .places-slideshow {
        padding: 30px 10px 50px 10px !important;
    }
    
    /* Smaller typography */
    .section-title {
        font-size: 1.6rem !important;
        padding: 0 10px !important;
    }
    
    .hero-content h1 {
        font-size: 1.8rem !important;
        padding: 0 10px !important;
    }
    
    .hero-content p {
        font-size: 0.95rem !important;
        padding: 0 10px !important;
    }
    
    /* Smaller cards */
    .package-card,
    .tour-card,
    .blog-card {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Smaller buttons */
    .cta-button,
    .package-btn,
    .submit-btn {
        padding: 12px 20px !important;
        font-size: 1rem !important;
    }
    
    /* Hide navigation arrows on very small screens */
    .prev-btn,
    .next-btn {
        display: none !important;
    }
}

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-background-logo {
        max-height: 60vh !important;
    }
    
    .hero-content h1 {
        font-size: 1.6rem !important;
    }
    
    .hero-content p {
        font-size: 0.9rem !important;
    }
}

/* Ensure all elements respect viewport width */
* {
    box-sizing: border-box !important;
}

/* Fix any potential overflow issues */
body > * {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

/* Ensure proper touch targets on mobile */
@media (max-width: 768px) {
    .nav-link,
    .cta-button,
    .package-btn,
    .submit-btn,
    .prev-btn,
    .next-btn {
        min-height: 44px !important;
        min-width: 44px !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    /* Improve touch experience for places section */
    #places .package-card {
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        cursor: pointer !important;
    }
    
    #places .package-image {
        touch-action: manipulation !important;
    }
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 480px) {
    #places .package-card {
        min-height: 220px !important; /* Minimum height for very small screens */
        max-height: none !important; /* Remove max-height constraint to prevent text cutoff */
        padding: 0 !important; /* Remove all padding */
        overflow: visible !important; /* Allow content to expand naturally */
        justify-content: flex-start !important; /* Align content to top */
        background: transparent !important; /* Remove card background */
        border-radius: 0 !important; /* Remove rounded corners */
        box-shadow: none !important; /* Remove shadow */
    }
    
    #places .package-header {
        min-height: 60px !important;
        padding: 0.3rem 0.3rem 0.1rem 0.3rem !important;
    }
    
    #places .package-header h3 {
        font-size: 1rem !important;
    }
    
    #places .package-description {
        font-size: 0.7rem !important;
        line-height: 1.1 !important;
    }
    
    #places .package-image {
        height: 200px !important; /* Fixed height for consistent image size on mobile */
        width: 100% !important; /* Fill the entire card width */
        border-radius: 0 !important; /* Remove border radius */
        border: none !important; /* Remove any borders */
        box-shadow: none !important; /* Remove any shadows */
        margin: 0 !important; /* Remove margins to fill frame */
        align-self: stretch !important; /* Stretch to fill card frame */
        flex-shrink: 0 !important; /* Prevent image from shrinking */
    }
}

/* Desktop slideshow navigation positioning */
@media (min-width: 769px) {
    .packages-slideshow,
    .places-slideshow,
    .tours-slideshow {
        position: relative;
        overflow: visible;
    }
    
    .packages-slideshow .prev-btn,
    .places-slideshow .prev-btn,
    .tours-slideshow .prev-btn {
        position: absolute !important;
        left: -60px !important;
        transform: translateY(-50%) !important;
    }
    
    .packages-slideshow .next-btn,
    .places-slideshow .next-btn,
    .tours-slideshow .next-btn {
        position: absolute !important;
        right: -60px !important;
        transform: translateY(-50%) !important;
    }
    
    /* Ensure proper slideshow behavior on desktop */
    .slideshow-container {
        position: relative;
        overflow: hidden;
        min-height: 400px;
    }
    
    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out;
    }
    
    .slide.active {
        opacity: 1;
        visibility: visible;
        position: relative;
    }
}

/* Fix slideshow navigation for mobile */
@media (max-width: 768px) {
    .packages-slideshow .prev-btn,
    .packages-slideshow .next-btn,
    .places-slideshow .prev-btn,
    .places-slideshow .next-btn,
    .tours-slideshow .prev-btn,
    .tours-slideshow .next-btn {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 50px !important;
        height: 50px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 2px solid rgba(44, 85, 48, 0.2) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
        color: #2c5530 !important;
        font-weight: bold !important;
        z-index: 100 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .packages-slideshow .prev-btn,
    .places-slideshow .prev-btn,
    .tours-slideshow .prev-btn {
        left: 10px !important;
    }
    
    .packages-slideshow .next-btn,
    .tours-slideshow .next-btn {
        right: 10px !important;
    }
    
    /* Mobile-friendly navigation for places section - hide arrows on mobile */
    #places .packages-slideshow .prev-btn,
    #places .packages-slideshow .next-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Show all slides on mobile for places section */
    #places .slideshow-container {
        overflow: visible !important;
    }
    
    #places .slide {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    /* Mobile-friendly navigation for tours section */
    #tours .tours-slideshow .prev-btn,
    #tours .tours-slideshow .next-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        width: 60px !important;
        height: 60px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 2px solid rgba(44, 85, 48, 0.3) !important;
        border-radius: 50% !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
        color: #2c5530 !important;
        font-size: 18px !important;
        z-index: 100 !important;
        transition: all 0.3s ease !important;
    }
    
    #tours .tours-slideshow .prev-btn:active,
    #tours .tours-slideshow .next-btn:active {
        transform: translateY(-50%) scale(0.95) !important;
        background: rgba(255, 255, 255, 1) !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Ensure places slideshow works well on mobile */
    #places .packages-slideshow {
        padding: 0 15px !important;
        margin: 0 !important;
        position: relative !important;
        min-height: auto !important;
        overflow: visible !important;
    }
    
    /* Ensure tours slideshow works well on mobile */
    #tours .tours-slideshow {
        padding: 0 15px !important;
        margin: 0 !important;
        position: relative !important;
        min-height: 400px !important;
    }
    
    /* Improve mobile card layout for places */
    #places .tours-grid {
        gap: 20px !important;
        padding: 10px 0 !important;
    }
    
    #places .package-card {
        margin-bottom: 20px !important;
        border-radius: 0 !important; /* Remove rounded corners */
        overflow: visible !important;
        box-shadow: none !important; /* Remove shadow */
        background: transparent !important; /* Remove card background */
        border: none !important; /* Remove border */
        padding: 0 !important; /* Remove all padding */
    }
    
    #places .package-card img {
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }
    
    #places .tour-info {
        padding: 20px !important;
    }
    
    #places .tour-info h3 {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
    }
    
    #places .tour-info p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
    
    /* Improve mobile card layout for tours */
    #tours .tours-grid {
        gap: 20px !important;
        padding: 10px 0 !important;
    }
    
    #tours .tour-card {
        margin-bottom: 20px !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    }
    
    #tours .tour-card img {
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }
    
    #tours .tour-info {
        padding: 20px !important;
    }
    
    #tours .tour-info h3 {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
    }
    
    #tours .tour-info p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
    
    #places .slideshow-container {
        overflow: visible !important;
        position: relative !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    #places .slide {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Ensure container doesn't add extra spacing */
    #places .container {
        padding: 0 15px !important;
    }
    
    /* Ensure proper slideshow positioning */
    #places .slide {
        position: relative !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        transition: opacity 0.3s ease-in-out !important;
    }
    
    /* Maintain slideshow behavior on mobile - only active slide visible */
    #places .slide {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    #places .slide.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    #places .packages-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 1.5rem !important;
        visibility: visible !important;
        min-height: 500px !important;
    }
    
    /* Ensure places cards are properly displayed within active slide */
    #places .slide.active .package-card {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    /* Optimize places section spacing for mobile */
    #places {
        padding: 20px 0 !important; /* Reduced padding to minimize empty space */
        margin-bottom: 20px !important;
        display: flex !important; /* Enable flexbox for vertical centering */
        flex-direction: column !important;
        justify-content: center !important; /* Center content vertically */
        align-items: center !important; /* Center content horizontally */
    }
    
    #places .section-title {
        margin-bottom: 1.5rem !important;
        font-size: 1.8rem !important;
    }
    
    /* Maintain slideshow behavior on mobile for places section */
    #places .slideshow-container {
        display: block !important;
        overflow: hidden !important;
        position: relative !important;
        min-height: 600px !important;
    }
    
    #places .slide {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s ease-in-out !important;
    }
    
    #places .slide.active {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Ensure proper grid layout for places cards */
    #places .packages-grid {
        margin-bottom: 0 !important;
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 1.5rem !important;
        min-height: 500px !important;
    }
    
    /* Ensure cards are properly displayed */
    #places .package-card {
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Tours section mobile optimizations */
    #tours {
        padding: 30px 0 !important;
    }
    
    #tours .section-title {
        margin-bottom: 1.5rem !important;
        font-size: 1.8rem !important;
    }
    
    /* Hide navigation arrows on mobile for tours section */
    #tours .tours-slideshow .prev-btn,
    #tours .tours-slideshow .next-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Show all tour cards on mobile instead of slideshow */
    #tours .slide {
        display: block !important;
        opacity: 1 !important;
        position: relative !important;
        width: 100% !important;
        visibility: visible !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Override slideshow container to create single grid for tours */
    #tours .slideshow-container {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 1rem !important;
        row-gap: 1rem !important;
        column-gap: 1rem !important;
        overflow: visible !important;
        position: relative !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Ensure all tour cards are visible on mobile */
    #tours .tour-card {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Create one continuous grid for all tour cards on mobile */
    #tours .tours-grid {
        display: contents !important;
        visibility: visible !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    #tours .slide {
        margin: 0 !important;
        padding: 0 !important;
        display: contents !important;
    }
}

/* Ensure proper spacing for mobile forms */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 1.5rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 12px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Fix footer for mobile */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
        padding: 0 15px !important;
    }
    
    .social-links {
        justify-content: center !important;
    }
}

/* Fix contact section for mobile */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0 !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 !important;
    }
    
    .contact-info {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .contact-item {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        background: transparent !important; /* Remove white background */
        padding: 1.5rem !important;
        border-radius: 15px !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
        width: 100% !important;
        box-sizing: border-box !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }
    
    .contact-item:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
    }
    
    .contact-item i {
        font-size: 1.8rem !important;
        color: #4CAF50 !important;
        min-width: 40px !important;
        text-align: center !important;
    }
    
    .contact-item h3 {
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        color: #2c5530 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .contact-item p {
        color: #666 !important;
        font-size: 0.95rem !important;
        margin: 0 !important;
    }
    
    .contact-item a {
        color: #666 !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
    }
    
    .contact-item a:hover {
        color: #4CAF50 !important;
    }
    
    .contact-form {
        background: transparent !important; /* Remove white background */
        padding: 1.5rem !important;
        border-radius: 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border: 2px solid #2d5a2d !important;
    }
    
    .contact-form .form-group {
        margin-bottom: 1.5rem !important;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100% !important;
        padding: 12px 15px !important;
        border: 2px solid #e1e5e9 !important;
        border-radius: 10px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
        transition: all 0.3s ease !important;
        font-family: 'Poppins', sans-serif !important;
        box-sizing: border-box !important;
        background: #f8f9fa !important;
        color: #333 !important;
    }
    
    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: #999 !important;
        font-style: italic !important;
        transition: color 0.3s ease !important;
    }
    
    .contact-form input:focus::placeholder,
    .contact-form textarea:focus::placeholder {
        color: #666 !important;
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none !important;
        border-color: #2d5a2d !important;
        box-shadow: 0 0 0 3px rgba(45, 90, 45, 0.1) !important;
        background: transparent !important; /* Remove white background */
    }
    
    .contact-form button {
        width: 100% !important;
        padding: 15px !important;
        background: linear-gradient(135deg, #2d5a2d, #1a4d1a) !important;
        color: white !important;
        border: none !important;
        border-radius: 50px !important;
        font-weight: 600 !important;
        font-size: 1.1rem !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        min-height: 48px !important; /* Touch target size */
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        position: relative !important;
        overflow: hidden !important;
        font-family: 'Poppins', sans-serif !important;
    }
    
    .contact-form button::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
        transition: left 0.5s !important;
    }
    
    .contact-form button:hover::before {
        left: 100% !important;
    }
    
    .contact-form button:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(45, 90, 45, 0.3) !important;
        background: linear-gradient(135deg, #1a4d1a, #2d5a2d) !important;
    }
    
    .contact-form button:active {
        transform: translateY(0) !important;
    }
    
    .contact-form button.loading {
        opacity: 0.7 !important;
        cursor: not-allowed !important;
        background: linear-gradient(135deg, #6c757d, #5a6268) !important;
    }
    
    .contact-form button.loading::before {
        display: none !important;
    }
}

/* Extra small mobile devices contact fixes */
@media (max-width: 480px) {
    .contact {
        padding: 40px 0 !important;
    }
    
    .contact-item {
        padding: 1.2rem !important;
        gap: 0.8rem !important;
    }
    
    .contact-item i {
        font-size: 1.5rem !important;
        min-width: 35px !important;
    }
    
    .contact-item h3 {
        font-size: 1.1rem !important;
    }
    
    .contact-item p {
        font-size: 0.9rem !important;
    }
    
    .contact-form {
        padding: 1.2rem !important;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px !important;
        font-size: 16px !important;
    }
    
    .contact-form button {
        padding: 12px 20px !important;
        font-size: 1rem !important;
    }
}

/* Fix Places We Go section for mobile */
@media (max-width: 768px) {
    #tours .tours-slideshow {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 30px 15px 50px 15px !important;
        overflow: hidden !important;
        position: relative !important;
        display: block !important;
    }

    #tours .tours-slideshow .prev-btn,
    #tours .tours-slideshow .next-btn {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 50px !important;
        height: 50px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 2px solid rgba(44, 85, 48, 0.2) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
        color: #2c5530 !important;
        font-weight: bold !important;
        z-index: 100 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #tours .tours-slideshow .prev-btn {
        left: 10px !important;
    }

    #tours .tours-slideshow .next-btn {
        right: 10px !important;
    }

    #tours .tours-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    #places {
        padding: 20px 0 !important; /* Reduced padding to minimize empty space */
        display: flex !important; /* Enable flexbox for vertical centering */
        flex-direction: column !important;
        justify-content: center !important; /* Center content vertically */
        align-items: center !important; /* Center content horizontally */
    }
    
    #places .packages-slideshow {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 30px 15px 50px 15px !important;
        overflow: visible !important;
        position: relative !important;
    }
    
    #places .slideshow-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        padding: 0 !important;
        position: relative !important;
    }
    
    #places .slide {
        display: none !important; /* Hide by default on mobile */
        opacity: 0 !important;
        position: relative !important;
        width: 100% !important;
        transition: opacity 0.3s ease-in-out !important;
    }

    #places .slide.active {
        display: block !important; /* Show active slide on mobile */
        opacity: 1 !important;
    }
    
    #places .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important; /* Reduced gap on mobile */
        padding: 0 !important;
        margin: 0 !important;
        display: grid !important;
    }
    
    #places .package-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 1.5rem auto !important;
        box-sizing: border-box !important;
        background: transparent !important; /* Remove card background */
        border-radius: 0 !important; /* Remove rounded corners */
        overflow: visible !important;
        box-shadow: none !important; /* Remove shadow */
        transition: none !important; /* Remove transitions */
        border: none !important; /* Remove border */
        display: flex !important;
        flex-direction: column !important;
        min-height: 350px !important; /* Minimum height for mobile alignment */
        max-height: none !important; /* Remove max-height constraint to prevent text cutoff */
        padding: 0 !important; /* Remove all padding */
        justify-content: flex-start !important; /* Align content to top */
        overflow: visible !important; /* Allow content to expand naturally */
    }
    
    /* Hover effect removed for #places .package-card on mobile */
    
    #places .package-header {
        padding: 1rem 1rem 0.5rem 1rem !important; /* Reduced padding on mobile */
        text-align: center !important;
        flex-shrink: 0 !important; /* Prevent header from shrinking */
        min-height: 100px !important; /* Fixed height for header section on mobile */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important; /* Center content vertically */
    }
    
    #places .package-header h3 {
        font-size: 1.3rem !important; /* Smaller font on mobile */
        font-weight: 700 !important;
        color: #2c5530 !important;
        margin-bottom: 0.5rem !important; /* Reduced margin on mobile */
        line-height: 1.3 !important;
    }
    
    #places .package-description {
        font-size: 0.9rem !important; /* Smaller font on mobile */
        color: #666 !important;
        line-height: 1.4 !important; /* Tighter line height on mobile */
        margin: 0 !important;
        min-height: auto !important;
    }
    
    #places .package-image {
        width: 100% !important; /* Fill the entire card width */
        height: 100% !important; /* Fill the entire card height */
        overflow: hidden !important;
        position: relative !important;
        margin: 0 !important; /* Remove margins to fill frame */
        flex-shrink: 0 !important; /* Prevent image from shrinking */
        align-self: stretch !important; /* Stretch to fill card frame */
        border-radius: 0 !important; /* Remove border radius */
        border: none !important; /* Remove any borders */
        box-shadow: none !important; /* Remove any shadows */
    }
    
    #places .package-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transition: transform 0.3s ease !important;
    }
    
    #places .package-image .location-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transition: transform 0.3s ease !important;
    }
    
    /* Hover effect removed for #places .package-card .package-image img on mobile */
    
    /* Hide navigation arrows on mobile */
    #places .prev-btn,
    #places .next-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Extra small mobile devices places fixes */
@media (max-width: 480px) {
    #places {
        padding: 15px 0 !important; /* Reduced padding to minimize empty space */
        display: flex !important; /* Enable flexbox for vertical centering */
        flex-direction: column !important;
        justify-content: center !important; /* Center content vertically */
        align-items: center !important; /* Center content horizontally */
    }
    
    #places .packages-slideshow {
        padding: 20px 10px 40px 10px !important;
    }
    
    #places .package-header {
        padding: 0.8rem 0.8rem 0.4rem 0.8rem !important; /* Even smaller padding */
        min-height: 90px !important; /* Fixed height for extra small mobile */
    }
    
    #places .package-header h3 {
        font-size: 1.2rem !important; /* Smaller font */
    }
    
    #places .package-description {
        font-size: 0.85rem !important; /* Smaller font */
    }
    
    #places .package-image {
        height: 100% !important; /* Fill the entire card height */
        width: 100% !important; /* Fill the entire card width */
        margin: 0 !important; /* Remove margins to fill frame */
        flex-shrink: 0 !important; /* Prevent image from shrinking */
        align-self: stretch !important; /* Stretch to fill card frame */
        border-radius: 0 !important; /* Remove border radius */
        border: none !important; /* Remove any borders */
        box-shadow: none !important; /* Remove any shadows */
    }
}

/* Fix Places section for mobile */
@media (max-width: 768px) {
    #places {
        padding: 20px 0 !important; /* Reduced padding to minimize empty space */
        display: flex !important; /* Enable flexbox for vertical centering */
        flex-direction: column !important;
        justify-content: center !important; /* Center content vertically */
        align-items: center !important; /* Center content horizontally */
    }
    
    #places .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 15px !important;
    }
    
    #places .package-card {
        min-height: 240px !important; /* Minimum height for mobile */
        max-height: none !important; /* Remove max-height constraint to prevent text cutoff */
        padding: 0 !important; /* Remove all padding */
        margin-bottom: 0.75rem !important;
        overflow: visible !important; /* Allow content to expand naturally */
        justify-content: flex-start !important; /* Align content to top */
        background: transparent !important; /* Remove card background */
        border-radius: 0 !important; /* Remove rounded corners */
        box-shadow: none !important; /* Remove shadow */
    }
    
    #places .package-header {
        min-height: 70px !important; /* Ultra-compact header height for mobile */
        padding: 0.4rem 0.4rem 0.15rem 0.4rem !important;
        margin-bottom: 0.15rem !important;
    }
    
    #places .package-header h3 {
        font-size: 1.2rem !important; /* Smaller font for mobile */
        margin-bottom: 0.25rem !important;
    }
    
    #places .package-description {
        font-size: 0.8rem !important; /* Smaller font for mobile */
        line-height: 1.2 !important;
        margin-bottom: 0.25rem !important;
    }
    
    #places .package-image {
        height: 200px !important; /* Fixed height for consistent image size on mobile */
        width: 100% !important; /* Fill the entire card width */
        margin: 0 !important; /* Remove margins to fill frame */
        border-radius: 0 !important; /* Remove border radius */
        border: none !important; /* Remove any borders */
        box-shadow: none !important; /* Remove any shadows */
        align-self: stretch !important; /* Stretch to fill card frame */
        flex-shrink: 0 !important; /* Prevent image from shrinking */
    }
}

/* Fix Choose Your Package section for mobile */
@media (max-width: 768px) {
    #packages {
        padding: 60px 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    #packages .packages-slideshow {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 30px 15px 50px 15px !important;
        overflow: visible !important;
        position: relative !important;
        display: block !important;
    }
    
    #packages .slideshow-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        padding: 0 !important;
        position: relative !important;
        display: block !important;
    }
    
    #packages .slide {
        display: block !important;
        opacity: 1 !important;
        position: relative !important;
        width: 100% !important;
        visibility: visible !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    #packages .packages-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        padding: 0 2rem !important;
        margin: 0 !important;
        display: grid !important;
        visibility: visible !important;
        align-items: stretch !important;
        min-height: 0 !important;
        height: auto !important;
    }
    
    #packages .package-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        background: transparent !important; /* Remove white background */
        border-radius: 15px !important;
        overflow: visible !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 1.5rem !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: 600px !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    #packages .package-card:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    }
    
    #packages .package-card.featured {
        transform: none !important;
        order: -1 !important;
    }
    
    #packages .package-header {
        text-align: center !important;
        margin-bottom: 1.5rem !important;
        visibility: visible !important;
    }
    
    #packages .package-header h3 {
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        color: #2c5530 !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.3 !important;
    }
    
    #packages .price {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    #packages .package-description {
        font-size: 0.95rem !important;
        color: #666 !important;
        line-height: 1.5 !important;
        margin: 0 0 1rem 0 !important;
        min-height: auto !important;
    }
    
    #packages .package-features {
        margin-bottom: 1.5rem !important;
        visibility: visible !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    #packages .package-features ul {
        margin-bottom: 1.5rem !important;
        visibility: visible !important;
    }
    
    #packages .package-features li {
        font-size: 0.9rem !important;
        margin-bottom: 0.6rem !important;
        gap: 0.4rem !important;
        visibility: visible !important;
    }
    
    #packages .package-btn {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
        border-radius: 25px !important;
        min-height: 48px !important;
        margin-top: auto !important;
        visibility: visible !important;
    }
    
    /* Configure button glow on mobile */
    #packages .package-btn.configure-button {
        animation: configureButtonGlow 2s ease-in-out infinite !important;
    }
    
    #packages .package-btn.configure-button:hover {
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.8),
                    0 0 40px rgba(76, 175, 80, 0.6),
                    0 0 60px rgba(76, 175, 80, 0.4),
                    0 10px 25px rgba(76, 175, 80, 0.3) !important;
        animation: configureButtonGlow 1.5s ease-in-out infinite !important;
    }
    
    /* Hide navigation arrows on mobile */
    #packages .prev-btn,
    #packages .next-btn {
        display: none !important;
    }
}

/* Extra small mobile devices packages fixes */
@media (max-width: 480px) {
    #packages {
        padding: 40px 0 !important;
    }
    
    #packages .packages-slideshow {
        padding: 20px 10px 40px 10px !important;
    }
    
    #packages .package-card {
        padding: 1.2rem !important;
        height: auto !important;
        min-height: 500px !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    #packages .package-header h3 {
        font-size: 1.3rem !important;
    }
    
    #packages .price {
        font-size: 2.2rem !important;
    }
    
    #packages .package-description {
        font-size: 0.9rem !important;
    }
    
    #packages .package-features li {
        font-size: 0.85rem !important;
    }
    
    #packages .package-btn {
        padding: 10px 16px !important;
        font-size: 0.95rem !important;
    }
    
    /* Configure button glow on extra small mobile */
    #packages .package-btn.configure-button {
        animation: configureButtonGlow 2s ease-in-out infinite !important;
    }
}

/* Ensure smooth scrolling on mobile */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .modal-content {
        -webkit-overflow-scrolling: touch !important;
    }
}

/* Desktop Navigation Bar Styles - consolidated above */

/* Mobile Navigation Bar Improvements */
@media (max-width: 768px) {
    .navbar {
        padding: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
        height: 80px;
        padding: 0 15px;
        position: relative;
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        align-items: center !important;
        gap: 0 !important;
    }
    
    .nav-logo {
        margin-left: -15px;
        gap: 10px;
        flex: 0 0 auto;
    }
    
    .nav-logo .logo-image {
        display: none; /* Hide logo on mobile */
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
        margin-left: 10px;
    }
    
    /* Mobile Navigation - Clean Implementation */
    
    /* Hide desktop nav menu on mobile */
    .nav-menu {
        display: none !important;
    }
    
    /* Show hamburger button on mobile */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 48px !important;
        height: 48px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 8px !important;
        z-index: 10002 !important;
        position: absolute !important;
        top: 50% !important;
        right: 20px !important;
        transform: translateY(-50%) !important;
    }
    
    .hamburger span {
        width: 25px !important;
        height: 3px !important;
        background: #2d5a2d !important;
        margin: 3px 0 !important;
        transition: all 0.3s ease !important;
        border-radius: 2px !important;
        display: block !important;
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 10000 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Mobile menu panel */
    .mobile-menu {
        position: fixed !important;
        top: 0 !important;
        right: -300px !important;
        width: 300px !important;
        height: 100% !important;
        background: #2c5530 !important;
        z-index: 10001 !important;
        transition: right 0.3s ease !important;
        padding: 80px 0 20px 0 !important;
        overflow-y: auto !important;
    }
    
    .mobile-menu.active {
        right: 0 !important;
    }
    
    /* Mobile menu links */
    .mobile-menu .nav-link,
    .mobile-menu .nav-login-btn {
        display: block !important;
        padding: 15px 20px !important;
        min-height: 44px !important;
        color: white !important;
        text-decoration: none !important;
        font-size: 1.1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        transition: all 0.3s ease !important;
    }
    
    .mobile-menu .nav-link:hover,
    .mobile-menu .nav-login-btn:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #4CAF50 !important;
    }
    
    .mobile-menu .nav-login-btn {
        background: rgba(255, 255, 255, 0.1) !important;
        margin: 10px 20px !important;
        border-radius: 8px !important;
        text-align: center !important;
        border: none !important;
    }
    
    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px) !important;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px) !important;
    }
}

/* Mobile Hero Section Improvements - Consolidated */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        padding-top: 70px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100vw !important;
        overflow: hidden !important;
        position: relative !important;
    }
    
    .hero-content {
        padding: 20px !important;
        margin: 0 auto !important;
        width: calc(100% - 40px) !important;
        max-width: 400px !important;
        text-align: center !important;
        position: relative !important;
        z-index: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        text-align: center !important;
    }
    
    .hero-content h2 {
        font-size: 1.3rem !important;
        margin-bottom: 20px !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        text-align: center !important;
    }
    
    .cta-button {
        min-height: 48px !important;
        min-width: 200px !important;
        font-size: 1.1em !important;
        padding: 12px 24px !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        margin: 0 auto !important;
        display: block !important;
        text-align: center !important;
    }
    
    /* Slideshow controls for mobile */
    .slideshow-controls {
        position: absolute !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        gap: 15px !important;
        z-index: 3 !important;
    }
    
    .prev-slide, .next-slide {
        width: 44px !important;
        height: 44px !important;
        border-radius: 50% !important;
        background: rgba(45, 90, 45, 0.8) !important;
        color: white !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    /* Slide indicators for mobile */
    .slide-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .slide-indicators .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .nav-container {
        height: 70px;
        padding: 0 10px;
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        align-items: center !important;
        gap: 0 !important;
    }
    
    .nav-logo {
        margin-left: -10px;
        gap: 8px;
    }
    
    .nav-logo .logo-image {
        display: none; /* Hide logo on mobile */
    }
    
    .nav-logo h2 {
        font-size: 1rem;
        margin-left: 8px;
    }
    
    body .navbar .nav-container .nav-menu {
        top: 80px !important;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 1rem;
        min-height: 45px;
    }
    
    .prev-slide, .next-slide {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slide-indicators {
        bottom: 15px;
        gap: 6px;
    }
    
    .slide-indicators .indicator {
        width: 8px;
        height: 8px;
    }
}

/* Extra Small Mobile Devices (320px and below) */
@media (max-width: 320px) {
    .nav-logo .logo-image {
        display: none; /* Hide logo on mobile */
    }
    
    .nav-logo h2 {
        font-size: 0.9rem;
        margin-left: 5px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 0.9rem;
        min-height: 40px;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        padding-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .cta-button {
        padding: 8px 20px;
        font-size: 0.9rem;
        min-height: 40px;
    }
    
    .slide-indicators {
        bottom: 10px;
    }
}

/* Fix overlapping between Places and Packages sections on desktop */
@media (min-width: 769px) {
    #places.packages {
        margin-bottom: 0;
        padding-bottom: 0 !important; /* Remove bottom padding to eliminate white space */
    }
    
    #packages.packages {
        margin-top: 0;
        padding-top: 60px;
        padding-bottom: 50px; /* Further reduced bottom padding */
        position: relative; /* Ensure proper positioning context */
        overflow: visible; /* Allow arrows to extend */
    }
    
    /* Ensure proper spacing between sections */
    #places.packages + #packages.packages {
        margin-top: 0;
    }
    
    /* Prevent navigation arrows from overlapping */
    #places .packages-slideshow .next-btn {
        right: -40px;
    }
    
    #packages .packages-slideshow .prev-btn {
        left: -40px;
    }
    
    /* Additional fix for packages section to prevent overlap with blog */
    #packages .packages-slideshow {
        margin-bottom: 20px; /* Further reduced bottom margin */
        position: relative;
    }
    
    /* Ensure blog section starts with proper spacing */
    #blog.blog {
        margin-top: 0;
        padding-top: 100px;
        position: relative;
        z-index: 1; /* Ensure blog appears above any overlapping elements */
    }
    
    /* Contain navigation arrows within their sections */
    #packages .packages-slideshow .next-btn {
        right: -40px;
        z-index: 10;
    }
    
    #packages .packages-slideshow .prev-btn {
        left: -40px;
        z-index: 10;
    }
    
    /* Desktop navigation optimization - removed conflicting styles */
}

/* Desktop-specific fixes for #places and #tours sections */
@media (min-width: 769px) {
    #places {
        padding: 100px 0 !important;
        background: transparent !important; /* Remove white background */
        position: relative !important;
        z-index: 1 !important;
        margin-top: 5rem !important;
        border-top: 1px solid rgba(44, 85, 48, 0.1) !important;
    }
    
    #places .section-title {
        margin-bottom: 4rem !important;
        text-align: center !important;
    }
    
    #places .packages-slideshow {
        overflow: hidden !important;
        min-height: auto !important;
        padding: 0 60px !important;
        position: relative !important;
        background: transparent !important; /* Remove white background */
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    #places .slideshow-container {
        overflow: hidden !important;
        min-height: auto !important;
        position: relative !important;
        width: 100% !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
    }
    
    #places .slide {
        position: absolute !important;
        opacity: 0 !important;
        visibility: hidden !important;
        display: none !important;
        transform: none !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        transition: opacity 0.3s ease-in-out !important;
        z-index: 1 !important;
    }
    
    #places .slide.active {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        z-index: 2 !important;
    }
    
    #places .tours-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        align-items: stretch !important;
        padding: 0 !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Apply blog-card styles to places package cards */
    #places .package-card {
        background: transparent !important; /* Remove card background */
        border-radius: 0 !important; /* Remove rounded corners */
        overflow: visible !important;
        box-shadow: none !important; /* Remove shadow */
        transition: none !important; /* Remove transitions */
        cursor: pointer !important;
        border: none !important; /* Remove border */
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        min-height: auto !important;
        padding: 0 !important; /* Remove all padding */
    }
    
    /* Hover effect removed for #places .package-card on mobile */
    
    #places .package-card img {
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        object-position: center !important;
        transition: transform 0.3s ease !important;
        flex-shrink: 0 !important;
    }
    
    /* Hover effect removed for #places .package-card img on mobile */
    
    #places .tour-info {
        padding: 1.5rem !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        min-height: auto !important;
    }
    
    #places .tour-info h3 {
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        color: #2c5530 !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
    
    #places .tour-info p {
        color: #555 !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Hide navigation arrows for desktop places section */
    #places .packages-slideshow .prev-btn,
    #places .packages-slideshow .next-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    
    /* Desktop-specific fixes for #tours section (Our Specialty) */
    #tours {
        padding: 100px 0 !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        position: relative !important;
        z-index: 1 !important;
        margin-top: 5rem !important;
        border-top: 1px solid rgba(44, 85, 48, 0.1) !important;
    }
    
    #tours .section-title {
        margin-bottom: 4rem !important;
        text-align: center !important;
    }
    
    #tours .tours-slideshow {
        overflow: hidden !important;
        min-height: auto !important;
        padding: 0 60px !important;
        position: relative !important;
        background: transparent !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    #tours .slideshow-container {
        overflow: hidden !important;
        min-height: auto !important;
        position: relative !important;
        width: 100% !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
    }
    
    #tours .slide {
        position: absolute !important;
        opacity: 0 !important;
        visibility: hidden !important;
        display: none !important;
        transform: none !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        transition: opacity 0.3s ease-in-out !important;
        z-index: 1 !important;
    }
    
    #tours .slide.active {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        z-index: 2 !important;
    }
    
    #tours .tours-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        align-items: stretch !important;
        padding: 0 !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Apply blog-card styles to tours tour cards */
    #tours .tour-card {
        background: transparent !important; /* Remove white background */
        border-radius: 20px !important;
        overflow: hidden !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        border: 3px solid transparent !important;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        min-height: auto !important;
    }
    
    #tours .tour-card:hover {
        transform: translateY(-10px) !important;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
        border-color: #4CAF50 !important;
    }
    
    #tours .tour-card img {
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        object-position: center !important;
        transition: transform 0.3s ease !important;
        flex-shrink: 0 !important;
    }
    
    #tours .tour-card:hover img {
        transform: scale(1.1) !important;
    }
    
    #tours .tour-info {
        padding: 1.5rem !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        min-height: auto !important;
    }
    
    #tours .tour-info h3 {
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        color: #2c5530 !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }
    
    #tours .tour-info p {
        color: #555 !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Show and style navigation arrows for desktop tours section */
    #tours .tours-slideshow .prev-btn,
    #tours .tours-slideshow .next-btn {
        display: flex !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 1.5rem !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border: none !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        transition: all 0.3s ease !important;
        z-index: 10 !important;
        align-items: center !important;
        justify-content: center !important;
        color: #2c5530 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        overflow: visible !important;
        left: auto !important;
        right: auto !important;
    }
    
    #tours .tours-slideshow .prev-btn:hover,
    #tours .tours-slideshow .next-btn:hover {
        background: transparent !important; /* Remove white background */
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
        transform: translateY(-50%) scale(1.1) !important;
    }
    
    #tours .tours-slideshow .prev-btn {
        left: 20px !important;
    }
    
    #tours .tours-slideshow .next-btn {
        right: 20px !important;
    }
}

/* Participants Selection Styles */
.participants-selection {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e8f5e8;
}

.participants-selection h4 {
    color: #2d5a2d;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.participants-selection h4::before {
    content: "👥";
    font-size: 1.1em;
}

.participants-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.participants-input label {
    font-weight: 500;
    color: #2d5a2d;
    font-size: 0.9em;
}

.participants-input select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9em;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.participants-input select:focus {
    outline: none;
    border-color: #2d5a2d;
    box-shadow: 0 0 0 3px rgba(45, 90, 45, 0.1);
}

/* Date Selection Styles */
.date-selection {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e8f5e8;
}

.date-selection h4 {
    color: #2d5a2d;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-selection h4::before {
    content: "📅";
    font-size: 1.1em;
}

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.date-inputs .form-group {
    margin-bottom: 0;
}

.date-inputs label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #2d5a2d;
    font-size: 0.9em;
}

.date-inputs input[type="date"] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9em;
    color: #333;
    background: white;
    transition: all 0.3s ease;
}

.date-inputs input[type="date"]:focus {
    outline: none;
    border-color: #2d5a2d;
    box-shadow: 0 0 0 3px rgba(45, 90, 45, 0.1);
}

.date-info {
    background: #e8f5e8;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #2d5a2d;
}

.date-info p {
    margin: 0;
    font-size: 0.85em;
    color: #2d5a2d;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.date-info i {
    color: #2d5a2d;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive adjustments for date selection */
@media (max-width: 768px) {
    .date-inputs {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .date-selection {
        padding: 15px;
        margin: 15px 0;
    }
    
    .date-selection h4 {
        font-size: 1.1em;
    }
}

/* Custom Calendar Picker Styles */
.custom-date-picker {
    position: relative;
    width: 100%;
}

.custom-date-picker input[type="text"] {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-date-picker input[type="text"]:focus {
    outline: none;
    border-color: #2d5a2d;
    box-shadow: 0 0 0 3px rgba(45, 90, 45, 0.1);
}

.calendar-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #2d5a2d;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.calendar-toggle:hover {
    background: rgba(45, 90, 45, 0.1);
    color: #1a4d1a;
}

.custom-calendar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 5px;
    overflow: hidden;
    animation: calendarSlideDown 0.3s ease;
}

@keyframes calendarSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #2d5a2d, #1a4d1a);
    color: white;
}

.calendar-nav {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.calendar-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.weekday {
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    color: #2d5a2d;
    font-size: 0.9rem;
    border-right: 1px solid #e0e0e0;
}

.weekday:last-child {
    border-right: none;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
}

.calendar-day {
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day:nth-child(7n) {
    border-right: none;
}


.calendar-day.selected {
    background: #2d5a2d;
    color: white;
    font-weight: 600;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f8f9fa;
}

.calendar-day.blackout {
    background: #ffebee;
    color: #d32f2f;
    cursor: not-allowed;
    position: relative;
}

.calendar-day.blackout::after {
    content: "✕";
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.7rem;
    font-weight: bold;
}

.calendar-day.other-month {
    color: #ccc;
    background: #f8f9fa;
}

.calendar-day.today {
    background: rgba(33, 150, 243, 0.1);
    color: #1976d2;
    font-weight: 600;
}

.calendar-day.today.selected {
    background: #2d5a2d;
    color: white;
}


/* Responsive calendar */
@media (max-width: 768px) {
    .custom-calendar {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        max-width: 350px;
        margin: 0;
        z-index: 1001;
    }
    
    .calendar-day {
        min-height: 40px;
        padding: 8px 4px;
        font-size: 0.9rem;
    }
    
    .weekday {
        padding: 10px 4px;
        font-size: 0.8rem;
    }
    
    .calendar-header {
        padding: 12px 15px;
    }
    
    .calendar-header h3 {
        font-size: 1.1rem;
    }
}

/* Calendar backdrop for mobile */
.calendar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.calendar-backdrop.show {
    display: block;
}

/* Highlight effect for "Choose Your Package" text */
.highlight-text {
    animation: highlightPulse 2s ease-in-out !important;
    background: linear-gradient(45deg, #2d5a2d, #4a7c59, #2d5a2d) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    position: relative !important;
    z-index: 10 !important;
}

@keyframes highlightPulse {
    0% {
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(1.05);
    }
    100% {
        background-position: 0% 50%;
        transform: scale(1);
    }
}

/* CRITICAL FIX: Force places slideshow to work on desktop - highest specificity */
@media (min-width: 769px) {
    #places.packages .slideshow-container .slide:not(.active) {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: auto !important;
        transition: opacity 0.3s ease-in-out !important;
    }
    
    #places.packages .slideshow-container .slide.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        width: 100% !important;
        height: auto !important;
    }
    
    #places.packages .slideshow-container {
        overflow: hidden !important;
        position: relative !important;
        min-height: 400px !important;
        width: 100% !important;
    }
    
    /* Ensure all content in active slide is visible */
    #places.packages .slideshow-container .slide.active .tours-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        align-items: stretch !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    #places.packages .slideshow-container .slide.active .package-card {
        display: flex !important;
        flex-direction: column !important;
        background: transparent !important; /* Remove white background */
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        overflow: hidden !important;
        transition: transform 0.3s ease !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    #places.packages .slideshow-container .slide.active .package-card img {
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    #places.packages .slideshow-container .slide.active .tour-info {
        padding: 1.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        flex-grow: 1 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    #places.packages .slideshow-container .slide.active .tour-info h3 {
        font-size: 1.25rem !important;
        font-weight: 600 !important;
        color: #2c5530 !important;
        margin-bottom: 0.5rem !important;
        visibility: visible !important;
        text-align: center !important;
        opacity: 1 !important;
    }
    
    #places.packages .slideshow-container .slide.active .tour-info p {
        color: #666 !important;
        line-height: 1.5 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Info Popup Styles */
.info-popup-container {
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
}

.info-popup-container.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.info-popup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    max-width: 320px;
    min-width: 280px;
    overflow: hidden;
    position: relative;
}

.popup-content {
    display: flex;
    flex-direction: column;
}

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

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

.popup-image:hover img {
    transform: scale(1.05);
}

.popup-text {
    padding: 16px;
}

.popup-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d5a2d;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.popup-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.popup-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.popup-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #888;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.popup-meta i {
    font-size: 0.7rem;
    color: #2d5a2d;
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s ease;
    z-index: 1;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

/* Make location and activity names interactive */
.location-name,
.activity-name {
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
}

.location-name:hover,
.activity-name:hover {
    color: #2d5a2d;
}

/* Information icon removed from location names */

/* Mobile-specific popup styles */
@media (max-width: 768px) {
    .info-popup-container {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        max-width: 90vw;
        width: 320px;
        z-index: 10000;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .info-popup-container.show {
        transform: translate(-50%, -50%) scale(1);
        transition: transform 0.2s ease-out;
    }
    
    .info-popup {
        max-width: none;
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }
    
    .popup-image {
        height: 200px;
    }
    
    .popup-text {
        padding: 20px;
    }
    
    .popup-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .popup-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }
    
    .popup-meta {
        gap: 10px;
    }
    
    .popup-meta span {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    .popup-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile styles for location and activity checkboxes */
    .location-category {
        margin-bottom: 1rem;
        padding: 0.75rem;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .location-option {
        padding: 12px;
        margin-bottom: 1rem;
        background: rgba(44, 85, 48, 0.08);
        border-radius: 10px;
        border: 2px solid rgba(44, 85, 48, 0.2);
        min-height: 60px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .location-option input[type="checkbox"] {
        width: 24px;
        height: 24px;
        accent-color: #4CAF50;
        transform: scale(1.2);
        flex-shrink: 0;
    }
    
    .location-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: #2c5530;
        flex: 1;
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 8px 0;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .sub-activities {
        margin-left: 2rem;
        margin-top: 0.3rem;
        padding-left: 0.75rem;
        border-left: 3px solid rgba(44, 85, 48, 0.3);
    }
    
    .sub-activities .activity-option {
        padding: 8px;
        margin-bottom: 0.3rem;
        background: rgba(44, 85, 48, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(44, 85, 48, 0.1);
        min-height: 45px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .sub-activities .activity-option input[type="checkbox"] {
        width: 20px;
        height: 20px;
        accent-color: #4CAF50;
        transform: scale(1.1);
        flex-shrink: 0;
    }
    
    .sub-activities .activity-name {
        font-size: 0.95rem;
        font-weight: 500;
        color: #555;
        flex: 1;
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 6px 0;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Make location and activity names more touch-friendly */
    .location-name,
    .activity-name {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 8px 0;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile information icon removed */
}

/* Ensure popups don't interfere with other elements */
.info-popup-container * {
    box-sizing: border-box;
}

/* Animation for popup appearance */
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.info-popup-container.show .info-popup {
    animation: popupFadeIn 0.2s ease-out;
}

/* Mobile styles for package buttons - Number of Travelers and Travel Dates */
@media (max-width: 768px) {
    /* Reset desktop layout for mobile */
    .package-bottom-container {
        margin-top: 0;
        display: block;
        gap: 0;
    }
    
    .package-card .location-categories {
        flex: none;
        margin-bottom: 1rem;
    }
    /* Number of Travelers button mobile styling - More specific selectors */
    .package-participants-selector {
        text-align: center !important;
        background: rgba(45, 90, 45, 0.9) !important;
        border: 2px solid #2d5a2d !important;
        margin: 1rem auto !important;
        max-width: none !important;
        width: fit-content !important;
        min-width: auto !important;
        padding: 0.75rem !important;
        border-radius: 8px !important;
    }
    
    .package-participants-selector label {
        color: #2d5a2d !important;
        font-weight: 700 !important;
        text-align: center !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
        display: block !important;
        margin-bottom: 0.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .package-participants-selector select {
        background: transparent !important; /* Remove white background */
        border: 2px solid #2d5a2d !important;
        font-weight: 600 !important;
        text-align: center !important;
        color: #2d5a2d !important;
        width: auto !important;
        min-width: auto !important;
        padding: 0.75rem !important;
        border-radius: 6px !important;
        font-size: 1rem !important;
        cursor: pointer !important;
    }
    
    .package-participants-selector select:focus {
        outline: none !important;
        border-color: #2d5a2d !important;
        box-shadow: 0 0 0 2px rgba(45, 90, 45, 0.1) !important;
    }
    
    /* Travel Dates button mobile styling - More specific selectors */
    .package-date-picker {
        text-align: center !important;
        background: rgba(45, 90, 45, 0.9) !important;
        border: 2px solid #2d5a2d !important;
        margin: 1rem auto !important;
        max-width: none !important;
        width: fit-content !important;
        min-width: auto !important;
        padding: 0.75rem !important;
        border-radius: 8px !important;
    }
    
    .package-date-picker label {
        color: #2d5a2d !important;
        font-weight: 700 !important;
        text-align: center !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
        display: block !important;
        margin-bottom: 0.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .date-picker-button {
        width: auto !important;
        min-width: auto !important;
        padding: 1rem 2rem !important;
        background: #4CAF50 !important;
        color: white !important;
        border: none !important;
        border-radius: 25px !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        animation: dateButtonGlow 2s ease-in-out infinite !important;
    }
    
    .date-picker-button:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.8),
                    0 0 40px rgba(76, 175, 80, 0.6),
                    0 0 60px rgba(76, 175, 80, 0.4),
                    0 10px 25px rgba(76, 175, 80, 0.3) !important;
        background: #4CAF50 !important;
        animation: dateButtonGlow 1.5s ease-in-out infinite !important;
    }
    
    .date-picker-button:focus {
        outline: none !important;
        box-shadow: 0 0 0 3px rgba(45, 90, 45, 0.3),
                    0 0 15px rgba(76, 175, 80, 0.6),
                    0 0 30px rgba(76, 175, 80, 0.4) !important;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c5530 0%, #1a4d1a 100%);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out;
    display: none;
    visibility: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

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

.cookie-banner.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: slideUp 0.5s ease-out;
}

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

.cookie-text h4 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
}

.cookie-text a {
    transition: all 0.2s ease;
    text-decoration: underline;
    color: #4CAF50;
}

.cookie-text a:hover {
    background: rgba(76, 175, 80, 0.1);
    text-decoration: none;
}

.cookie-text a:active {
    background: rgba(76, 175, 80, 0.2);
    transform: scale(0.98);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-accept,
.cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cookie-accept {
    background: #4CAF50;
    color: white;
}

.cookie-accept:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Cookie Modal Styles */
/* Promotional Banner Styles */
.promotional-banner {
    position: fixed;
    top: 140px; /* Position below navbar (140px height on desktop) */
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4CAF50 0%, #2c5530 100%);
    color: white;
    padding: 15px 20px;
    z-index: 9998; /* Below navbar (10000) but above content */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease-out;
    display: none;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin-top: 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.promotional-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.promotional-banner-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
    text-align: center;
    padding: 0 40px;
}

.promotional-banner-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.promotional-banner-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.promotional-banner-close:active {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0.95);
}

/* Adjust body padding when promotional banner is visible */
body.promotional-banner-active {
    padding-top: 60px;
}

@media (max-width: 768px) {
    .promotional-banner {
        top: 80px; /* Position below navbar (80px height on mobile) */
        padding: 12px 15px;
    }
    
    .promotional-banner-text {
        font-size: 0.9rem;
        padding: 0 30px;
        text-align: left;
    }
    
    .promotional-banner-close {
        font-size: 1rem;
        padding: 5px;
    }
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid #eee;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #2c5530;
    font-size: 1.5rem;
    font-weight: 700;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: #f5f5f5;
    color: #333;
}

.cookie-modal-body {
    padding: 25px 30px;
    line-height: 1.6;
}

.cookie-modal-body h4 {
    color: #2c5530;
    margin: 20px 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-modal-body h4:first-child {
    margin-top: 0;
}

.cookie-modal-body p {
    margin: 0 0 15px 0;
    color: #555;
}

.cookie-modal-body ul {
    margin: 10px 0 20px 20px;
    color: #555;
}

.cookie-modal-body li {
    margin: 8px 0;
}

.cookie-modal-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
        display: none;
        visibility: hidden;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .cookie-banner.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        max-width: 100%;
    }
    
    .cookie-text h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .cookie-accept,
    .cookie-reject {
        flex: 1;
        min-width: 120px;
        max-width: 150px;
        padding: 12px 16px;
        font-size: 0.9rem;
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .cookie-modal {
        padding: 10px;
        align-items: flex-end;
    }
    
    .cookie-modal-content {
        margin: 0;
        max-height: 90vh;
        max-height: 90dvh;
        width: 100%;
        border-radius: 15px 15px 0 0;
        animation: mobileModalSlideUp 0.3s ease-out;
    }
    
    @keyframes mobileModalSlideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 20px;
    }
    
    .cookie-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .cookie-modal-body h4 {
        font-size: 1.1rem;
        margin: 15px 0 8px 0;
    }
    
    .cookie-modal-body p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .cookie-modal-body ul {
        margin: 8px 0 15px 15px;
    }
    
    .cookie-modal-body li {
        font-size: 0.9rem;
        margin: 6px 0;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
        gap: 10px;
        padding-top: 15px;
    }
    
    .cookie-accept,
    .cookie-reject {
        width: 100%;
        max-width: none;
        padding: 14px 20px;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .cookie-close {
        width: 36px;
        height: 36px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10000;
    }
    
    .cookie-content {
        gap: 12px;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .cookie-buttons {
        gap: 8px;
    }
    
    .cookie-accept,
    .cookie-reject {
        padding: 10px 14px;
        font-size: 0.85rem;
        min-width: 100px;
        min-height: 42px;
    }
    
    .cookie-modal-content {
        border-radius: 12px 12px 0 0;
        max-height: 95vh;
        max-height: 95dvh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 15px;
    }
    
    .cookie-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .cookie-modal-body h4 {
        font-size: 1rem;
        margin: 12px 0 6px 0;
    }
    
    .cookie-modal-body p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .cookie-modal-body ul {
        margin: 6px 0 12px 12px;
    }
    
    .cookie-modal-body li {
        font-size: 0.85rem;
        margin: 4px 0;
    }
    
    .cookie-accept,
    .cookie-reject {
        padding: 12px 18px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .cookie-close {
        width: 32px;
        height: 32px;
        font-size: 1.6rem;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .cookie-banner {
        padding: 10px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
    }
    
    .cookie-text h4 {
        font-size: 0.95rem;
    }
    
    .cookie-text p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .cookie-accept,
    .cookie-reject {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 90px;
        min-height: 40px;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 12px;
    }
    
    .cookie-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .cookie-modal-body h4 {
        font-size: 0.95rem;
    }
    
    .cookie-modal-body p {
        font-size: 0.8rem;
    }

/* Careers Page Styles */
.careers-hero {
    background: linear-gradient(135deg, #2c5530 0%, #4CAF50 100%);
    color: white;
    text-align: center;
    padding: 120px 0 80px;
}

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

.careers-hero .hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    font-weight: 400;
}

.careers-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.careers-hero .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers-hero .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.careers-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.careers-hero .stat-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.careers-section {
    padding-top: 100px;
    padding-bottom: 80px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    margin-top: 0;
}

.careers-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.careers-intro {
    text-align: center;
    margin-bottom: 120px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.careers-intro h2 {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.careers-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-icon {
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2c5530 0%, #4CAF50 100%);
    border-radius: 50%;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.2);
    animation: float 3s ease-in-out infinite;
}

.intro-icon i {
    font-size: 2.5rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.intro-lead {
    font-size: 1.3rem !important;
    color: #2c5530 !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.6 !important;
}

.careers-benefits-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid #e8f5e9;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 85, 48, 0.15);
    border-color: #4CAF50;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.benefit-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #2c5530;
    text-align: center;
}

.job-listing {
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-bottom: 120px;
    border: 2px solid rgba(44, 85, 48, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-listing:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.08);
}

.job-header {
    background: linear-gradient(135deg, #2c5530 0%, #3a7a3f 50%, #4CAF50 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.job-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10%, -10%) scale(1.1); }
}

.job-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: -0.5px;
}

.job-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.job-meta span {
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.job-meta span i {
    font-size: 0.9rem;
    opacity: 0.9;
}

.job-meta span:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.job-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.job-type::before {
    display: none;
}

.job-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.job-location::before {
    display: none;
}

.job-posted {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.job-posted::before {
    display: none;
}

.job-content {
    padding: 50px 50px;
}

.job-section {
    margin-bottom: 5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid #f0f0f0;
    padding-left: 1rem;
    padding-right: 1rem;
}

.job-section:first-child {
    padding-top: 2rem;
}

.job-section:last-child {
    margin-bottom: 0;
    padding-bottom: 1.5rem;
    border-bottom: none;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-header i {
    font-size: 1.8rem;
    color: #4CAF50;
    background: #e8f5e9;
    padding: 12px;
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-section h4 {
    color: #2c5530;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    padding-bottom: 0.75rem;
    position: relative;
    display: inline-block;
    flex: 1;
}

.job-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    border-radius: 2px;
}

.job-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    padding-left: 0.5rem;
}

.job-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-section ul li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    padding-left: 50px;
    position: relative;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.job-section ul li:hover {
    padding-left: 55px;
    color: #2c5530;
    background: #f8f9fa;
    border-radius: 8px;
    margin-left: -10px;
    margin-right: -10px;
    padding-right: 10px;
}

.job-section ul li:before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 2px;
    background: #e8f5e9;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(76, 175, 80, 0.2);
}

.application-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 50px 50px;
    margin-top: 80px;
    border: 2px solid #e8f5e9;
}

.application-form-container h3 {
    color: #2c5530;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.application-form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    border-radius: 2px;
}

.application-form {
    max-width: 600px;
    margin: 0 auto;
}

.application-form .form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #2c5530;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

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

.file-upload-container {
    position: relative;
}

.file-upload-container input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-display {
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    background: #fafafa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-display:hover,
.file-upload-display.drag-over {
    border-color: #4CAF50;
    background: #f0f8f0;
}

.file-upload-display.file-selected {
    border-color: #4CAF50;
    background: #f0f8f0;
    border-style: solid;
}

.file-upload-display i {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 1rem;
    display: block;
}

.file-upload-text {
    display: block;
    color: #2c5530;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.file-upload-size {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.submit-btn {
    background: linear-gradient(135deg, #2c5530 0%, #4CAF50 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
    margin-bottom: 4rem;
}

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

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.application-status {
    margin-top: 2rem;
    text-align: center;
}

.status-success {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Mobile Responsive for Careers */
@media (max-width: 768px) {
    .careers-hero {
        padding: 100px 0 60px;
    }
    
    .careers-hero h1 {
        font-size: 2.5rem;
    }
    
    .careers-hero .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .careers-hero .hero-stats {
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .careers-hero .stat-item {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .careers-hero .stat-number {
        font-size: 2rem;
    }
    
    .careers-hero .stat-label {
        font-size: 0.9rem;
    }
    
    .careers-section {
        padding-top: 100px;
        padding-bottom: 80px;
    }
    
    .careers-section .container {
        padding: 0 1rem;
    }
    
    .careers-intro {
        margin-bottom: 80px;
    }
    
    .careers-intro h2 {
        font-size: 2.2rem;
        margin-bottom: 1.25rem;
    }
    
    .careers-intro p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .intro-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .intro-lead {
        font-size: 1.1rem !important;
        margin-bottom: 1.25rem !important;
    }

    .careers-benefits-preview {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .benefit-item {
        padding: 1.5rem 1rem;
    }

    .benefit-item i {
        font-size: 2rem;
    }

    .benefit-item span {
        font-size: 0.95rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .section-header i {
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
        padding: 10px;
    }

    .job-section h4 {
        font-size: 1.4rem;
    }
    
    .job-listing {
        margin-bottom: 80px;
        border-radius: 15px;
    }
    
    .job-header {
        padding: 40px 25px;
    }
    
    .job-header h3 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .job-meta span {
        width: auto;
        min-width: 200px;
        text-align: center;
    }
    
    .job-content {
        padding: 40px 25px;
    }
    
    .job-section {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        margin-bottom: 3.5rem;
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .job-section p {
        font-size: 1rem;
        padding-left: 0;
        margin-bottom: 1rem;
    }

    .job-section ul li {
        font-size: 1rem;
        padding-left: 45px;
        margin-bottom: 1rem;
    }

    .job-section ul li:hover {
        padding-left: 50px;
        margin-left: -5px;
        margin-right: -5px;
        padding-right: 5px;
    }

    .application-form-container {
        padding: 40px 25px;
        margin-top: 60px;
        border-radius: 15px;
    }

    .application-form-container h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .job-section ul li:before {
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }
    
    .file-upload-display {
        padding: 30px 15px;
    }
    
    .file-upload-display i {
        font-size: 1.5rem;
    }
}
    
    .cookie-modal-body li {
        font-size: 0.8rem;
    }
    
    .cookie-accept,
    .cookie-reject {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-height: 42px;
    }
}

/* Legal Pages Styles */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    line-height: 1.6;
}

.legal-page h1 {
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.legal-section h3 {
    color: #2c5530;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #333;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #333;
}

.legal-section a {
    color: #2c5530;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #1a3a1e;
}

.policy-highlight {
    background-color: #f8f9fa;
    border-left: 4px solid #2c5530;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.policy-highlight p {
    margin: 0;
    font-weight: 500;
}

.cancellation-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cancellation-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.cancellation-table th,
.cancellation-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cancellation-table th {
    background-color: #2c5530;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.cancellation-table tr:hover {
    background-color: #f8f9fa;
}

.cancellation-table tr:last-child td {
    border-bottom: none;
}

/* Mobile styles for legal pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 1rem 0.5rem;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
    
    .cancellation-table {
        font-size: 0.9rem;
    }
    
    .cancellation-table th,
    .cancellation-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .policy-highlight {
        padding: 0.8rem;
    }
}

/* Image Hover Popup Styles */
.image-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.image-popup-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.image-popup-overlay.show .image-popup-content {
    transform: scale(1);
}

.image-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    z-index: 10001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.image-popup-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

.image-popup-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.image-popup-title {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #2d5a2d;
    text-align: center;
}

.image-popup-description {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.4;
}

/* Make destination images clickable */
.package-image img,
.package-image video {
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.package-image img:hover,
.package-image video:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Mobile optimizations for image popup */
@media (max-width: 768px) {
    .image-popup-content {
        max-width: 95vw;
        max-height: 95vh;
        padding: 15px;
        margin: 10px;
    }

    .image-popup-image {
        max-height: 60vh;
    }

    .image-popup-title {
        font-size: 16px;
    }

    .image-popup-description {
        font-size: 13px;
    }
}

/* Disable hover effects for cards in the "Journeys of Discovery Await" section */
#places .package-card:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

#places .package-card:hover .package-image img {
    transform: none !important;
}

#places .package-card:hover .package-image .location-video {
    transform: none !important;
}

#places .packages-slideshow .package-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Additional override for any remaining general package-card hover effects */
#places .package-card:hover,
#places .packages-slideshow .package-card:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

#places .package-card:hover .package-image img,
#places .packages-slideshow .package-card:hover .package-image img {
    transform: none !important;
}

#places .package-card:hover .package-image .location-video,
#places .packages-slideshow .package-card:hover .package-image .location-video {
    transform: none !important;
}

/* Comprehensive override to remove any remaining card outlines in places section */
#places .package-card,
#places .package-card *,
#places .package-image,
#places .package-image * {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
}

/* Hide navigation arrows in places section */
#places .prev-btn,
#places .next-btn,
#places .packages-slideshow .prev-btn,
#places .packages-slideshow .next-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Show text content for places section */
#places .package-header,
#places .package-description {
    display: flex !important;
}

#places .section-title {
    display: block !important;
}

/* Ensure all places section elements have white backgrounds */
#places,
#places .packages-slideshow,
#places .slideshow-container,
#places .tours-grid,
#places .packages-grid,
#places .slide,
#places .packages-slideshow * {
    background: white !important;
}

/* Ensure grid gaps and spacing areas are white */
#places .packages-slideshow::before,
#places .packages-slideshow::after,
#places .slideshow-container::before,
#places .slideshow-container::after {
    background: white !important;
}

/* Maintenance Mode Overlay Styles */
.maintenance-mode-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    background: linear-gradient(135deg, #2c5530 0%, #1a3a1f 100%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: auto;
    box-sizing: border-box;
}

.maintenance-mode-content {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: maintenanceFadeIn 0.5s ease-out;
    margin: auto;
    box-sizing: border-box;
}

@keyframes maintenanceFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.maintenance-icon {
    font-size: 80px;
    color: #2c5530;
    margin-bottom: 30px;
    animation: maintenancePulse 2s ease-in-out infinite;
}

@keyframes maintenancePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.maintenance-mode-content h1 {
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.maintenance-mode-content p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.maintenance-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
}

.maintenance-footer p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .maintenance-mode-overlay {
        padding: 15px;
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
        align-items: center;
        justify-content: center;
    }

    .maintenance-mode-content {
        padding: 40px 30px;
        border-radius: 15px;
    }

    .maintenance-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .maintenance-mode-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .maintenance-mode-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .maintenance-bypass-section {
        margin-top: 20px !important;
        padding-top: 15px !important;
    }

    .maintenance-bypass-section label {
        font-size: 0.85em !important;
        margin-bottom: 8px !important;
    }

    .maintenance-bypass-section input[type="text"] {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 10px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
    }

    .maintenance-bypass-section button {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
    }

    .maintenance-bypass-section p {
        font-size: 0.8em !important;
        margin-top: 8px !important;
    }
}

@media (max-width: 480px) {
    .maintenance-mode-overlay {
        padding: 10px;
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
        align-items: center;
        justify-content: center;
    }

    .maintenance-mode-content {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .maintenance-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .maintenance-mode-content h1 {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .maintenance-mode-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .maintenance-bypass-section {
        margin-top: 15px !important;
        padding-top: 12px !important;
    }
}

/* Mailing List Popup Styles */
.mailing-list-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.mailing-list-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mailing-list-popup-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
}

.mailing-list-popup-overlay.show .mailing-list-popup-content {
    transform: scale(1) translateY(0);
}

.mailing-list-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mailing-list-popup-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.mailing-list-popup-header {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 30px 30px 20px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.mailing-list-popup-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.mailing-list-popup-header p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.mailing-list-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.interests-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-label:hover {
    background: rgba(76, 175, 80, 0.05);
}

.checkbox-label:hover .checkmark {
    border-color: #4CAF50;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: white;
    display: block;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #4CAF50;
    border-color: #4CAF50;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: block;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.mailing-list-submit-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 150px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.mailing-list-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.mailing-list-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.mailing-list-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

.mailing-list-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.mailing-list-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Navigation Mailing List Button */
.nav-mailing-list-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.nav-mailing-list-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.nav-mailing-list-btn i {
    font-size: 0.8rem;
}

/* Mobile Mailing List Button */
.mobile-mailing-list-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 20px;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.mobile-mailing-list-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

/* Mailing List Section in Contact */
.mailing-list-section {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(69, 160, 73, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.mailing-list-section h3 {
    color: #2d5a2d;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.mailing-list-section p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.mailing-list-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mailing-list-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.mailing-list-btn i {
    font-size: 0.9rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mailing-list-popup-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .mailing-list-popup-content {
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 20px);
        margin: 0;
        border-radius: 15px 15px 0 0;
        transform: translateY(0);
    }
    
    .mailing-list-popup-overlay.show .mailing-list-popup-content {
        transform: translateY(0);
    }
    
    .mailing-list-popup-close {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
        font-size: 32px;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .mailing-list-popup-close:hover,
    .mailing-list-popup-close:active {
        background: rgba(255, 255, 255, 0.3);
        color: white;
    }
    
    .mailing-list-popup-header {
        padding: 20px 15px 15px;
        border-radius: 15px 15px 0 0;
    }
    
    .mailing-list-popup-header h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .mailing-list-popup-header p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .mailing-list-form {
        padding: 20px 15px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
        -webkit-appearance: none;
        appearance: none;
    }
    
    .interests-checkboxes {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .checkbox-label {
        padding: 12px 10px;
        min-height: 44px; /* Touch-friendly minimum height */
        font-size: 0.9rem;
    }
    
    .checkmark {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }
    
    .form-actions {
        margin-top: 25px;
    }
    
    .mailing-list-submit-btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
        min-width: auto;
        border-radius: 25px;
    }
    
    .mailing-list-message {
        padding: 12px;
        font-size: 0.9rem;
        margin-top: 15px;
    }
    
    .nav-mailing-list-btn {
        display: none;
    }
    
    .mobile-mailing-list-btn {
        display: flex;
    }
    
    .mailing-list-section {
        margin-top: 30px;
        padding: 20px;
    }
    
    .mailing-list-section h3 {
        font-size: 1.3rem;
    }
    
    .mailing-list-section p {
        font-size: 0.9rem;
    }
    
    .mailing-list-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .mailing-list-popup-overlay {
        padding: 5px;
        padding-top: 10px;
    }
    
    .mailing-list-popup-content {
        max-height: calc(100vh - 10px);
        border-radius: 12px 12px 0 0;
    }
    
    .mailing-list-popup-header {
        padding: 18px 12px 12px;
    }
    
    .mailing-list-popup-header h3 {
        font-size: 1.2rem;
    }
    
    .mailing-list-popup-header p {
        font-size: 0.85rem;
    }
    
    .mailing-list-form {
        padding: 15px 12px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .mailing-list-popup-close {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
}

@media (min-width: 769px) {
    .mobile-mailing-list-btn {
        display: none;
    }
    
    .nav-mailing-list-btn {
        display: flex;
    }
}

/* Animation for popup entrance */
@keyframes mailingListPopupIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.mailing-list-popup-overlay.show .mailing-list-popup-content {
    animation: mailingListPopupIn 0.3s ease-out;
}

/* Package Section Image and Description Styles */
.location-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 2px solid rgba(44, 85, 48, 0.2);
    transition: all 0.3s ease;
}

.location-image:hover {
    border-color: rgba(44, 85, 48, 0.4);
    transform: scale(1.05);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.location-description {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
    line-height: 1.3;
    margin-top: 0.25rem;
}

.activity-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    border: 2px solid rgba(44, 85, 48, 0.15);
    transition: all 0.3s ease;
}

.activity-image:hover {
    border-color: rgba(44, 85, 48, 0.3);
    transform: scale(1.05);
}

.activity-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.activity-description {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 0.2rem;
}

/* Location Card Styles */
.location-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    gap: 1rem;
    padding: 1rem;
}

.location-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(44, 85, 48, 0.3);
}

.location-card.selected {
    border-color: #4CAF50;
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.2);
}


.location-card-content {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.location-card-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 2px solid rgba(44, 85, 48, 0.1);
}

.location-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    align-items: flex-start;
}

.location-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5530;
    margin: 0;
    line-height: 1.3;
    text-align: left;
}

.location-card-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    text-align: left;
}

.location-card-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    justify-content: flex-start;
}

.location-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-align: left;
    font-size: 0.8rem;
    color: #555;
    background: rgba(44, 85, 48, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 500;
}

.location-meta-item i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.location-checkbox-overlay {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.location-card-checkbox {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 101;
    pointer-events: all;
}

/* Checkmark icon for location cards */
.location-checkbox-overlay::after {
    content: '';
    position: absolute;
    display: none;
    width: 24px;
    height: 24px;
    background: #4CAF50;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 14px 14px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 102;
}

.location-checkbox-overlay:has(.location-card-checkbox:checked)::after,
.location-card.selected .location-checkbox-overlay::after {
    display: block;
}

/* Unchecked state - show empty circle (always visible) */
.location-checkbox-overlay::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background: white;
    z-index: 102;
}

/* Hide empty circle when checked */
.location-checkbox-overlay:has(.location-card-checkbox:checked)::before,
.location-card.selected .location-checkbox-overlay::before {
    display: none;
}

/* Activity Card Styles */
.activity-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

.activity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(44, 85, 48, 0.3);
}

.activity-card.selected {
    border-color: #4CAF50;
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.2);
}

.activity-card-content {
    display: flex;
    padding: 1rem;
    gap: 1rem;
}

.activity-card-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 2px solid rgba(44, 85, 48, 0.1);
}

.activity-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    align-items: flex-start;
}

.activity-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5530;
    margin: 0;
    line-height: 1.3;
    text-align: left;
}

.activity-card-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    text-align: left;
}

.activity-card-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    justify-content: flex-start;
}

.activity-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-align: left;
    font-size: 0.8rem;
    color: #555;
    background: rgba(44, 85, 48, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.activity-meta-item i {
    color: #4CAF50;
    font-size: 0.75rem;
}

.activity-checkbox-overlay {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.activity-card-checkbox {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 101;
    pointer-events: all;
}

/* Checkmark icon for activity cards */
.activity-checkbox-overlay::after {
    content: '';
    position: absolute;
    display: none;
    width: 24px;
    height: 24px;
    background: #4CAF50;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 14px 14px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 102;
}

.activity-checkbox-overlay:has(.activity-card-checkbox:checked)::after,
.activity-card.selected .activity-checkbox-overlay::after {
    display: block;
}

/* Unchecked state - show empty circle (always visible) */
.activity-checkbox-overlay::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background: white;
    z-index: 102;
}

/* Hide empty circle when checked */
.activity-checkbox-overlay:has(.activity-card-checkbox:checked)::before,
.activity-card.selected .activity-checkbox-overlay::before {
    display: none;
}

/* Ensure activity cards are left-aligned across all package types */
.activity-card,
.activity-card-content,
.activity-card-text,
.activity-card-title,
.activity-card-description,
.activity-card-meta {
    text-align: left !important;
}

/* Ensure location cards are left-aligned across all package types */
.location-card,
.location-card-content,
.location-card-text,
.location-card-title,
.location-card-description,
.location-card-meta {
    text-align: left !important;
}

/* Update sub-activities container for cards */
.sub-activities {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-left: 2rem;
    padding-left: 0.75rem;
    border-left: 2px solid rgba(44, 85, 48, 0.2);
    margin-bottom: 0.5rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .location-image {
        width: 50px;
        height: 50px;
    }
    
    .activity-image {
        width: 40px;
        height: 40px;
    }
    
    .location-description {
        font-size: 0.8rem;
    }
    
    .activity-description {
        font-size: 0.75rem;
    }
    
    .location-card {
        flex-direction: column;
        padding: 0.75rem;
    }
    
    .location-card-content {
        flex-direction: column;
        text-align: left;
    }
    
    .location-card-image {
        width: 100%;
        height: 150px;
        align-self: center;
    }
    
    .location-card-title {
        font-size: 1.1rem;
    }
    
    .location-card-description {
        font-size: 0.85rem;
    }
    
    .location-card-meta {
        gap: 0.75rem;
        justify-content: flex-start;
    }
    
    .location-meta-item {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
    
    .location-checkbox-overlay {
        top: 0.5rem;
        right: 0.5rem;
        width: 28px;
        height: 28px;
        z-index: 100;
    }
    
    .location-checkbox-overlay::after {
        width: 22px;
        height: 22px;
        background-size: 12px 12px;
    }
    
    .location-checkbox-overlay::before {
        width: 18px;
        height: 18px;
    }
    
    .location-card-checkbox {
        width: 100%;
        height: 100%;
    }
    
    
    .activity-card-content {
        flex-direction: column;
        padding: 0.75rem;
        text-align: left;
    }
    
    .activity-card-image {
        width: 100%;
        height: 150px;
        align-self: center;
    }
    
    .activity-card-meta {
        gap: 0.5rem;
        justify-content: flex-start;
    }
    
    .activity-meta-item {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
    
    .activity-checkbox-overlay {
        top: 0.5rem;
        right: 0.5rem;
        width: 28px;
        height: 28px;
        z-index: 100;
    }
    
    .activity-checkbox-overlay::after {
        width: 22px;
        height: 22px;
        background-size: 12px 12px;
    }
    
    .activity-checkbox-overlay::before {
        width: 18px;
        height: 18px;
    }
    
    .activity-card-checkbox {
        width: 100%;
        height: 100%;
    }
}

/* Province Flags Styles */
.province-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.province-flag {
    width: 120px;
    height: auto;
    flex-shrink: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.province-text {
    flex: 1;
}

.province-text h3 {
    margin-bottom: 0.5rem;
}

.province-text p {
    margin: 0;
}

@media (max-width: 768px) {
    .province-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .province-flag {
        width: 100px;
        align-self: flex-start;
    }
}

/* Weather Section Styles */
.weather-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.weather-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.weather-scroll-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.weather-cards-wrapper {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #4CAF50 #e0e0e0;
    -webkit-overflow-scrolling: touch;
    max-width: 890px;
    margin: 0 auto;
}

.weather-cards-wrapper::-webkit-scrollbar {
    height: 8px;
}

.weather-cards-wrapper::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

.weather-cards-wrapper::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 10px;
}

.weather-cards-wrapper::-webkit-scrollbar-thumb:hover {
    background: #45a049;
}

.weather-cards {
    display: flex;
    gap: 25px;
    padding: 10px 5px;
    min-width: min-content;
}

.weather-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.weather-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4CAF50 0%, #2196F3 100%);
}

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

.weather-location {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.weather-location i {
    color: #4CAF50;
    font-size: 1.3rem;
}

.weather-temp {
    font-size: 3rem;
    font-weight: 700;
    color: #2196F3;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.weather-temp-value {
    line-height: 1;
}

.weather-temp-unit {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 5px;
}

.weather-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 10px;
}

.weather-icon {
    font-size: 2.5rem;
}

.weather-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.weather-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.weather-detail-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weather-detail-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.weather-detail-value i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.weather-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 15px;
}

.weather-loading i {
    font-size: 3rem;
    color: #4CAF50;
}

.weather-loading p {
    font-size: 1.1rem;
    color: #666;
}

.weather-error {
    background: #ffebee;
    color: #c62828;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid #c62828;
}

.weather-error i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.weather-scroll-btn {
    background: #2c5530;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
    flex-shrink: 0;
}

.weather-scroll-btn:hover {
    background: #4CAF50;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
}

.weather-scroll-btn:active {
    transform: scale(0.95);
}

.weather-scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.weather-scroll-btn:disabled:hover {
    background: #2c5530;
    transform: scale(1);
}

@media (max-width: 768px) {
    .weather-section {
        padding: 60px 0;
    }
    
    .weather-scroll-btn {
        display: none;
    }
    
    .weather-scroll-container {
        gap: 0;
    }
    
    .weather-cards-wrapper {
        max-width: 100%;
    }
    
    .weather-card {
        flex: 0 0 280px;
        padding: 20px;
    }
    
    .weather-location {
        font-size: 1.3rem;
    }
    
    .weather-temp {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .weather-card {
        flex: 0 0 260px;
    }
}


/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: white;
    color: #333;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    border-left: 4px solid #4CAF50;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: #4CAF50;
}

.toast.error {
    border-left-color: #f44336;
}

.toast.info {
    border-left-color: #2196F3;
}

.toast.warning {
    border-left-color: #ff9800;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast.success .toast-icon { color: #4CAF50; }
.toast.error .toast-icon { color: #f44336; }
.toast.info .toast-icon { color: #2196F3; }
.toast.warning .toast-icon { color: #ff9800; }

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.toast-message {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #333;
}

@media (max-width: 480px) {
    .toast-container {
        top: auto;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .toast {
        min-width: auto;
        width: 100%;
        transform: translateY(120%);
    }
    
    .toast.show {
        transform: translateY(0);
    }
}

