/*
Theme Name: Stanley Theme
Theme URI: https://stancreatives.com
Author: stancreatives.com
Author URI: https://stancreatives.com
Description: A professional WordPress theme for safari tour and travel agencies. Features include tour listings, single tour pages, destinations, blog, and booking functionality.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: travel, tourism, tours, safari, booking, responsive, two-columns
Text Domain: stanley-theme
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-right {
    display: flex;
    gap: 25px;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

/* ===== HEADER SECTION - FIXED VERSION ===== */
header {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo-img {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #8B0000;
}

.logo-tagline {
    font-size: 12px;
    color: #666;
}

/* Navigation */
#mainNav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex !important;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
    padding: 10px 0;
    display: block;
}

nav a:hover {
    color: #DC143C;
}

/* Dropdown Menu Styles - FIXED */
nav ul li ul.sub-menu {
    display: none !important;
    position: absolute !important;
    left: 0 !important;
    top: 100% !important;
    background: white !important;
    padding: 10px 0 !important;
    margin: 5px 0 0 0 !important;
    list-style: none !important;
    min-width: 200px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    border-radius: 5px !important;
    z-index: 1000 !important;
    flex-direction: column !important;
    gap: 0 !important;
}

nav ul li:hover > ul.sub-menu {
    display: block !important;
}

nav ul li ul.sub-menu li {
    width: 100%;
    padding: 0;
}

nav ul li ul.sub-menu li a {
    display: block !important;
    padding: 10px 20px !important;
    color: #333 !important;
    white-space: nowrap !important;
}

nav ul li ul.sub-menu li a:hover {
    background-color: #f8f8f8 !important;
    color: #8B0000 !important;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: #333;
}

.dropdown-content a:hover {
    background: #f1f1f1;
    color: #DC143C;
}

/* CTA Buttons Container - WISHLIST FIRST, ENQUIRE SECOND */
.cta-buttons {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
}

/* Wishlist Heart Styling - MUST APPEAR FIRST */
.wishlist-heart {
    font-size: 24px !important;
    text-decoration: none !important;
    color: #c00 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 3px !important;
    transition: transform 0.2s ease, color 0.2s ease;
    white-space: nowrap !important;
    order: -1 !important;
}

.wishlist-heart:hover {
    color: #ff4b4b;
    transform: scale(1.1);
}

#favCount {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Enquire Button Styling - MUST APPEAR SECOND */
.enquire-btn {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%) !important;
    color: white !important;
    padding: 12px 25px !important;
    border: none !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    font-weight: bold !important;
    transition: transform 0.3s, background 0.3s;
    white-space: nowrap !important;
    font-size: 14px !important;
    order: 1 !important;
}

.enquire-btn:hover {
    transform: translateY(-2px);
    background: #e55a28 !important;
}

.wishlist {
    color: #DC143C;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero {
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Content Sections */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #8B0000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.feature-content {
    padding: 25px;
}

.feature-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.feature-content p {
    color: #666;
    line-height: 1.8;
}

.price-tag {
    background: #DC143C;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
}

/* Tours Page Styles */
.tours-hero {
    height: 350px;
}

.tours-hero .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 2px;
}

.tours-hero .hero-content p {
    font-size: 18px;
    font-weight: 300;
}

.tours-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    align-items: flex-start;
}

.sidebar-filter {
    width: 350px;
    background: linear-gradient(135deg, #8B0000 0%, #A00000 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    flex-shrink: 0;
}

.sidebar-filter h3 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.filter-group select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background: white;
    color: #333;
}

.filter-btn {
    width: 100%;
    padding: 14px;
    background: white;
    color: #8B0000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 15px;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.filter-btn:hover {
    background: #f0f0f0;
}

.reset-btn {
    background: #FF8C42;
    color: white;
}

.reset-btn:hover {
    background: #FF7830;
}

.tours-grid-container {
    flex: 1;
    min-width: 0;
}

.sort-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 25px;
}

.sort-bar select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.tour-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.tour-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    position: relative;
    display: block;
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #DC143C;
    color: white;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.tour-card .wishlist-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #DC143C;
    font-size: 18px;
    z-index: 2;
}

.tour-card-content {
    padding: 20px;
}

.tour-card-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
    min-height: 50px;
}

