:root {
    --primary-blue: #2c3e50;
    --primary-teal: #1a6b84;
    --secondary-orange: #e67e22;
    --accent-orange: #d35400;
    --light-gray: #ecf0f1;
    --dark-gray: #34495e;
    --medium-gray: #7f8c8d;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: #f9f9f9;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between; /* This ensures equal space between items */
    align-items: center;
    padding: 40px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 40px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-left, .nav-center, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
    gap: 10px;
}


.nav-center {
    justify-content: center;
}

.nav-right {
    justify-content: flex-end;
    gap: 10px;
}

/* Adjust the logo container */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}



.logo img {
    height: 100px;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 70px;
}

/* Ensure tabs are aligned */
.tab {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 15px; /* Add consistent padding */
    white-space: nowrap; /* Prevent text wrapping */
}

.tab:hover {
    color: var(--secondary-orange);
}

.tab::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-orange);
    transition: width 0.3s ease;
}

.tab:hover::after {
    width: 100%;
}

.contact-tab {
    background-color: var(--primary-teal);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-tab:hover {
    background-color: var(--accent-orange);
    color: white;
}

.contact-tab::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-teal);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.show {
    display: flex;
}

.mobile-tab {
    padding: 12px 0;
    color: var(--dark-gray);
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.mobile-tab:hover {
    color: var(--secondary-orange);
    padding-left: 10px;
}

























/* Background Slideshow */
.background-slideshow {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.slideshow-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 80%;
}

.slideshow-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.slideshow-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hero Form */
.hero-form-container {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.hero-form {
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 1000px;
}

.hero-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary-blue);
    text-align: center;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input,
.form-row select {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.inquiry-btn {
    background: var(--primary-teal);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.inquiry-btn:hover {
    background: var(--accent-orange);
}

/* Adventure Awaits Section */
.adventure-awaits {
    display: flex;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-teal));
    color: white;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.adventure-content {
    padding: 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.adventure-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.adventure-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.adventure-buttons {
    display: flex;
    gap: 15px;
}

.adventure-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--secondary-orange);
    color: white;
}

.primary-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

.secondary-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.adventure-btn i {
    margin-left: 8px;
    font-size: 0.9rem;
}

.adventure-image {
    flex: 1;
    position: relative;
}

.adventure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-orange);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Destinations Carousel */
.featured-destinations {
    padding: 80px 20px;
    background-color: #f9f9f9;
    overflow: hidden;
}

.destinations-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 10px 0;
}

.destination-card {
    min-width: calc(33.333% - 14px);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
}

.card-overlay h3 {
    margin: 0;
    font-size: 24px;
}

.card-overlay p {
    margin: 5px 0 0;
    font-size: 16px;
}

.card-details {
    padding: 20px;
}

.card-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.card-details li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.card-details i {
    margin-right: 10px;
    color: #4a8b2c;
}

.explore-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #4a8b2c;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    font-weight: 500;
}

.explore-btn:hover {
    background: #3a6b22;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    color: #4a8b2c;
    font-size: 16px;
    transition: all 0.3s;
}

.carousel-nav:hover {
    background: #4a8b2c;
    color: white;
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: #4a8b2c;
}

/* Parallax Section */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin: 60px 0;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.parallax-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.parallax-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.parallax-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-orange);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}



/* Mobile adjustments */
@media (max-width: 767px) {
    .parallax-section {
        /* Disable parallax effect on mobile */
        background-attachment: scroll;
        
        /* Adjust height for mobile */
        height: 300px;
        
        /* Ensure content fits */
        padding: 20px;
    }
    
    .parallax-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .parallax-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .parallax-section {
        height: 250px;
    }
    
    .parallax-content h2 {
        font-size: 1.5rem;
    }
    
    .parallax-content p {
        font-size: 0.9rem;
    }
}











/* Why Choose Us */
.why-choose-us {
    padding: 80px 20px;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 250px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
    background: var(--primary-blue);
}

.feature-card h3 {
    margin: 0 0 10px;
    color: var(--primary-blue);
}

.feature-card p {
    margin: 0;
    color: var(--medium-gray);
}

.feature-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-blue);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover .feature-hover-content {
    opacity: 1;
}

