/* Base Styles */
:root {
    --primary: #1a75bc;
    --secondary: #f39c12;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --accent: #27ae60;
    --dark-blue: #0a2540;
    --bg-color: #f8f9fa;
    --text-color: #333;
    --card-bg: #ffffff;
    --header-bg: #ffffff;
    --footer-bg: #2c3e50;
    --footer-text: #bbb;
    --border-color: #ddd;
}

.dark-mode {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --card-bg: #1e1e1e;
    --header-bg: #1e1e1e;
    --footer-bg: #0a0a0a;
    --footer-text: #aaa;
    --border-color: #444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
    padding-top: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: var(--dark);
    font-size: 2.5rem;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary);
}

.section-title p {
    color: #777;
    max-width: 700px;
    margin: 15px auto 0;
}

/* Skip to main content for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    z-index: 10000;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* Header Styles */
.topbar {
    background-color: var(--dark);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.topbar a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.topbar a:hover {
    color: var(--secondary);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.topbar-contact span {
    white-space: nowrap;
}

.topbar-social {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: var(--primary);
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar.sticky {
    position: fixed;
    background-color: var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    top: 0;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: white;
    text-decoration: none;
}

.navbar.sticky .navbar-brand {
    color: white;
}

.navbar-brand span {
    color: var(--secondary);
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link.has-dropdown::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 14px;
}

.navbar.sticky .navbar-nav .nav-link {
    color: white;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary);
    padding-left: 25px;
}

/* Search Button Styles */
.nav-search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.search-toggle {
    background: var(--secondary);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.search-toggle:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 15px;
    display: none;
    z-index: 1001;
    border: 1px solid var(--border-color);
}

.search-box.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--bg-color);
    color: var(--text-color);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 117, 188, 0.1);
}

.search-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: #777;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
}

.search-close:hover {
    color: var(--primary);
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 10px;
    border-radius: 6px;
    background: var(--bg-color);
    display: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--primary);
    color: white;
}

.search-result-item:hover .search-result-category {
    background: rgba(255,255,255,0.2);
    color: white;
}

.search-result-category {
    background: var(--primary);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.search-result-content h4 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
}

.search-result-content p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.8;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #777;
}

/* Floating Search Button for Mobile */
.search-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 160px;
    right: 25px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 20px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.search-float:hover {
    background-color: #e67e22;
    transform: scale(1.1);
}

