/* Three Lioness Tours & Adventures - Main Stylesheet */

/* CSS Variables */
:root {
    --sunset-orange: #F1661C;
    --dark-brown: #3B1E0D;
    --deep-orange: #E14B15;
    --beige-green: #C4BD86;
    --black: #000000;
    --white: #ffffff;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-brown);
}

/* Navigation Styles */
.navbar-custom {
    background: white !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--dark-brown) !important;
    font-weight: 500;
    padding: 0.8rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--sunset-orange) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--sunset-orange);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
    left: 10%;
}

.navbar-nav .nav-link.active {
    color: var(--sunset-orange) !important;
}

.navbar-toggler {
    border: 1px solid var(--sunset-orange);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(241, 102, 28, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F1661C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mega Menu Styles */
.mega-menu {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 2rem;
    margin-top: 10px;
    min-width: 600px;
}

.mega-menu h3 {
    color: var(--dark-brown);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.mega-menu ul li a {
    color: var(--dark-brown);
    text-decoration: none;
    padding: 0.3rem 0;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.mega-menu ul li a:hover {
    color: var(--sunset-orange);
    padding-left: 10px;
}

.featured-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
}

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

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

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem;
    text-align: center;
}

.featured-btn {
    background: var(--sunset-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.8rem;
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.featured-btn:hover {
    background: var(--deep-orange);
    transform: translateY(-2px);
    color: white;
}

/* Google Translate Styling */
#google_translate_element {
    display: inline-block;
}

#google_translate_element .goog-te-combo {
    background: var(--sunset-orange);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    min-height: 44px;
    outline: none;
}

#google_translate_element .goog-te-combo:hover {
    background: var(--deep-orange);
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

/* CTA Button */
.inquiry-btn {
    background: var(--sunset-orange);
    border: 2px solid var(--sunset-orange);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.inquiry-btn:hover {
    background: transparent;
    color: var(--sunset-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 102, 28, 0.3);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(59, 30, 13, 0.4), rgba(59, 30, 13, 0.6)), 
                url('images/one.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content .highlight {
    color: var(--sunset-orange);
    font-family: 'Dancing Script', cursive;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: white;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Center subtitle on desktop */
@media (min-width: 768px) {
    .hero-content p {
        max-width: 600px;
        text-align: center;
    }
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-hero {
    padding: 1rem 2rem;
    margin: 0.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    min-height: 44px;
}

.btn-primary-hero {
    background: var(--sunset-orange);
    color: white;
    border: 2px solid var(--sunset-orange);
}

.btn-secondary-hero {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-primary-hero:hover {
    background: var(--deep-orange);
    color: white;
}

.btn-secondary-hero:hover {
    background: white;
    color: var(--dark-brown);
}

/* Hero Slideshow Styles */
.hero-slideshow {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

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

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(59, 30, 13, 0.4), rgba(59, 30, 13, 0.6));
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* About Company Section */
.about-company-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}
.about-hero-card {
    background: transparent; /* Change from gradient */
    color: var(--dark-brown); /* Change from white */
    padding: 2rem; /* Reduce from 3rem */
    text-align: center;
}

.about-hero-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.about-feature-card {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--sunset-orange);
}

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

.about-feature-icon {
    width: 80px;
    height: 80px;
    background: var(--sunset-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 0.2rem 0;
}

.gallery-item {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.stats-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.stat-box {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--sunset-orange), var(--deep-orange));
    border-radius: 10px;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.btn-primary-custom {
    background: var(--sunset-orange);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--sunset-orange);
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--sunset-orange);
    transform: translateY(-2px);
}

/* Wildlife Safaris Section */
.safari-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(26, 25, 25, 0.9), rgba(0, 0, 0, 0.8)), url('../images/baloon-luxury-view.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.safari-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(241, 102, 28, 0.1), rgba(225, 75, 21, 0.1));
    z-index: 1;
}

.safari-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--sunset-orange);
    margin: 1rem auto;
    border-radius: 2px;
}