/* Popular Tours */
.popular-tours {
    padding: 80px 20px;
    background: white;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    background: white;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.tour-image {
    position: relative;
    height: 200px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.tour-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-blue);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.tour-content {
    padding: 20px;
}

.tour-rating {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tour-rating i {
    color: #f1c40f;
    margin-right: 3px;
    font-size: 0.9rem;
}

.tour-rating span {
    margin-left: 10px;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.tour-content h3 {
    margin: 0 0 10px;
    color: var(--primary-blue);
    font-size: 1.3rem;
}

.tour-content p {
    margin: 0 0 15px;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.tour-meta i {
    margin-right: 5px;
    color: var(--secondary-orange);
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tour-highlights span {
    background: #f5f5f5;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.tour-highlights i {
    margin-right: 5px;
    color: var(--secondary-orange);
    font-size: 0.7rem;
}

.tour-btn {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.tour-btn:hover {
    background: var(--secondary-orange);
}

.tour-btn i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Sri Lanka Map */
.sri-lanka-map {
    padding: 80px 20px;
    background: var(--light-gray);
}

.map-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
}

.map-wrapper {
    position: relative;
    flex: 1;
    padding: 30px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eee;
}

.map-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    display: block;
    transition: transform 0.3s ease;
}

.map-wrapper:hover .map-image {
    transform: scale(1.02);
}

/* Sri Lanka Map Points - Correct Positioning */
.map-point {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 1;
}

/* Adjust tooltip positions */
.map-point .map-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-bottom: 10px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Pulse animation for points */
.point {
    width: 20px;
    height: 20px;
    background: var(--secondary-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    position: relative;
}

/* Individual Point Positioning (Matches Your HTML) */
.map-point[data-location="colombo"] { top: 70%; left: 22%; }
.map-point[data-location="Kalpitiya"] { top: 45%; left: 18%; }
.map-point[data-location="Negombo"] { top: 62%; left: 22%; }
.map-point[data-location="Bentota"] { top: 82%; left: 26%; }
.map-point[data-location="Hikkaduwa"] { top: 86%; left: 28%; }
.map-point[data-location="Galle"] { top: 90%; left: 32%; }
.map-point[data-location="Mirissa"] { top: 91%; left: 38%; }
.map-point[data-location="Jaffna"] { top: 6%; left: 28%; }
.map-point[data-location="Anuradhapura"] { top: 39%; left: 36%; }
.map-point[data-location="Wilpatthu"] { top: 38%; left: 25%; }
.map-point[data-location="Nilaveli"] { top: 32%; left: 60%; }
.map-point[data-location="Dambulla<"] { top: 50%; left: 43%; }
.map-point[data-location="Sigiriya"] { top: 47%; left: 47%; }
.map-point[data-location="Minneriya"] { top: 44%; left: 52%; }
.map-point[data-location="Polonnaruwa"] { top: 49%; left: 55%; }
.map-point[data-location="Pasikudah"] { top: 48%; left: 71%; }
.map-point[data-location="Kandy"] { top: 59%; left: 45%; }
.map-point[data-location="Nuwaraeliya"] { top: 68%; left: 48%; }
.map-point[data-location="Ella"] { top: 73%; left: 59%; }
.map-point[data-location="Yala"] { top: 84%; left: 68%; }
.map-point[data-location="Udawalawa"] { top: 80%; left: 51%; }
.map-point[data-location="Tangalle"] { top: 89%; left: 51%; }
.map-point[data-location="Arugambay"] { top: 69%; left: 79%; }
.map-point[data-location="Kataragama"] { top: 80%; left: 65%; }
.map-point[data-location="Sinharaja<"] { top: 82%; left: 42%; }
.map-point[data-location="Adams Peak"] { top: 72%; left: 42%; }
.map-point[data-location="Kithulgala"] { top: 67%; left: 38%; }







/* Adjust tooltip positions for specific points if needed */
.map-point[data-location="colombo"] .map-tooltip {
    left: 30%;
    transform: translateX(-30%);
}

.map-point[data-location="tea-country"] .map-tooltip {
    left: 60%;
    transform: translateX(-60%);
}

.point {
     width: 12px; /* Slightly smaller */
    height: 12px;
    background: var(--secondary-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    position: relative;
}

.map-point:hover .point {
    animation: none;
    transform: scale(1.3);
    box-shadow: 0 0 0 5px rgba(230, 126, 34, 0.3);
}

/* Update the map-tooltip styles to be always visible */
.map-tooltip {
  
    display: none;
    
}

/* 
.map-point:hover .map-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 5px);
}*/
.map-point:hover {
    z-index: 2;
}

.map-details {
    flex: 1;
    padding: 30px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.details-placeholder {
    text-align: center;
    color: var(--medium-gray);
    padding: 20px;
}

.details-placeholder i {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
    opacity: 0.7;
}

.details-placeholder h3 {
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.location-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    overflow-y: auto;
}

.location-details.active {
    opacity: 1;
    visibility: visible;
}

.location-name {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-blue);
    font-weight: normal;
    font-size: 14px;
    white-space: nowrap;
    color: var(--primary-blue); 
    background: rgba(255,255,255,0.8);
    padding: 2px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.location-details h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.location-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-orange);
}

.location-details p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    line-height: 1.8;
}

.location-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.location-details li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.location-details i {
    margin-right: 10px;
    color: var(--secondary-orange);
    min-width: 20px;
    text-align: center;
    margin-top: 3px;
}

.explore-btn {
    display: inline-block;
    background: var(--primary-teal);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 10px;
}

.explore-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.explore-btn i {
    margin-left: 8px;
    color: white;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(230, 126, 34, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
    }
}

/* Responsive styles for map section */
@media (max-width: 900px) {
    .map-container {
        flex-direction: column;
    }
    
    .map-wrapper {
        border-right: none;
        border-bottom: 1px solid #eee;
        min-height: 400px;
    }
    
    .map-details {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .map-wrapper {
        padding: 15px;
    }
    
    .map-details {
        padding: 20px;
    }
    
    .location-details {
        padding: 20px;
    }
}
/* Location Images */
.location-images {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    overflow-x: auto;
    padding-bottom: 10px;
}

.location-images img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.location-images img:hover {
    transform: scale(1.05);
}

/* Scrollbar styling for image gallery */
.location-images::-webkit-scrollbar {
    height: 6px;
}

.location-images::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.location-images::-webkit-scrollbar-thumb {
    background: var(--secondary-orange);
    border-radius: 10px;
}

.location-images::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

/* Responsive adjustments for images */
@media (max-width: 768px) {
    .location-images img {
        width: 150px;
        height: 120px;
    }
    .map-point { transform: translate(-50%, -50%) scale(0.8); }
    .map-container {
        flex-direction: column;
    }
    .map-wrapper, .map-details {
        width: 100%;
    }


}

.map-point:active .point {
    transform: scale(1.3); /* Visual feedback on tap */
}

@media (max-width: 480px) {
    .location-images {
        flex-wrap: wrap;
        overflow-x: visible;
    }
    
    .location-images img {
        width: 100%;
        height: auto;
        max-height: 150px;
    }
}

@media (max-width: 600px) {
    .location-name {
        font-size: 12px;
        white-space: normal; /* Allow text wrapping */
    }
}




















/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.rating-stars {
    margin-bottom: 20px;
}

.rating-stars i {
    color: #f1c40f;
    margin: 0 2px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h4 {
    margin: 0 0 5px;
    color: var(--primary-blue);
    text-align: left;
}

.testimonial-author span {
    display: block;
    color: var(--medium-gray);
    font-size: 0.9rem;
    text-align: left;
}

.trip-details span {
    font-size: 0.8rem;
    color: #95a5a6;
    display: block;
    margin-top: 5px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.testimonial-controls button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s;
    padding: 5px 15px;
}

.testimonial-controls button:hover {
    color: var(--secondary-orange);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dots .dot.active {
    background: var(--secondary-orange);

}


/* Footer */
.simple-footer {
    background: var(--primary-blue);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.simple-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary-orange), var(--primary-teal));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

 .footer-center, .footer-contact {
    flex: 1;
    min-width: 390px;
    margin-bottom: 20px;
    padding: 0 30px;

}

.footer-links {
    flex: 1;
    min-width: 20px;
    margin-bottom: 20px;
    padding: 0 30px;
    margin-left: 150px;
}


.footer-links h3, .footer-contact h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-orange);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--secondary-orange);
    padding-left: 5px;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.9rem;
    color: var(--secondary-orange);
    transition: all 0.3s;
}

.footer-links a:hover i {
    transform: rotate(360deg);
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    max-width: 180px;
    height: auto;
   /* filter: brightness(0) invert(1);*/
}





.footer-contact {
    position: relative;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    margin-right: 15px;
    color: var(--secondary-orange);
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
    margin-top: 3px;
}

.contact-item div {
    flex: 1;
}

.contact-item h4 {
    margin: 0 0 5px;
    color: white;
    font-size: 1rem;
}

.contact-item p, .contact-item a {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item a:hover {
    color: var(--secondary-orange);
}

.social-media {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    justify-content: flex-start;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.social-media a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-orange), var(--accent-orange));
    opacity: 0;
    transition: all 0.3s;
}

.social-media a:hover::after {
    opacity: 1;
}

.social-media a i {
    position: relative;
    z-index: 1;
}

.social-media a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom p {
    margin: 0 0 15px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    position: relative;
    padding: 0 5px;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-orange);
    transition: width 0.3s;
}

.footer-legal a:hover {
    color: var(--secondary-orange);
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Footer decorations */
.footer-decoration {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
}

.footer-decoration.shape-1 {
    top: 50px;
    left: 5%;
    font-size: 10rem;
    color: var(--secondary-orange);
}

.footer-decoration.shape-2 {
    bottom: 100px;
    right: 10%;
    font-size: 8rem;
    color: var(--primary-teal);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-content {
        gap: 30px;
    }
    
     .footer-center, .footer-contact {
        flex: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 15px;
    }

    .footer-links {
        flex: 1;
        max-width: 100%;
        text-align: left;
        padding: 0 15px;
        margin-left: 1000px;
    }






    .footer-links h3::after, .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-media {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .simple-footer {
        padding-top: 60px;
    }
    
    .footer-links h3, .footer-contact h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-legal a {
        padding: 5px 0;
    }
    
    .footer-legal a::after {
        bottom: 0;
    }
     .footer-links, .footer-center, .footer-contact {
        min-width: 100%;
        text-align: center;
    }
.footer-legal {
        flex-direction: column;
        gap: 5px;
    }


}





















/* Responsive Styles */
@media (max-width: 1024px) {
    .destination-card {
        min-width: calc(50% - 10px);
    }
    
    .adventure-awaits {
        flex-direction: column;
    }
    
    .adventure-content {
        padding: 30px;
    }
    
    .adventure-image {
        height: 300px;
    }
}

@media (max-width: 1023px) {
    .destination-card {
        min-width: 100%;
    }
    
    .destinations-carousel {
        padding: 0 30px;
    }
    
    .nav-left, .nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .adventure-content h2 {
        font-size: 1.8rem;
    }
    
    .adventure-buttons {
        flex-direction: column;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .slideshow-content h1 {
        font-size: 2.5rem;
    }
    
    .slideshow-content p {
        font-size: 1.2rem;
    }

.parallax-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.parallax-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}






    
    .hero-form {
        width: 120%;
    }
    
    .form-row {
        flex-direction: column;
    }
}



















@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .adventure-content {
        padding: 25px;
    }
    
    .adventure-content h2 {
        font-size: 1.5rem;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .testimonial-author h4, 
    .testimonial-author span,
    .trip-details span {
        text-align: center;
    }
    
   
    
    .contact-item {
        justify-content: center;
    }
    
    .social-media {
        justify-content: center;
    }
    
    }


/* For mobile menu specifically */
@media (max-width: 767px) {
    .mobile-tab.contact-tab {
        background-color: teal; /* Orange background */
        color: #ffffff; /* White text */
        margin-top: 10px;
        border-radius: 4px;
        text-align: center;
    }

    .mobile-tab.contact-tab:hover {
        background-color: #d35400; /* Darker orange on hover */
        color: #ffffff;
    }
}


    
/* Add these media queries at the end of your CSS */

/* Add these media queries to your CSS */

/* Tablet mode (typically 768px - 1023px) for nav bar */
@media (max-width: 1023px) {
    
    /* Tablet and mobile styles */
    .contact-tab {
        background-color: teal; /* New highlight color (orange) */
        color: #ffffff; /* White text */
        padding: 8px 15px;
        border-radius: 4px;
        transition: all 0.3s ease;
        text-align: center;/* Align Center */
    }

    .contact-tab:hover {
        background-color: #d35400; /* Darker orange on hover */
        color: #ffffff;
    }
    
   
    .hero-form {
        background: rgba(255, 255, 255, 0.5); /* Less transparent for better readability */
        padding: 15px; /* Reduce padding */
        width: 90%; /* Slightly narrower than full width */
        max-width: 600px; /* Limit maximum width */
        border-radius: 15px; /* Slightly smaller radius */
        margin: 0px 0px 0px; /* Center the form and add bottom margin */
    }

    .form-row {
        flex-direction: column; /* Stack inputs vertically */
        gap: 10px; /* Reduce gap between fields */
    }

    .form-row input,
    .form-row select {
        padding: 10px 12px; /* Slightly smaller padding */
    }

    .inquiry-btn {
        padding: 10px 20px; /* Slightly smaller button */
    }
}




/* Mobile mode (typically < 768px) */
@media (max-width: 767px) {
    
/* Mobile Hero Text Adjustments */
    .slideshow-content {
        width: 95%;
        padding: 20px;
    }
    
    .slideshow-content h1 {
        font-size: 1.8rem; /* Reduced from 2.2rem */
        line-height: 1.3;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto; /* Allows word breaking with hyphens */
    }
    
    .slideshow-content p {
        font-size: 1rem; /* Reduced from 1.1rem */
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    /* Ensure text doesn't overflow */
    .slideshow-content h1,
    .slideshow-content p {
        max-width: 100%;
        overflow: hidden;
    }

    .parallax-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.parallax-content p {
    font-size: 1rem;
    margin-bottom: 30px;
}






}

@media (max-width: 480px) {
    /* Extra small devices */
    .slideshow-content h1 {
        font-size: 1.6rem; /* Even smaller for very small screens */
        margin-bottom: 10px;
    }
    
    .slideshow-content p {
        font-size: 0.9rem;
    }
    /* 2. Adjust hero height to exclude form space */
    .background-slideshow {
        height: 70vh; /* Shorter hero (form no longer overlaps) */
    }

.parallax-content h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.parallax-content p {
    font-size: 0.9rem;
    margin-bottom: 30px;
}




    /* 1. Move form OUT of hero and below it */
      .hero-form-container {
    position: relative;
        margin: 0 auto;
        padding: 20px;
        background: var(--light-gray);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 100%;
  }

    /* 3. Style the form for mobile */
    .hero-form {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }

  /* 3. Ready for Adventure Section - Push below form */
  .adventure-awaits {
    margin-top: 0;
  }


    
}


@media (max-width: 767px) {
  .mobile-tab:active {
    color: var(--secondary-orange);
    padding-left: 10px;
  }
}

@media (hover: none) {
  .tab:hover, .tab:hover::after {
    /* Disable hover effects on touch devices */
    color: inherit;
    width: 0;
  }
  
  .tab:active {
    /* Add active state instead */
    color: var(--secondary-orange);
  }
}



.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 100;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: pulse 2s infinite;
}

.whatsapp-float a {
  text-decoration: none !important;
  display: flex;
  align-items: center;
  color: inherit;
}

  /* Mobile-first sizing */
  .whatsapp-float img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
     align-self: center;
    transition: transform 0.3s ease;
  }

 .whatsapp-float span {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: 0.5px;
  color: #F5F5F5;
  text-shadow: 0 1px 1px rgba(0,0,0,0.1);
  align-items: center;
  height: 100%;
  line-height: 1;
  text-decoration: none !important;
  border-bottom: none !important;
}

  /* Desktop hover effects */
  @media (hover: hover) {
    .whatsapp-float:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
      background-color: #128C7E;
    }
    .whatsapp-float:hover img {
      transform: scale(1.5);
    }
  }

  /* Larger screens adjustment */
  @media (min-width: 768px) {
    .whatsapp-float {
      bottom: 30px;
      right: 30px;
      height: 60px;
      padding: 0 20px;
      border-radius: 30px;
    }
    .whatsapp-float img {
      width: 32px;
      height: 32px;
      margin-right: 12px;
    }
    .whatsapp-float span {
      font-size: 18px;
    }
  }

  /* Pulse animation */
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }

  /* Active/tap effect for mobile */
  .whatsapp-float:active {
    transform: scale(0.95);
  }

   @media (max-width: 480px) {
    .whatsapp-float {
      padding: 0 15px;
      height: 45px;
    }
    .whatsapp-float span {
      font-size: 14px;
    }
  }}

  .notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    color: white;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.notification.show {
    opacity: 1;
    transform: translateY(0);
}
.notification.success { background: #4CAF50; }
.notification.error { background: #F44336; }
.notification.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.spinner {
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}




/* Mobile placeholder fix (only for screens up to 767px) */
@media (max-width: 767px) {
    input[type="date"] {
        /* Required for the placeholder trick to work */
        position: relative;
        color: transparent; /* Hide default date text */
    }
    
    /* Show our placeholder when empty */
    input[type="date"]:not(:focus):invalid::before {
        content: attr(placeholder);
        color: #95a5a6; /* Your placeholder color */
        position: absolute;
        left: 15px; /* Match your input padding */
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }
    
    /* Show normal text when date is selected */
    input[type="date"]:valid,
    input[type="date"]:focus {
        color: #333; /* Your normal text color */
    }
    
    /* iOS Safari specific fix */
    @supports (-webkit-touch-callout: none) {
        input[type="date"] {
            line-height: 1.2; /* Better vertical alignment */
        }
    }
}