/* Search Modal for Mobile */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    background: var(--card-bg);
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.search-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #777;
    font-size: 20px;
    cursor: pointer;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    color: var(--secondary);
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    color: white;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.animated-text {
    color: var(--secondary);
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.animated-text::after {
    content: "|";
    position: absolute;
    right: -10px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Hero slider navigation */
.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.hero-nav-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-nav-item.active {
    background: white;
    transform: scale(1.2);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #1565a3;
    border-color: #1565a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-outline-primary {
    color: white;
    border: 2px solid white;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: transparent;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
}

.btn-outline-primary:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Popular Tours Carousel Styles */
.popular-tours-section {
    background-color: var(--card-bg);
}

.tours-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.tours-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.tours-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.tour-card {
    flex: 0 0 calc(33.333% - 14px);
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 360px;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tour-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.tour-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-content h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tour-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
    flex-grow: 1;
}

.tour-content .btn {
    align-self: flex-start;
    background-color: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tour-content .btn:hover {
    background-color: #1565a3;
}

.tours-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.tours-arrow {
    background: var(--primary);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tours-arrow:hover {
    background: #1565a3;
    transform: scale(1.05);
}

.tours-dots {
    display: flex;
    gap: 10px;
}

.tours-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tours-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Experiences Section */
.experiences-section {
    background-color: var(--bg-color);
    padding: 80px 0;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.experience-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.experience-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.experience-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.experience-content h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.experience-content p {
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.6;
}

.experience-content .btn {
    align-self: flex-start;
    background-color: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.experience-content .btn:hover {
    background-color: #1565a3;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--dark-blue);
    color: white;
    padding: 80px 0;
    position: relative;
}

.testimonials-section .section-title h2 {
    color: white;
}

.testimonials-section .section-title h2:after {
    background-color: var(--secondary);
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 10px;
    padding: 25px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.stars {
    color: #00b67a; /* Trustpilot green */
    font-size: 0.9rem;
}

.verified-badge {
    background: #00b67a;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
}

.testimonial-headline {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1rem;
}

.testimonial-headline a {
    color: var(--dark);
    text-decoration: none;
}

.testimonial-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #777;
}

.testimonial-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
}

.testimonial-link:hover {
    text-decoration: underline;
}

/* Testimonials Navigation */
.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.testimonials-arrow {
    background: var(--primary);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    pointer-events: all;
}

.testimonials-arrow:hover {
    background: #1565a3;
    transform: scale(1.05);
}

.testimonials-arrow:focus {
    outline: 2px solid var(--secondary);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonials-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.testimonials-footer {
    text-align: center;
    margin-top: 40px;
}

/* Features */
.features-section {
    background-color: var(--bg-color);
    padding: 80px 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4 {
    width: 33.333%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: var(--card-bg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.feature-box:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    height: 80px;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(26, 117, 188, 0.1);
}

.feature-box h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('testimony.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    flex: 0 0 calc(25% - 30px);
    min-width: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
    display: block;
}

.stat-text {
    font-size: 1.1rem;
}

/* Trusted Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.partner-logo {
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('missions.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    color: white;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Planning Section */
.planning-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.planning-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.planning-features {
    flex: 1;
    min-width: 300px;
}

.planning-form {
    flex: 1;
    min-width: 300px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--dark);
    margin-bottom: 5px;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--card-bg);
    color: var(--text-color);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(26, 117, 188, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.guarantee-badge {
    background: var(--accent);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 60px 0 0;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    color: white;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    background-color: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.copyright-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.scroll-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 85px;
    right: 25px;
    background-color: var(--primary);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 20px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #1565a3;
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .tour-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .col-md-4 {
        width: 50%;
    }
    
    /* Navbar for tablets */
    .navbar-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .navbar-nav.active {
        display: flex;
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-search-container {
        display: none;
    }
    
    .search-float {
        display: flex;
    }
    
    .search-box {
        width: 300px;
    }
    
    .topbar-contact {
        justify-content: center;
    }
    
    /* Dropdown menu for mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        display: none;
        padding-left: 20px;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-item {
        color: white;
        padding: 8px 0;
    }
    
    .dropdown-item:hover {
        background-color: transparent;
        color: var(--secondary);
        padding-left: 5px;
    }
    
    .nav-link.has-dropdown::after {
        content: '\f107';
    }
    
    .nav-link.has-dropdown.open::after {
        content: '\f106';
    }
    
    .stat-box {
        flex: 0 0 calc(50% - 30px);
    }
    
    .partner-logo {
        max-width: 120px;
    }
    
    .experiences-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .topbar-inner {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .tour-card {
        flex: 0 0 100%;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .testimonials-container {
        padding: 0 40px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .col-md-4 {
        width: 100%;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .stat-box {
        flex: 0 0 calc(100% - 30px);
    }
    
    /* Topbar mobile adjustments */
    .topbar-contact {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .topbar-contact span {
        display: block;
        margin-bottom: 5px;
    }
    
    .mission-content h2 {
        font-size: 2rem;
    }
    
    .partner-logo {
        max-width: 100px;
    }
    
    .planning-container {
        flex-direction: column;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .search-box {
        width: 280px;
        right: -50px;
    }
    
    .copyright-inner {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .testimonials-container {
        padding: 0 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-outline-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Stats section mobile adjustments */
    .stats-section {
        padding: 60px 0;
    }
    
    .stat-box {
        padding: 20px 15px;
    }
    
    .partner-logo {
        max-width: 80px;
    }
    
    .mission-content h2 {
        font-size: 1.8rem;
    }
    
    .mission-content p {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 75px;
        right: 20px;
    }
    
    .search-float {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 140px;
    }
    
    .search-modal-content {
        width: 95%;
        padding: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}