.safari-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

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

.safari-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.safari-card:hover .safari-img-container img {
    transform: scale(1.1);
}

.safari-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--sunset-orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.safari-card-body {
    padding: 1.5rem;
}

.safari-btn {
    background: var(--sunset-orange);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.safari-btn:hover {
    background: var(--deep-orange);
    transform: translateY(-2px);
    color: white;
}

/* Popular Safari Packages */
.safari-packages-list {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}
/* 
.safari-package-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
    min-height: 100px;
} */

.safari-package-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}
/* 
.safari-package-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
} */


/* .safari-package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.safari-package-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.safari-package-content h6 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.safari-package-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.3;
}

.safari-btn-mini {
    background: var(--sunset-orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.safari-btn-mini:hover {
    background: var(--deep-orange);
    color: white;
}

/* Mountain Adventures Section */
.mountain-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.mountain-hero{
    padding: 2rem 0; /* Reduce from 3rem */
    margin-bottom: 1rem; /* Reduce from 4rem */
    /* text-align: center; */
}
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.route-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--sunset-orange);
}

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

.route-header {
    position: relative;
    height: 250px;
}

.route-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-difficulty {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--sunset-orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.route-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem;
}

.route-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.route-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.route-body {
    padding: 1.5rem;
}

.route-stats {
    display: flex;
    justify-content: space-around;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
}

.route-stat {
    text-align: center;
}

.route-stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sunset-orange);
    display: block;
}

.route-stat-label {
    font-size: 0.8rem;
    color: var(--dark-brown);
    margin-top: 0.2rem;
}

.route-features {
    margin: 1rem 0;
}

.route-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.route-feature i {
    color: var(--sunset-orange);
    margin-right: 0.5rem;
    width: 16px;
}

.route-cta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.route-btn-primary {
    background: var(--sunset-orange);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    min-width: 120px;
}

.route-btn-primary:hover {
    background: var(--deep-orange);
    color: white;
    transform: translateY(-2px);
}

.route-btn-secondary {
    background: transparent;
    color: var(--sunset-orange);
    border: 2px solid var(--sunset-orange);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    min-width: 120px;
}

.route-btn-secondary:hover {
    background: var(--sunset-orange);
    color: white;
    transform: translateY(-2px);
}

/* Day Adventures Section */
.day-adventures-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--beige-green), var(--sunset-orange));
    position: relative;
    overflow: hidden;
}

.day-adventures-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('#') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.day-adventures-section .container {
    position: relative;
    z-index: 2;
}

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

.adventure-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--sunset-orange);
}

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

.adventure-header {
    position: relative;
    height: 200px;
}

.adventure-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adventure-icon-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: var(--sunset-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.adventure-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.adventure-body {
    padding: 1.5rem;
}

.adventure-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.adventure-description {
    color: var(--dark-brown);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.adventure-features {
    margin: 1rem 0;
}

.adventure-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-brown);
}

.adventure-feature i {
    color: var(--sunset-orange);
    margin-right: 0.5rem;
    width: 16px;
}

.adventure-cta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.adventure-btn-primary {
    background: var(--sunset-orange);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    min-width: 120px;
}

.adventure-btn-primary:hover {
    background: var(--deep-orange);
    color: white;
    transform: translateY(-2px);
}

.adventure-btn-secondary {
    background: transparent;
    color: var(--sunset-orange);
    border: 2px solid var(--sunset-orange);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    min-width: 80px;
}

.adventure-btn-secondary:hover {
    background: var(--sunset-orange);
    color: white;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--sunset-orange);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--sunset-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

/* WhatsApp and Chat Integration */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

.whatsapp-float i {
    margin-top: 0;
}

/* Our Story Section */
.our-story-section {
    padding: 5rem 0;
    background: var(--dark-brown);
    color: white;
    position: relative;
    overflow: hidden;
}

.our-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.our-story-section .container {
    position: relative;
    z-index: 2;
}

