/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Existing Styles with minor adjustments */
body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #F1D128;
    color: #fff;
}

.btn-primary:hover {
    background-color: #e0c01f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 209, 40, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.flexslider {
    margin: 0;
    border: 0;
    height: 100%;
}

.flexslider .slides,
.flexslider .slides > li {
    height: 100%;
}

.fl-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.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 h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* FlexSlider Indicators */
.flex-control-nav {
    width: 100%;
    position: absolute;
    bottom: 60px; /* Adjusted to be closer to search bar but distinct */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center; /* Fallback */
}

.flex-control-nav li {
    margin: 0 6px;
    display: inline-block;
    zoom: 1;
    display: inline;
}

.flex-control-paging li a {
    width: 15px;
    height: 15px;
    display: block;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    text-indent: -9999px;
    border-radius: 50%;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.flex-control-paging li a:hover {
    background: #fff;
}

.flex-control-paging li a.flex-active {
    background: #F1D128;
    border-color: #fff;
    transform: scale(1.2);
    cursor: default;
}

/* Search Bar */
.search-container-wrapper {
    position: relative;
    margin-top: -50px;
    z-index: 10;
    margin-bottom: 50px;
}

.search-bar-container {
    background: #302a40;
    background-image: url('../assets/landing/images/dark.jpg');
    padding: 48px 36px;
    box-shadow: 0px 0px 3px #fff !important;
    -webkit-box-shadow: 0px 15px 46px -24px rgba(0, 0, 0, 0.41);
    -moz-box-shadow: 0px 15px 46px -24px rgba(0, 0, 0, 0.41);
    box-shadow: 0px 15px 46px -24px rgba(0, 0, 0, 0.41);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-field {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid #999;
    border-radius: 5px;
    padding: 10px 15px;
    background: transparent;
    height: 50px;
}

.search-field i {
    color: #fff;
    margin-right: 10px;
}

.search-field input,
.search-field select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    color: #fff !important;
    background: transparent;
    padding: 5px 0;
}

.search-field input::placeholder {
    color: #ccc;
}

/* Header Styles */
.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.sticky-navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #302a40 !important;
    background-image: url('/zeochat/assets/landing/images/dark.jpg') !important;
    background-repeat: repeat;
    box-shadow: 0px 0px 3px #fff !important;
    padding: 10px 0 !important;
    z-index: 1000 !important;
}

/* Search Input Improvements */
.search-field input[type="date"],
.search-field select {
    color: #fff !important;
    background: transparent;
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Fix for date placeholder/value color in some browsers */
.search-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #302a40;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    padding: 10px 0;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-section-title {
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #F1D128;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.item-icon {
    width: 30px;
    text-align: center;
    margin-right: 15px;
    color: #ccc;
}

.item-details {
    flex: 1;
}

.item-title {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
}

.item-location {
    color: #aaa;
    font-size: 0.85rem;
    margin-top: 2px;
}

.dropdown-no-results {
    padding: 20px;
    text-align: center;
    color: #aaa;
}

.search-field select option {
    background: #302a40;
    color: #fff;
}

.search-field {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px 15px;
}

.search-field i {
    color: #F1D128;
    margin-right: 10px;
}

.search-field input,
.search-field select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    color: #333;
}

/* User Type Section */
.user-type-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.user-type-heading {
    text-align: center;
    margin-bottom: 50px;
}

.user-type-heading h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.user-type-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.type-card {
    flex: 1;
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    transition: transform 0.3s ease;
}



.type-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.type-card:hover .type-card-bg {
    transform: scale(1.02); /* Reduced scale */
}

.type-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    transition: background 0.3s ease;
}

.type-card:hover .type-card-overlay {
    background: rgba(0,0,0,0.3);
}

.type-card-content {
    position: relative;
    z-index: 2;
}

.type-card-content h4 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Services Grid */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    text-align: center;
    padding: 0px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: #F1D128;
    margin-bottom: 20px;
    display: block;
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.events-scroll-container {
    position: relative;
    display: flex;
    align-items: center;
}