.tour-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-rating {
    color: #FFB800;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.tour-price {
    font-size: 20px;
    color: #DC143C;
    font-weight: bold;
}

.view-details-btn {
    background: #8B0000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.view-details-btn:hover {
    background: #A00000;
}

/* Single Tour Detail Page */
.tour-detail-hero {
    height: 550px;
    position: relative;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: white;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.tour-detail-hero .hero-content {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tour-detail-hero .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    max-width: 800px;
}

.tour-meta-hero {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 16px;
}

.tour-detail-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: -80px auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.tour-main-content {
    flex: 1;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.tour-image-main {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.tour-content-section {
    padding: 40px;
}

.tour-content-section h2 {
    color: #8B0000;
    font-size: 24px;
    margin-bottom: 20px;
}

.tour-quick-info {
    display: flex;
    gap: 30px;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.tour-quick-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.tour-description {
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.tour-highlights {
    margin: 30px 0;
}

.tour-highlights h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.tour-highlights ul {
    list-style: none;
    padding-left: 0;
}

.tour-highlights ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.tour-highlights ul li:before {
    content: "•";
    position: absolute;
    left: 10px;
    font-weight: bold;
}

.tab-buttons {
    display: flex;
    gap: 0;
    margin-bottom: 25px;
}

.tab-btn {
    padding: 12px 30px;
    background: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    transition: all 0.3s;
}

.tab-btn.active {
    background: #8B0000;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content ul {
    list-style: none;
    padding: 0;
}

.tab-content ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.tab-content ul li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #8B0000;
}

.itinerary-section {
    margin: 40px 0;
}

.itinerary-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.itinerary-header {
    background: white;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: #8B0000;
    transition: background 0.3s;
}

.itinerary-header:hover {
    background: #f9f9f9;
}

.itinerary-icon {
    width: 30px;
    height: 30px;
    background: #8B0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.itinerary-content {
    padding: 20px;
    background: white;
    line-height: 1.8;
    display: none;
}

.itinerary-content.active {
    display: block;
}

.gallery-section {
    margin: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.reviews-section {
    margin: 40px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.write-review-btn {
    background: none;
    border: none;
    color: #8B0000;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
}

.tour-detail-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.sidebar-widget {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.favorite-btn {
    width: 100%;
    background: #8B0000;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 20px;
}

.favorite-btn:hover {
    background: #A00000;
}

.share-section h3 {
    color: #8B0000;
    font-size: 18px;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    background: #8B0000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.whatsapp-section {
    text-align: center;
    padding: 20px 0;
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.company-details {
    padding: 20px 0;
}

.company-details h3 {
    color: #8B0000;
    font-size: 18px;
    margin-bottom: 20px;
}

.company-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.company-icon {
    width: 35px;
    height: 35px;
    background: #8B0000;
    color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-section {
    padding: 25px 0;
}

.booking-section h3 {
    color: #8B0000;
    font-size: 18px;
    margin-bottom: 10px;
}

.booking-price {
    font-size: 24px;
    color: #8B0000;
    font-weight: bold;
    margin-bottom: 20px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.book-now-btn {
    background: #8B0000;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
}

.book-now-btn:hover {
    background: #A00000;
}

.similar-tours-section {
    background: white;
    padding: 60px 20px;
}

.similar-tours-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.similar-tours-header h2 {
    color: #8B0000;
    font-size: 28px;
}

.slider-arrows {
    display: flex;
    gap: 10px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    background: #8B0000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.slider-arrow:hover {
    background: #A00000;
}

.similar-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #FF8C42;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-section a:hover {
    color: #DC143C;
}

.contact-info {
    margin-bottom: 15px;
}

.contact-info strong {
    display: block;
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
    font-size: 20px;
}

.social-icon:hover {
    transform: scale(1.1);
}

.facebook { background: #3b5998; }
.instagram { background: #E1306C; }
.twitter { background: #1DA1F2; }
.linkedin { background: #0077b5; }
.tiktok { background: #000; }

.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.payment-logo {
    background: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
}

.visa { color: #1A1F71; }
.mastercard { color: #EB001B; }
.amex { color: #006FCF; }
.mpesa { color: #00A651; }
.equity { color: #D32F2F; }
.coop { color: #FF6F00; }
.airtel { color: #ED1C24; }

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    color: #666;
}

.copyright a {
    color: #DC143C;
    text-decoration: none;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination ul {
    display: flex;
    gap: 10px;
    list-style: none;
}

.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
}

.pagination a:hover,
.pagination .current {
    background: #DC143C;
    color: white;
    border-color: #DC143C;
}

/* ===== Hero Slider Section ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 10;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 400;
}

.search-box {
    display: inline-block;
    background: white;
    padding: 15px;
    border-radius: 10px;
}

.search-box form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-box select {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    color: #555;
}

.search-box button {
    padding: 10px 25px;
    background: black;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #8B0000;
}

/* ===== Seasonal Packages Section ===== */
.seasonal-packages {
  background-color: #fff3f3;
  padding: 100px 0;
}

.seasonal-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #FF0033;
  text-align: center;
  margin-bottom: 60px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #f1f1f1;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.card-content {
  padding: 30px 25px;
}

.card-content h3 {
  font-family: 'Playfair Display', serif;
  color: #FF0033;
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.card-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.card-content a {
  display: inline-block;
  background: #FF0033;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(255, 0, 51, 0.3);
  transition: background 0.3s;
}

.card-content a:hover {
  background: #e0002e;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

/* ===== Big 5 Safari Packages Section ===== */
.big5-section {
  background: #fff3f3;
  padding: 100px 0;
}

.big5-header h2 {
  font-family: 'Playfair Display', serif;
  color: #FF0033;
  font-size: 2rem;
}

.big5-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.big5-slider {
  display: flex;
  gap: 25px;
  transition: transform 0.6s ease;
}

.big5-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  min-width: 350px;
  max-width: 350px;
  flex: 0 0 auto;
  overflow: hidden;
  transition: transform 0.3s;
}

.big5-thumb {
  position: relative;
}

.big5-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.featured-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #FF0033;
  color: #fff;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 4px;
}

.heart-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  color: #FF0033;
  padding: 4px 8px;
  border-radius: 50%;
  font-size: 14px;
}

.big5-info {
  padding: 20px;
}

.big5-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.big5-info p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.big5-info .price {
  color: #000;
  font-weight: 600;
  margin-top: 10px;
}

.big5-info a {
  display: inline-block;
  margin-top: 12px;
  background: #FF0033;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.big5-info a:hover {
  background: #e0002e;
}

.big5-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #FF0033;
  border: none;
  color: #fff;
  font-size: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.big5-btn:hover {
  background: #d0002a;
}

.big5-btn.prev { left: -60px; }
.big5-btn.next { right: -60px; }

/* ===== Top Destinations Section ===== */
.top-destinations {
  background: #fff3f3;
  padding: 100px 0;
}

.top-destinations .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.dest-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #FF0033;
  margin-bottom: 10px;
}

.dest-sub {
  color: #444;
  max-width: 750px;
  margin: 0 auto 60px;
  line-height: 1.7;
  font-size: 1rem;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.dest-card {
  position: relative;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.dest-card:hover {
  transform: scale(1.03);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 25px;
  transition: background 0.3s ease;
}

.dest-card:hover .dest-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.dest-overlay h3 {
  font-size: 1.6rem;
  color: #fff;
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.dest-overlay a {
  background: #ff6600;
  color: #fff;
  padding: 9px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.dest-overlay a:hover {
  background: #e25500;
}

/* ===== Excursions & Day Trips ===== */
.excursions-section {
  position: relative;
  background: #fff;
}

.excursion-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.excursion-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.excursion-card {
  flex: 0 0 350px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.excursion-card:hover {
  transform: translateY(-6px);
}

.excursion-thumb {
  position: relative;
}

.excursion-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.heart {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  color: #FF0033;
  padding: 4px 8px;
  border-radius: 50%;
  font-size: 14px;
}

.excursion-info {
  padding: 20px;
  text-align: left;
}

.excursion-info h3 {
  font-size: 1.05rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 10px;
}

.excursion-info .location,
.excursion-info .details {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.excursion-info .price {
  color: #000;
  font-weight: 600;
  margin-top: 10px;
}

.details-btn {
  display: inline-block;
  background: #FF0033;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  transition: background 0.3s;
}

.details-btn:hover {
  background: #cc0029;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FF0033;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: #cc0029;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  background: linear-gradient(180deg, #1c1b1b, #000);
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.testimonials-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.testimonials-sub {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 50px;
}

.testimonials-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  will-change: transform;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  flex: 0 0 350px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonial-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.testimonial-header .stars {
  color: #FFB300;
  font-size: 0.9rem;
}

.testimonial-text {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.testimonial-author {
  color: #FF0033;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== Latest Articles Section ===== */
.latest-articles .article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}
.latest-articles .article-card h3 a:hover {
  color: #cc002b;
}

.why-choose-us .choose-card:hover {
  transform: translateY(-6px);
  background: #2b2b2b;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* === Contact Page Styling === */
.contact-header {
  background-color: #0a0d1c;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}
.contact-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}
.contact-header .underline {
  width: 60px;
  height: 3px;
  background: #FF0033;
  margin: 10px auto;
}
.contact-header .intro-text {
  color: #ddd;
  font-size: 1rem;
}

.contact-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin: 60px auto;
  align-items: flex-start;
}
.contact-left {
  flex: 1 1 60%;
}
.contact-right {
  flex: 1 1 35%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px;
  border-radius: 10px;
}
.contact-right h3 {
  color: #FF0033;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}
.contact-right hr {
  border: none;
  height: 2px;
  background: #FF0033;
  width: 60px;
  margin-bottom: 25px;
}
.hours-list div {
  margin-bottom: 20px;
  color: #333;
}
.hours-list i {
  color: #FF0033;
  margin-right: 8px;
}

.image-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}
.image-box {
  flex: 1 1 50%;
  overflow: hidden;
  border-radius: 10px;
}
.image-box img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s ease;
}
.image-box img:hover {
  transform: scale(1.05);
}

.form-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin: 80px auto;
}
.contact-form-area, .contact-details {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.contact-form-area h3, .contact-details h3 {
  color: #FF0033;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}
.contact-form-area hr, .contact-details hr {
  border: none;
  height: 2px;
  background: #FF0033;
  width: 60px;
  margin-bottom: 25px;
}

.submit-btn {
  background: #FF0033;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px 30px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #d9002c;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.info-item i {
  color: #FF0033;
  font-size: 1.2rem;
  margin-top: 5px;
}
.info-item h4 {
  color: #222;
  margin-bottom: 5px;
  font-weight: 600;
}
.info-item p {
  color: #555;
  line-height: 1.5;
}
.social-section h4 {
  color: #222;
  margin-top: 25px;
}
.social-icons a {
  margin: 0 10px;
  color: #FF0033;
  font-size: 1.1rem;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #d9002c;
}

.map-footer-section {
  margin: 80px auto;
}
.map-footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}
.map-area {
  flex: 1 1 50%;
}
.map-area iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.footer-note {
  flex: 1 1 50%;
  background: #fff3f3;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-note p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* === SINGLE TOUR PAGE - SIMILAR TOURS SLIDER === */
.single-tour .similar-tours-section {
  background: #fff;
  padding: 60px 20px;
  overflow: hidden;
}

.single-tour .slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: #fff;
  padding: 20px 0;
}

.single-tour .slider-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 20px;
  animation: singleScroll 60s linear infinite;
  width: max-content;
}

.single-tour .slide-card {
  flex: 0 0 auto !important;
  width: 280px !important;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.single-tour .slide-card:hover {
  transform: scale(1.05);
}

.single-tour .slide-thumb {
  width: 100% !important;
  height: 180px !important;
  object-fit: cover !important;
  display: block !important;
}

.single-tour .slide-title {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
  color: #222;
  padding: 0 10px;
}

.single-tour .slide-btn {
  display: inline-block;
  color: #8B0000;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 15px;
}

@keyframes singleScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.single-tour .slider-wrapper:hover .slider-track {
  animation-play-state: paused;
}

/* ===== TOUR REVIEWS STYLING ===== */
.tour-reviews-section {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.reviews-title {
  color: #8B0000;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.no-reviews {
  color: #555;
  margin-bottom: 10px;
}

.review-form-wrapper {
  margin-top: 20px;
  animation: fadeIn 0.4s ease-in-out;
  overflow: hidden;
}

.comment-form-rating {
  margin-top: 15px;
}

.comment-form-rating label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.comment-form-rating .stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.comment-form-rating input[type="radio"] {
  display: none;
}

.comment-form-rating input[type="radio"] + span,
.comment-form-rating .stars label {
  cursor: pointer;
}

.comment-form-rating .stars input + label:before {
  content: "★";
  font-size: 22px;
  color: #ccc;
  margin-right: 5px;
  transition: color 0.3s ease;
}

.comment-form-rating .stars input:checked ~ label:before,
.comment-form-rating .stars label:hover ~ label:before,
.comment-form-rating .stars label:hover:before {
  color: #FFD700;
}

.submit-review-btn {
  background: #8B0000;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-review-btn:hover {
  background: #A00000;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== Quick Enquiry Widget ====== */
.enquiry-widget {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  margin-top: 25px;
  transition: all 0.3s ease;
}

.enquiry-widget:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.enquiry-widget .enquiry-title {
  font-size: 20px;
  font-weight: 700;
  color: #8B0000;
  margin-bottom: 15px;
  text-align: left;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 8px;
}

.quick-enquiry-form {
  display: flex;
  flex-direction: column;
}

.quick-enquiry-form input,
.quick-enquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  background-color: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quick-enquiry-form input:focus,
.quick-enquiry-form textarea:focus {
  border-color: #a94442;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(139,0,0,0.15);
  outline: none;
}

.enquiry-inline {
  display: flex;
  gap: 10px;
}

.quick-enquiry-form textarea {
  resize: vertical;
  min-height: 90px;
}

.about-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
  color: #fff;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
}
.hero-subtitle {
  font-size: 20px;
  color: #f4f4f4;
  margin-top: 10px;
}

/* Price Slider Styling */
.price-filter-container {
    margin-top: 10px;
}

.package-cost-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.price-slider-wrapper {
    margin: 20px 0;
}

.price-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #fff 0%, #fff 100%);
    outline: none;
    border-radius: 3px;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #8B0000;
}

.price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #8B0000;
}

.price-range-display {
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
    font-weight: 500;
}

#priceValue {
    font-weight: 600;
}

/* Tour Meta Section - Minty Green Background */
.tour-card .tour-meta {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    background-color: #98D8C8;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.tour-card .tour-meta-item {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0;
    white-space: nowrap;
}

.tour-card .tour-meta-item.tour-rating {
    display: inline-block !important;
}

.tour-meta span {
    display: inline-block !important;
}

/* INLINE META WITH MINTY GREEN BACKGROUND */
.tour-card-meta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background-color: #98D8C8;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.meta-item-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #333;
}

.meta-item-inline.rating {
    color: #FF9500;
    font-weight: bold;
}

.meta-icon {
    font-size: 14px;
}

.star-icon {
    color: #FF9500;
}

.location-icon {
    color: #FF0000;
    font-size: 14px;
}

.tour-content-image-section {
    max-width: 1200px;
    margin: -50px auto 40px auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.tour-content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: block;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-detail-container {
        flex-direction: column;
    }
    
    .tour-detail-sidebar {
        width: 100%;
    }
    
    .similar-tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    
    .big5-card {
        min-width: 300px;
    }
    .big5-btn.prev { left: 10px; }
    .big5-btn.next { right: 10px; }
    
    .dest-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .excursion-card {
        flex: 0 0 300px;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 900px) {
    .contact-top,
    .form-info-grid,
    .map-footer-grid {
        flex-direction: column;
    }
    
    .contact-right,
    .contact-form-area,
    .contact-details,
    .map-area,
    .footer-note {
        width: 100%;
    }
    
    .image-row {
        flex-direction: column;
    }
    
    .image-box img {
        height: 250px;
    }
    
    .map-area iframe {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        order: 2;
    }
    
    .logo {
        order: 1;
    }
    
    nav,
    #mainNav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        order: 4;
        width: 100%;
        z-index: 999;
    }
    
    nav.mobile-active,
    #mainNav.active {
        display: block !important;
    }
    
    nav.mobile-active ul,
    #mainNav ul,
    #mainNav.active ul {
        flex-direction: column !important;
        padding: 20px;
        gap: 5px !important;
        align-items: flex-start !important;
    }
    
    nav ul li,
    #mainNav ul li {
        width: 100%;
    }
    
    nav ul li ul.sub-menu,
    #mainNav ul li ul.sub-menu {
        position: static !important;
        box-shadow: none !important;
        padding-left: 20px !important;
        margin-top: 5px !important;
        background: #f8f8f8 !important;
    }
    
    nav ul li ul.sub-menu li a,
    #mainNav ul li ul.sub-menu li a {
        padding: 8px 15px !important;
    }
    
    .cta-buttons {
        order: 3;
        margin-left: auto;
    }
    
    .header-content {
        flex-wrap: wrap;
        position: relative;
    }
    
    .tours-container {
        flex-direction: column;
    }
    
    .sidebar-filter {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .tours-hero .hero-content h1 {
        font-size: 48px;
    }
    
    .tour-detail-hero .hero-content h1 {
        font-size: 32px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .similar-tours-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tour-content-section {
        padding: 25px;
    }
    
    .seasonal-packages {
        padding: 60px 20px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .dest-card {
        height: 220px;
    }
    
    .big5-card {
        min-width: 260px;
    }
    
    .big5-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .excursion-card {
        flex: 0 0 85%;
    }
    
    .slider-btn {
        display: none;
    }
    
    .testimonial-card {
        flex: 0 0 85%;
    }
    
    .single-tour .slide-card {
        width: 220px !important;
    }
    
    .enquiry-inline {
        flex-direction: column;
    }
    
    .enquiry-widget {
        padding: 20px 15px;
    }
    
    .book-now-btn {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 10px 15px;
    }
    
    .wishlist-heart {
        font-size: 20px !important;
    }
    
    .enquire-btn {
        padding: 8px 15px !important;
        font-size: 13px !important;
    }
    
    #favCount {
        font-size: 12px;
    }
    
    .hero-text h1 {
        font-size: 48px;
    }
    
    .single-tour .slide-card {
        width: 180px !important;
    }
}


/* ========================================
   MULTILINGUAL LANGUAGE SWITCHER STYLES
   Added to match your red theme design
   ======================================== */

/* Language Switcher Container */
.language-switcher-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Language Switcher Button */
.lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 1);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #000 !important;
    font-size: 13px;
}

.lang-switcher-btn:hover {
    background: rgba(229, 90, 40, 1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* Current Flag */
.current-flag {
    font-size: 16px;
    line-height: 1;
}

/* Current Language Name */
.current-lang-name {
    font-size: 13px;
    font-weight: 600;
    color: #000 !important;
}

/* Arrow */
.lang-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    color: #000 !important;
}

/* Dropdown Container */
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 99999;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Language Option */
.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 14px;
}

.lang-option:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.lang-option:first-child {
    border-radius: 12px 12px 0 0;
}

.lang-option:hover {
    background: #f8f9fa;
    padding-left: 22px;
}

.lang-option.selected {
    background: linear-gradient(135deg, #ffe8ec 0%, #fff0f3 100%);
    color: #c1272d; /* Your red theme color */
    font-weight: 600;
    border-left: 4px solid #c1272d;
}

.lang-option.selected:hover {
    background: linear-gradient(135deg, #ffd6de 0%, #ffe0e8 100%);
}

/* Flag in dropdown */
.lang-flag {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

/* Language name in dropdown */
.lang-name {
    flex: 1;
    font-weight: 500;
}

/* Scrollbar for dropdown */
.lang-dropdown::-webkit-scrollbar {
    width: 6px;
}

.lang-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 12px 12px 0;
}

.lang-dropdown::-webkit-scrollbar-thumb {
    background: #c1272d; /* Your red theme color */
    border-radius: 3px;
}

.lang-dropdown::-webkit-scrollbar-thumb:hover {
    background: #a02127;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .lang-switcher-btn {
        padding: 3px 8px;
        gap: 5px;
    }
    
    .current-lang-name {
        font-size: 12px;
    }
    
    .current-flag {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Make sure language switcher is visible on mobile */
    .language-switcher-wrapper {
        margin-left: 8px;
    }
    
    .lang-switcher-btn {
        padding: 4px 8px;
    }
    
    .current-lang-name {
        display: inline; /* Show language code on mobile */
    }
    
    /* Center dropdown on small screens */
    .lang-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        min-width: 200px;
    }
    
    .lang-option {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Very Small Mobile */
@media (max-width: 480px) {
    .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .language-switcher-wrapper {
        order: 10; /* Put language switcher at the end on very small screens */
        margin-top: 5px;
    }
    
    .lang-dropdown {
        min-width: 180px;
    }
}

/* Print - Hide Language Switcher */
@media print {
    .language-switcher-wrapper {
        display: none !important;
    }
}