.story-content {
    background: rgba(255,255,255,0.95);
    color: var(--dark-brown);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.story-timeline {
    position: relative;
    padding-left: 2rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--sunset-orange);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--sunset-orange);
    border-radius: 50%;
}

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

.achievement-item {
    text-align: center;
    background: linear-gradient(135deg, var(--sunset-orange), var(--deep-orange));
    padding: 2rem 1rem;
    border-radius: 15px;
    color: white;
    transition: transform 0.3s ease;
}

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

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.team-showcase {
    margin-top: 3rem;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--dark-brown);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--sunset-orange);
    margin-bottom: 1rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--sunset-orange);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--sunset-orange);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--deep-orange);
    transform: translateY(-3px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-item i {
    color: var(--sunset-orange);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-links a {
    margin: 0 0.5rem;
    font-size: 0.9rem;
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Day Adventures Tabbed Style */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #3B1E0D;
    margin-bottom: 1rem;
}

.section-header .lead {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.lead{
    text-align: left;
}
.adventures-compact {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.adventure-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.adventure-tabs::-webkit-scrollbar {
    display: none;
}

.adventure-tab {
    flex: 1;
    min-width: 150px;
    padding: 20px 15px;
    background: transparent;
    border: none;
    color: #6c757d;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    border-bottom: 3px solid transparent;
}

.adventure-tab i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.adventure-tab:hover {
    background: rgba(241, 102, 28, 0.1);
    color: #F1661C;
}

.adventure-tab.active {
    background: white;
    color: #F1661C;
    border-bottom-color: #F1661C;
    transform: translateY(-2px);
}

.adventure-content-wrapper {
    position: relative;
    min-height: 500px;
}

.adventure-item {
    display: none;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.adventure-item.active {
    display: block !important;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.adventure-image-compact {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

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

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

.adventure-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #F1661C, #E14B15);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #3B1E0D;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.adventure-info h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3B1E0D;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.adventure-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.adventure-stats-compact {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #F1661C;
}

.stat-compact {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
}

.stat-compact:last-child {
    margin-bottom: 0;
}

.stat-compact strong {
    color: #3B1E0D;
}

.alert {
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    font-size: 1rem;
    border-left: 4px solid;
}

.alert-info {
    background: rgba(13, 202, 240, 0.1);
    color: #055160;
    border-left-color: #0dcaf0;
}

.alert-success {
    background: rgba(25, 135, 84, 0.1);
    color: #0a3622;
    border-left-color: #198754;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    color: #664d03;
    border-left-color: #ffc107;
}

.alert-primary {
    background: rgba(13, 110, 253, 0.1);
    color: #052c65;
    border-left-color: #0d6efd;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #58151c;
    border-left-color: #dc3545;
}

.adventure-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.btn-primary {
    background: linear-gradient(135deg, #F1661C, #E14B15);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E14B15, #F1661C);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 102, 28, 0.3);
    color: white;
}

.btn-outline-secondary {
    background: transparent;
    border: 2px solid #6c757d;
    color: #6c757d;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    color: white;
    transform: translateY(-2px);
}

.view-all-section {
    background: linear-gradient(135deg, #F1661C, #E14B15);
    color: white;
    padding: 50px 30px;
    margin-top: 50px;
    border-radius: 20px;
    text-align: center;
}

.view-all-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.btn-view-all {
    background: white;
    color: #F1661C;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-view-all:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #F1661C;
}

.trip-stats {
    margin-top: 30px;
}

.stat-badge {
    background: rgba(255,255,255,0.2);
    padding: 15px 20px;
    border-radius: 15px;
    margin: 10px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

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

/* Responsive Design */
@media (max-width: 991px) {
    .mega-menu {
        position: static !important;
        width: 100% !important;
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        border-top: 2px solid var(--sunset-orange);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    #google_translate_element {
        text-align: center;
        margin: 1rem 0;
    }
    
    .inquiry-btn {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .route-cta, .adventure-cta {
        flex-direction: column;
    }

    .route-btn-primary, .route-btn-secondary,
    .adventure-btn-primary, .adventure-btn-secondary {
        flex: none;
        width: 100%;
    }

    .adventure-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 15px 0;
        gap: 5px;
    }
    
    .adventure-tab {
        min-width: 140px;
        max-width: 160px;
        padding: 15px 12px;
        font-size: 0.9rem;
    }
    
    .adventure-item {
        padding: 25px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .btn-hero {
        display: block;
        margin: 0.5rem auto;
        width: 80%;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 15px;
        font-size: 24px;
    }
/* 
    .safari-package-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    } */
/* 
    .safari-package-img {
        margin-right: 0;
        margin-bottom: 1rem;
    } */

    .routes-grid, .adventures-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-gallery {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .adventure-tabs {
        padding: 10px 0;
        gap: 0;
        justify-content: flex-start;
    }
    
    .adventure-tab {
        min-width: 120px;
        max-width: 140px;
        padding: 12px 10px;
        margin: 0 3px;
        border-radius: 25px;
        background: rgba(241, 102, 28, 0.1);
        border: 2px solid transparent;
        flex-shrink: 0;
    }
    
    .adventure-tab.active {
        background: linear-gradient(135deg, #F1661C, #E14B15);
        color: white;
        border-color: #F1661C;
        transform: translateY(0);
    }
    
    .adventure-tab span {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .adventure-tab i {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .adventure-image-compact {
        height: 220px;
        margin-bottom: 20px;
    }
    
    .adventure-info h4 {
        font-size: 1.5rem;
    }
    
    .adventure-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .adventure-stats-compact .row .col-6 {
        margin-bottom: 10px;
    }
    
    .view-all-section {
        margin-top: 40px;
        padding: 35px 25px;
    }
    
    .view-all-section h3 {
        font-size: 1.8rem;
    }
    
    .trip-stats .row {
        justify-content: center;
    }
    
    .stat-badge {
        margin: 5px;
        min-width: 100px;
        padding: 12px 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .safari-section, .mountain-section, .day-adventures-section {
        padding: 3rem 0;
    }

  
    .section-padding {
        padding: 60px 0;
    }
    
    .adventure-item {
        padding: 20px;
    }
    
    .adventure-tab {
        min-width: 100px;
        max-width: 120px;
        padding: 10px 8px;
    }
    
    .adventure-tab span {
        font-size: 0.7rem;
    }
    
    .adventure-tab i {
        font-size: 0.9rem;
    }
    
    .view-all-section {
        padding: 30px 20px;
    }
    
    .view-all-section h3 {
        font-size: 1.6rem;
    }
    
    .btn-view-all {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .trip-stats .col-auto {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .stat-badge {
        width: 90%;
        margin: 5px auto;
    }
}

/* Beach Escapes Section */
.beach-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(59, 30, 13, 0.9), rgba(0, 0, 0, 0.1)), url('../images/zanzibar/zanzibarview1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.beach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1), rgba(30, 144, 255, 0.1));
    z-index: 1;
}

.beach-section .container {
    position: relative;
    z-index: 2;
}

.beach-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

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

.beach-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.beach-card:hover .beach-img-container img {
    transform: scale(1.1);
}

.beach-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--sunset-orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.beach-card-body {
    padding: 1.5rem;
}

.beach-card-body h4 {
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-weight: 700;
}

.beach-card-body p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.beach-features {
    margin: 1rem 0;
}

.beach-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--dark-brown);
}

.beach-feature i {
    color: var(--sunset-orange);
    margin-right: 0.8rem;
    width: 20px;
    font-size: 1rem;
}

.beach-btn {
    background: var(--sunset-orange);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

.beach-btn:hover {
    background: var(--deep-orange);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Responsive Design for Beach Section */
@media (max-width: 768px) {
    .beach-section {
        padding: 3rem 0;
    }
    
    .beach-img-container {
        height: 200px;
    }
    
    .beach-card-body {
        padding: 1rem;
    }
    
    .beach-feature {
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 576px) {
    .beach-features {
        margin: 0.5rem 0;
    }
    
    .beach-feature {
        font-size: 0.85rem;
    }
    
    .beach-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Blog Posts Section */
.blog-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.blog-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border-left: 4px solid var(--sunset-orange);
}

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

.blog-date {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--sunset-orange);
    color: white;
    padding: 0.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
}

.date-day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 2px;
}

.blog-card h5 {
    color: var(--dark-brown);
    margin: 1rem 0;
    font-weight: 600;
    line-height: 1.4;
}

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

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #888;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 0.5rem;
    color: var(--sunset-orange);
}

.blog-link {
    color: var(--sunset-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.blog-link:hover {
    color: var(--deep-orange);
    text-decoration: none;
}

.blog-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--sunset-orange);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.review-stars {
    margin-bottom: 1.5rem;
}

.review-stars i {
    color: #ffc107;
    margin: 0 2px;
    font-size: 1.1rem;
}

.review-card p {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h6 {
    color: var(--dark-brown);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.author-info span {
    color: #888;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-section, .reviews-section {
        padding: 3rem 0;
    }
    
    .blog-card, .review-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .blog-date {
        right: 15px;
        min-width: 50px;
        padding: 0.4rem;
    }
    
    .date-day {
        font-size: 1rem;
    }
    
    .date-month {
        font-size: 0.7rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .review-card::before {
        font-size: 3rem;
        left: 15px;
    }
}

@media (max-width: 576px) {
    .blog-card h5 {
        font-size: 1.1rem;
    }
    
    .review-card p {
        font-size: 0.9rem;
    }
    
    .review-stars i {
        font-size: 1rem;
    }
}
/* Mobile Reviews Slideshow */
.reviews-slideshow {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.reviews-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.reviews-slider {
    position: relative;
    width: 100%;
    height: auto;
}

.review-slide {
    display: none;
    width: 100%;
    padding: 0 15px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
}

.review-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.review-slide .review-card {
    margin: 0;
    height: auto;
    min-height: 300px;
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    background: rgba(241, 102, 28, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slider-btn:hover {
    background: var(--deep-orange);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn i {
    font-size: 0.9rem;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(241, 102, 28, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(241, 102, 28, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--sunset-orange);
    border-color: var(--sunset-orange);
    transform: scale(1.3);
}

/* Touch-friendly interactions */
.reviews-slider {
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Smooth transitions for slide changes */
.review-slide {
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.review-slide.slide-in-right {
    animation-name: slideInRight;
}

.review-slide.slide-in-left {
    animation-name: slideInLeft;
}

.review-slide.slide-out-left {
    animation-name: slideOutLeft;
}

.review-slide.slide-out-right {
    animation-name: slideOutRight;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .review-slide .review-card {
        padding: 1.5rem;
        min-height: 280px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn i {
        font-size: 0.8rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .review-slide .review-card {
        padding: 1.2rem;
        min-height: 260px;
    }
    
    .review-slide .review-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .slider-nav {
        padding: 0 5px;
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
    }
    
    .slider-btn i {
        font-size: 0.7rem;
    }
    
    .slider-dots {
        gap: 6px;
        margin-top: 15px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Hide desktop grid on mobile */
@media (max-width: 767.98px) {
    .reviews-grid {
        display: none !important;
    }
}

/* Hide mobile slideshow on desktop */
@media (min-width: 768px) {
    .reviews-slideshow {
        display: none !important;
    }

    
}
.lead-content {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .lead-content {
        max-width: 100%;
        font-size: 1.15rem;
    }
}







/* SPECIFIC CSS - Only for Popular Safari Packages Section */

/* Base styles - scoped to safari packages list only */
.safari-packages-list .safari-package-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
    min-height: 100px;
    /* Keep horizontal layout on all screen sizes */
    flex-direction: row;
}

.safari-packages-list .safari-package-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

.safari-packages-list .safari-package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.safari-packages-list .safari-package-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.safari-packages-list .safari-package-content h6 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.safari-packages-list .safari-package-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.3;
}

.safari-packages-list .safari-btn-mini {
    background: #F1661C;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: inline-block;
    width: fit-content;
}

.safari-packages-list .safari-btn-mini:hover {
    background: #E14B15;
    color: white;
}

/* Mobile-specific adjustments ONLY for safari packages section */
@media (max-width: 768px) {
    .safari-packages-list .safari-package-item {
        padding: 0.8rem;
        min-height: 90px;
        margin-bottom: 1rem;
        flex-direction: row; /* Ensure horizontal layout */
    }
    
    .safari-packages-list .safari-package-img {
        width: 70px;
        height: 70px;
        margin-right: 0.8rem;
        margin-bottom: 0;
    }
    
    .safari-packages-list .safari-package-content {
        text-align: left;
    }
    
    .safari-packages-list .safari-package-content h6 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .safari-packages-list .safari-package-content p {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    .safari-packages-list .safari-btn-mini {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }
}

@media (max-width: 576px) {
    .safari-packages-list .safari-package-item {
        padding: 0.6rem;
        min-height: 80px;
    }
    
    .safari-packages-list .safari-package-img {
        width: 60px;
        height: 60px;
        margin-right: 0.6rem;
    }
    
    .safari-packages-list .safari-package-content h6 {
        font-size: 0.8rem;
    }
    
    .safari-packages-list .safari-package-content p {
        font-size: 0.7rem;
        /* Limit to 2 lines on very small screens */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .safari-packages-list .safari-btn-mini {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
}




/* day adventure update style */
     /* Day Adventures Styles */
        .section-padding {
            padding: 80px 0;
        }

        .bg-light {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

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

        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--dark-brown);
            margin-bottom: 1rem;
        }

        .section-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--sunset-orange), var(--deep-orange));
            margin: 0 auto 25px;
            border-radius: 2px;
        }

        .section-header .lead {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Adventures Container */
        .adventures-compact {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        /* Adventure Tabs */
        .adventure-tabs {
            display: flex;
            background: #f8f9fa;
            border-bottom: 2px solid #dee2e6;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: thin;
            scrollbar-color: var(--sunset-orange) #f1f1f1;
            scroll-behavior: smooth;
            position: relative;
        }

        .adventure-tabs::-webkit-scrollbar {
            height: 6px;
        }

        .adventure-tabs::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }

        .adventure-tabs::-webkit-scrollbar-thumb {
            background: var(--sunset-orange);
            border-radius: 3px;
        }

        .adventure-tabs::-webkit-scrollbar-thumb:hover {
            background: var(--deep-orange);
        }

        /* Desktop scroll indicators */
        .adventure-tabs-container {
            position: relative;
        }

        .adventure-tabs-container::before,
        .adventure-tabs-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 30px;
            height: 100%;
            pointer-events: none;
            z-index: 10;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .adventure-tabs-container::before {
            left: 0;
            background: linear-gradient(90deg, rgba(248,249,250,0.9), transparent);
        }

        .adventure-tabs-container::after {
            right: 0;
            background: linear-gradient(-90deg, rgba(248,249,250,0.9), transparent);
        }

        .adventure-tabs-container.show-left-indicator::before {
            opacity: 1;
        }

        .adventure-tabs-container.show-right-indicator::after {
            opacity: 1;
        }

        .adventure-tab {
            flex: 0 0 auto;
            min-width: 150px;
            padding: 20px 15px;
            background: transparent;
            border: none;
            color: #6c757d;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            text-align: center;
            border-bottom: 3px solid transparent;
            white-space: nowrap;
        }

        .adventure-tab i {
            font-size: 1.2rem;
            margin-bottom: 4px;
        }

        .adventure-tab:hover {
            background: rgba(241, 102, 28, 0.1);
            color: var(--sunset-orange);
        }

        .adventure-tab.active {
            background: white;
            color: var(--sunset-orange);
            border-bottom-color: var(--sunset-orange);
            transform: translateY(-2px);
        }

        /* Adventure Content */
        .adventure-content-wrapper {
            position: relative;
            min-height: 500px;
        }

        .adventure-item {
            display: none;
            padding: 40px;
            animation: fadeIn 0.5s ease;
        }

        .adventure-item.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Adventure Image */
        .adventure-image-compact {
            position: relative;
            height: 280px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

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

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

        .adventure-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, var(--sunset-orange), var(--deep-orange));
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .price-overlay {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--dark-brown);
            padding: 10px 16px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 1rem;
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Adventure Info */
        .adventure-info h4 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-brown);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .adventure-info p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        /* Adventure Stats */
        .adventure-stats-compact {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--sunset-orange);
        }

        .stat-compact {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 8px;
        }

        .stat-compact:last-child {
            margin-bottom: 0;
        }

        .stat-compact strong {
            color: var(--dark-brown);
        }

        /* Alert Styling */
        .alert {
            border: none;
            border-radius: 12px;
            padding: 15px 20px;
            margin-bottom: 25px;
            font-size: 1rem;
            border-left: 4px solid;
        }

        .alert-info {
            background: rgba(13, 202, 240, 0.1);
            color: #055160;
            border-left-color: #0dcaf0;
        }

        .alert-success {
            background: rgba(25, 135, 84, 0.1);
            color: #0a3622;
            border-left-color: #198754;
        }

        .alert-warning {
            background: rgba(255, 193, 7, 0.1);
            color: #664d03;
            border-left-color: #ffc107;
        }

        .alert-primary {
            background: rgba(13, 110, 253, 0.1);
            color: #052c65;
            border-left-color: #0d6efd;
        }

        .alert-danger {
            background: rgba(220, 53, 69, 0.1);
            color: #58151c;
            border-left-color: #dc3545;
        }

        /* Adventure Actions */
        .adventure-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            min-height: 44px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--sunset-orange), var(--deep-orange));
            border: none;
            color: white;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--deep-orange), var(--sunset-orange));
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(241, 102, 28, 0.3);
            color: white;
        }

        .btn-outline-secondary {
            background: transparent;
            border: 2px solid #6c757d;
            color: #6c757d;
        }

        .btn-outline-secondary:hover {
            background: #6c757d;
            color: white;
            transform: translateY(-2px);
        }

        /* View All Section */
        .view-all-section {
            background: linear-gradient(135deg, var(--sunset-orange), var(--deep-orange));
            color: white;
            padding: 50px 30px;
            margin-top: 50px;
            border-radius: 20px;
            text-align: center;
        }

        .view-all-section h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .btn-view-all {
            background: white;
            color: var(--sunset-orange);
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .btn-view-all:hover {
            background: #f8f9fa;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            color: var(--sunset-orange);
            text-decoration: none;
        }

        .trip-stats {
            margin-top: 30px;
        }

        .stat-badge {
            background: rgba(255,255,255,0.2);
            padding: 15px 20px;
            border-radius: 15px;
            margin: 10px;
            display: inline-block;
            backdrop-filter: blur(10px);
        }

        .stat-number {
            display: block;
            font-size: 1.8rem;
            font-weight: 700;
        }

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

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .adventure-tabs {
                padding: 10px 0;
                gap: 5px;
            }
            
            .adventure-tab {
                min-width: 120px;
                padding: 12px 10px;
                margin: 0 3px;
                border-radius: 25px;
                background: rgba(241, 102, 28, 0.1);
                border: 2px solid transparent;
                flex-shrink: 0;
            }
            
            .adventure-tab.active {
                background: linear-gradient(135deg, var(--sunset-orange), var(--deep-orange));
                color: white;
                border-color: var(--sunset-orange);
                transform: translateY(0);
            }
            
            .adventure-tab span {
                font-size: 0.8rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            .adventure-tab i {
                font-size: 1rem;
                margin-bottom: 2px;
            }
            
            .adventure-image-compact {
                height: 220px;
                margin-bottom: 20px;
            }
            
            .adventure-info h4 {
                font-size: 1.5rem;
            }
            
            .adventure-actions {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .adventure-item {
                padding: 25px;
            }
            
            .view-all-section {
                margin-top: 40px;
                padding: 35px 25px;
            }
            
            .view-all-section h3 {
                font-size: 1.8rem;
            }
            
            .stat-badge {
                margin: 5px;
                min-width: 100px;
                padding: 12px 15px;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .section-padding {
                padding: 60px 0;
            }
            
            .adventure-item {
                padding: 20px;
            }
            
            .adventure-tab {
                min-width: 100px;
                padding: 10px 8px;
            }
            
            .adventure-tab span {
                font-size: 0.7rem;
            }
            
            .adventure-tab i {
                font-size: 0.9rem;
            }
            
            .view-all-section {
                padding: 30px 20px;
            }
            
            .view-all-section h3 {
                font-size: 1.6rem;
            }
            
            .btn-view-all {
                padding: 15px 25px;
                font-size: 1rem;
            }
        }

        /* Loading Animation */
        .loading {
            opacity: 0.5;
            pointer-events: none;
        }

        /* Touch Friendly */
        @media (hover: none) and (pointer: coarse) {
            .adventure-tab:hover {
                background: rgba(241, 102, 28, 0.1);
            }
        }


        /* Small Beach Cards Styles */
.small-section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(45deg, #F1661C, #d4af37);
}

.small-beach-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.small-beach-img {
    position: relative;
    height: 120px;
    overflow: hidden;
}

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

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

.small-beach-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(45deg, #F1661C, #d4af37);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.small-beach-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.small-beach-content h5 {
    color: #3B1E0D;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.small-desc {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 10px;
    line-height: 1.3;
    flex: 1;
}

.small-features {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.small-features span {
    background: rgba(241, 102, 28, 0.1);
    color: #F1661C;
    padding: 3px 6px;
    border-radius: 8px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 3px;
}

.small-features i {
    font-size: 0.7rem;
}

.small-beach-btn {
    background: linear-gradient(45deg, #F1661C, #d4af37);
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.small-beach-btn:hover {
    background: linear-gradient(45deg, #d4af37, #F1661C);
    color: white;
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .small-beach-card {
        margin-bottom: 15px;
    }
    
    .small-beach-content h5 {
        font-size: 0.9rem;
    }
    
    .small-desc {
        font-size: 0.75rem;
    }
    
    .small-beach-btn {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}

@media (max-width: 576px) {
    .small-beach-img {
        height: 100px;
    }
    
    .small-beach-content {
        padding: 12px;
    }
}

/* Full Width Mountain Hero Image Styles */
.full-width-mountain-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 4rem;
    overflow: hidden;
}

.kilimanjaro-full-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.full-width-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.kilimanjaro-full-banner:hover .full-width-img {
    transform: scale(1.02);
}

.mountain-hero-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
}

.hero-badge {
    background: rgba(241, 102, 28, 0.95);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.2);
}

/* Section Title Styles */
.mountain-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #F1661C, #d4af37);
    margin: 0 auto;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kilimanjaro-full-banner {
        height: 250px;
    }
    
    .mountain-section h2 {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 14px;
        padding: 8px 16px;
        top: 20px;
        right: 20px;
    }
    
    .full-width-mountain-hero {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .kilimanjaro-full-banner {
        height: 200px;
    }
    
    .mountain-section h2 {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

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

@media (max-width: 768px) {
    .mountain-section {
        padding: 60px 0;
    }
}

/* Content Styles */
.lead-content {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .lead-content {
        font-size: 1.1rem;
    }
}