.events-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.events-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.event-card {
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.event-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.event-details {
    padding: 20px;
}

.event-price {
    font-weight: 700;
    color: #F1D128;
    font-size: 1.2rem;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.scroll-btn.left {
    left: -20px;
}

.scroll-btn.right {
    right: -20px;
}

/* Counter Section */
.counter-section {
    padding: 80px 0;
    background: #fff;
}

.counter-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: #F1D128;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials-section {
    position: relative;
    padding: 100px 0;
    background-image: url('../assets/landing/images/intro/tour-guide-water.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.testimonials-content {
    position: relative;
    z-index: 2;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .search-bar-container {
        flex-direction: column;
    }
    
    .user-type-cards {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
/* Experiences Carousel */
.zeochat-classes {
    padding: 60px 0;
    background: #f9f9f9;
}

.experience-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

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

.experience-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.experience-details {
    padding: 20px;
    text-align: left;
}

.experience-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.experience-details .sub-text {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.features-list li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.features-list li i {
    color: #333;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.live-info {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.live-dot {
    color: #e74c3c; /* Red dot for LIVE */
    margin-right: 5px;
    font-size: 1.2rem;
    line-height: 1;
}

.live-info .price {
    margin-left: auto;
    font-weight: 700;
    color: #2ecc71; /* Green price */
    font-size: 1.1rem;
}

.time-info {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.time-info a {
    color: #555;
    text-decoration: underline;
}

.guide-info {
    font-size: 0.9rem;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guide-info a {
    color: #777;
    text-decoration: none;
}

.guide-info .link-icon {
    color: #ccc;
}

/* Swiper Customization */
.swiper {
    width: 100%;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.experience-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

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

.experience-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.guide-info {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #F1D128;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: #F1D128;
}


/* Loader Dot Animation */
.loader__dot {
    color: #e74c3c;
    animation: blink 1s step-end infinite;
    -webkit-animation: blink 1s step-end infinite;
    font-weight: bold;
    margin-right: 5px;
}

@keyframes blink {
    50% { opacity: 0; }
}

@-webkit-keyframes blink {
    50% { opacity: 0; }
}

.experience-card {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    width: 100%; /* Ensure full width */
    height: 100%; /* Ensure full height */
    display: flex;
    flex-direction: column;
}

.experience-details {
    padding: 15px 20px;
    text-align: left;
    flex-grow: 1; /* Push footer down */
    display: flex;
    flex-direction: column;
}

.experience-details .guide-info {
    margin-top: auto; /* Push to bottom */
}

.experience-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #333;
}

.experience-details .sub-text {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
}

.features-list li {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.live-info {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
    padding-top: 12px;
    border-top: 1px solid #f5f5f5;
}

.live-info .price {
    margin-left: auto;
    font-weight: 700;
    color: #27ae60;
    font-size: 1.1rem;
}

.time-info {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
}

.guide-info {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.guide-info i {
    margin-right: 5px;
}
/* Services Grid Redesign */
.services-section {
    padding: 60px 0;
    background: #fff;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-item {
    position: relative;
    width: 250px;
    height: 350px;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service-item .checkbox {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    opacity: 0; /* Hidden but clickable */
    z-index: 2;
    cursor: pointer;
}

.service-item .checkmark {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    background-color: rgba(255,255,255,0.3);
    border: 2px solid #fff;
    border-radius: 4px;
    z-index: 1;
    pointer-events: none;
}

.service-item .checkbox:checked + .checkmark {
    background-color: #F1D128;
    border-color: #F1D128;
}

.service-item .checkbox:checked + .checkmark:after {
    content: "";
    position: absolute;
    display: block;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.service-item .desc {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    text-align: center;
    width: 100%;
}

.service-item h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Specific Background Images */
.service-item.tours {
    background-image: url('../assets/landing/images/france1.jpg');
}

.service-item.adventures {
    background-image: url('../assets/landing/images/adventure-sky.jpg');
}

.service-item.shopping {
    background-image: url('../assets/landing/images/shop1.jpg');
}

.service-item.concerts {
    background-image: url('../assets/landing/images/concert-bw.jpg');
}

/* Interest Entry Field */
.interest-entry-container {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #eee;
}

.interest-entry-container .form-control:focus {
    border-color: #F1D128;
    box-shadow: 0 0 0 0.2rem rgba(241, 209, 40, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }
}

/* Responsive Headings */
.section-heading-carousel {
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #333;
}

.section-heading-carousel .icon-library {
    font-size: 30px;
    color: #fff;
    box-shadow: 1px 1px 1px #000;
    text-shadow: 1px 1px 1px #777;
    background: #F1D128;
    padding: 15px;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.section-heading-landing {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .section-heading-carousel {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .section-heading-carousel .icon-library {
        margin-right: 0;
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 10px;
    }

    .section-heading-landing {
        font-size: 1.5rem;
    }
}
