/*
Theme Name: AntalyaTours
Theme URI: https://example.com/antalyatours
Author: Hostinger AI
Author URI: https://example.com
Description: A modern, user-friendly tour sales theme for Antalya.
Version: 2.0 PRO
Text Domain: antalyatours
*/

:root {
    --primary: #00AA6C;
    --primary-dark: #008F5A;
    --secondary: #0077B6;
    --dark: #1F2937;
    --light: #F9FAFB;
    --white: #FFFFFF;
    --grey: #9CA3AF;
    --border: #E5E7EB;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --radius: 16px;
    --container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    padding-top: 80px;
    /* Fixed Header Compensation */
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #111827;
    margin-top: 0;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER & NAV --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text span {
    color: var(--primary);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: block;
    padding: 10px 18px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-menu li a:hover {
    background: rgba(0, 170, 108, 0.08);
    color: var(--primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.phone-icon {
    font-size: 1.1rem;
}

.phone-text {
    opacity: 0.8;
}

.header-cta {
    background: var(--primary);
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 170, 108, 0.25);
}

.header-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 170, 108, 0.35);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .header-phone {
        display: none;
    }
}

@media (max-width: 900px) {
    .mobile-toggle {
        display: flex;
        z-index: 1002;
    }

    .header-container {
        padding: 0 20px;
    }

    /* Modern Sidebar Navigation */
    .main-navigation {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 24px 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
        flex-direction: column;
        align-items: stretch;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        border-left: 1px solid rgba(0, 0, 0, 0.05);
    }

    .main-navigation.active {
        transform: translateX(0);
    }

    /* Mobile Overlay */
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .nav-menu li a {
        padding: 18px 24px;
        font-size: 1.05rem;
        font-weight: 600;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 14px;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        margin-bottom: 4px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-menu li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: var(--primary);
        transform: scaleY(0);
        transition: transform 0.3s ease;
        border-radius: 0 4px 4px 0;
    }

    .nav-menu li a:hover {
        background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
        color: var(--primary);
        transform: translateX(4px);
    }

    .nav-menu li a:hover::before {
        transform: scaleY(1);
    }

    .header-actions {
        display: none;
    }

    /* Mobile Header Actions */
    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-cart {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        border-radius: 14px;
        color: #1e293b;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .mobile-cart:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 170, 108, 0.3);
    }

    /* Mobile Nav Extra */
    .mobile-nav-extra {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 2px solid #e2e8f0;
        gap: 14px;
    }

    .mobile-nav-btn {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 18px 24px;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        border-radius: 16px;
        font-weight: 600;
        font-size: 1rem;
        color: #1e293b;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .mobile-nav-btn:hover {
        background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
        transform: translateX(4px);
    }

    .mobile-cart-count {
        color: var(--primary);
        font-weight: 700;
    }

    .mobile-nav-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 20px;
        background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
        color: white !important;
        border-radius: 16px;
        font-weight: 700;
        font-size: 1.1rem;
        box-shadow: 0 8px 24px rgba(0, 170, 108, 0.35);
        transition: all 0.3s ease;
    }

    .mobile-nav-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(0, 170, 108, 0.45);
    }

    .mobile-switchers {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e2e8f0;
    }

    .mobile-switchers .switchers {
        display: flex !important;
        gap: 12px;
    }

    /* Hamburger to X Animation */
    .mobile-toggle {
        width: 46px;
        height: 46px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        border: none;
        border-radius: 14px;
        cursor: pointer;
        padding: 0;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .mobile-toggle:hover {
        background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    }

    .mobile-toggle span {
        display: block;
        width: 22px;
        height: 2.5px;
        background: var(--dark);
        transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        border-radius: 2px;
    }

    .mobile-toggle.active {
        background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
        box-shadow: 0 4px 12px rgba(0, 170, 108, 0.3);
    }

    .mobile-toggle.active span {
        background: white;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
}

/* Hide mobile elements on desktop */
@media (min-width: 901px) {
    .mobile-header-actions {
        display: none;
    }

    .mobile-nav-extra {
        display: none;
    }
}

/* --- HERO SECTION --- */
.home-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: -80px;
    padding-top: 80px;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    /* Background image is set dynamically via inline style in front-page.php */
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.1);
    transition: transform 0.1s ease-out;
}

.home-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.home-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.home-hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #ffffff !important;
    opacity: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Search Bar */
.hero-search-bar {
    background: white;
    padding: 8px;
    border-radius: 100px;
    display: flex;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-search-bar input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 100px;
    outline: none;
}

.hero-search-bar button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.hero-search-bar button:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .home-hero h1 {
        font-size: 2.2rem;
    }

    .hero-search-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.95);
    }

    .hero-search-bar input {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .hero-search-bar button {
        width: 100%;
    }
}

/* --- TRUST BAR --- */
.trust-bar {
    background: white;
    margin: -60px auto 80px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    max-width: 1100px;
}

.trust-item h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.trust-item p {
    color: var(--grey);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .trust-bar {
        margin: 20px 20px 60px;
        padding: 30px 20px;
    }
}

/* --- CARDS & GRIDS --- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-top: 10px;
}

/* Region Cards */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.region-card {
    height: 350px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.region-card:hover img {
    transform: scale(1.1);
}

.region-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.region-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.region-overlay h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

/* Product Cards (WooCommerce) */
ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.products li.product {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    overflow: hidden;
}

ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

ul.products li.product img {
    border-radius: var(--radius) var(--radius) 0 0;
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 0 !important;
}

ul.products li.product h2 {
    font-size: 1.2rem;
    padding: 20px 20px 10px;
}

ul.products li.product .price {
    display: block;
    padding: 0 20px 20px;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
}

ul.products li.product .button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    text-align: center;
    background: var(--dark);
    color: white;
    padding: 12px;
    border-radius: 50px;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-body {
    padding: 25px;
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 40px;
    margin-top: 80px;
}

/* --- TOUR SLIDER --- */
.slider-nav {
    display: flex;
    gap: 10px;
}

.slider-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: var(--dark);
}

.slider-nav button:hover {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

.tour-slider-container {
    overflow: hidden;
    margin: 0 -10px;
    padding: 10px;
}

.tour-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tour-slider::-webkit-scrollbar {
    display: none;
}

.tour-card-slide {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

/* Compact Premium Cards */
.t-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.t-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.t-card-img {
    position: relative;
    padding-top: 66%;
    overflow: hidden;
}

.t-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.t-card:hover .t-card-img img {
    transform: scale(1.05);
}

.t-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark);
}

.t-card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.t-meta {
    font-size: 0.75rem;
    color: var(--grey);
    margin-bottom: 6px;
    display: flex;
    gap: 12px;
}

.t-card h3 {
    font-size: 0.95rem;
    margin: 0 0 10px 0;
    color: var(--dark);
    line-height: 1.3;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.t-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.t-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.t-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.15);
}

.t-card:hover .t-btn {
    color: var(--primary);
    text-decoration-color: var(--primary);
}

@media (max-width: 768px) {
    .tour-card-slide {
        flex: 0 0 240px;
    }

    .slider-nav {
        display: none;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-btn-outline {
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
}

.nav-btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nav-btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.nav-btn-primary:hover {
    background: var(--primary-dark);
}

@media (max-width: 900px) {
    .header-actions {
        display: none;
    }
}

/* FOMO Badge */
.fomo-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: inline-block;
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: var(--primary);
}

/* Page Hero */
.page-hero+main {
    padding-top: 80px;
}

/* ==============================================
   LANGUAGE & CURRENCY SWITCHERS
   ============================================== */
.switchers {
    display: flex;
    gap: 8px;
}

.switcher {
    position: relative;
}

.switcher-btn {
    background: #f1f5f9;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.switcher-btn:hover {
    background: #e2e8f0;
}

.switcher-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
}

.switcher:hover .switcher-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.switcher-dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: 0.2s;
}

.switcher-dropdown a:hover {
    background: #f1f5f9;
}

.switcher-dropdown a.active {
    background: var(--primary);
    color: white;
}

/* --- MOBILE TOP BAR --- */
.mobile-top-bar {
    display: none;
    background: #f8fafc;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 6px 0;
}

.mobile-top-container {
    height: auto !important;
    padding: 0 20px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav {
    display: flex;
    gap: 15px;
}

.top-nav a {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-nav a:hover {
    color: var(--primary);
}

@media (max-width: 900px) {
    .mobile-top-bar {
        display: block;
    }

    body {
        padding-top: 115px !important;
        /* Adjust for top bar + main header */
    }

    .home-hero {
        margin-top: -115px !important;
        padding-top: 115px !important;
    }

    .site-header {
        background: white;
    }
}

/* Mobile Switchers Optimization - In Top Bar */
.mobile-top-bar .switchers {
    gap: 5px;
}

.mobile-top-bar .switcher-btn {
    padding: 4px 8px;
    font-size: 0.7rem;
    background: white;
    border: 1px solid #e2e8f0;
}

/* Mobile Switchers Optimization - In Menu */
.mobile-switchers {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    width: 100%;
}

.mobile-switchers .switchers {
    display: flex !important;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 1100px) {

    /* Ensure switchers are only hidden in the desktop header actions area, 
       but KEEP them visible in the mobile navigation bar. */
    .header-actions .switchers {
        display: none;
    }
}

/* Header Cart */
.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    border-radius: 50%;
    color: #1e293b;
    transition: 0.2s;
}

.header-cart:hover {
    background: #e2e8f0;
    color: var(--primary);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Reservation-Only System UI Tweaks */
.woocommerce-checkout #payment ul.payment_methods {
    display: none !important;
    /* Hide payment method selection as there is only one */
}

.woocommerce-checkout #payment div.form-row.place-order {
    padding-top: 0 !important;
}

.woocommerce-checkout #payment {
    background: transparent !important;
    border: none !important;
}

.woocommerce-checkout-payment h3,
.woocommerce-checkout #payment h3 {
    display: none !important;
    /* Hide "Payment" header */
}

/* Rename "Cart" in various places via CSS if needed, though PHP covers most */
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

/* Hide shipping and redundant totals in reservation context */
.cart-subtotal,
.shipping,
.tax-total {
    display: none !important;
}

.order-total th {
    border-top: none !important;
}

.reservation-wa-box a:hover {
    transform: translateY(-2px);
    background: #128c7e !important;
}

/* CONCEPTS GRID */
.concept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.concept-card {
    position: relative;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.concept-card:hover {
    transform: translateY(-10px);
}

.concept-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.concept-card:hover .concept-bg {
    transform: scale(1.1);
}

.concept-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s ease;
}

.concept-card:hover .concept-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.concept-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 10px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.concept-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0 0 20px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.concept-btn {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    color: white;
}

.concept-card:hover .concept-btn {
    background: var(--primary);
    border-color: var(--primary);
}

/* Mobile Responsiveness for old concepts */
@media (max-width: 1000px) {
    .concept-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .concept-grid {
        grid-template-columns: 1fr;
    }

    .concept-card {
        height: 350px;
    }
}

/* ==============================================
   ENHANCED SERVICES SECTION
   ============================================== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-badge {
    padding: 6px 12px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge-blue {
    background: var(--secondary);
}

.service-badge-orange {
    background: #f59e0b;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1e293b;
}

.service-card>p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex: 1;
}

.service-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
}

.service-stat {
    display: flex;
    flex-direction: column;
}

.service-stat strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.service-stat span {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s;
}

.service-card:hover .service-cta {
    color: var(--primary);
    transform: translateX(4px);
}

/* Services Mobile */
@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 70px 0;
    }

    .services-grid {
        gap: 16px;
    }

    .service-card {
        padding: 24px;
        border-radius: 16px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        border-radius: 14px;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .service-card>p {
        font-size: 0.9rem;
    }

    .service-features li {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .service-stat strong {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section {
        padding: 50px 0;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 54px;
        height: 54px;
        font-size: 1.4rem;
        border-radius: 12px;
    }

    .service-badge {
        padding: 5px 10px;
        font-size: 0.65rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-footer {
        padding-top: 16px;
    }
}

/* ==============================================
   TRUST BAR
   ============================================== */
.trust-bar {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfeff 100%);
    padding: 25px 0;
    margin-top: -20px;
    margin-bottom: 40px;
    border-radius: 0 0 30px 30px;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-bar-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.trust-bar-text {
    display: flex;
    flex-direction: column;
}

.trust-bar-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
}

.trust-bar-text span {
    font-size: 0.8rem;
    color: #64748b;
}

@media (max-width: 900px) {
    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 500px) {
    .trust-bar {
        padding: 20px 0;
    }

    .trust-bar-grid {
        gap: 15px;
    }

    .trust-bar-icon {
        font-size: 1.5rem;
    }

    .trust-bar-text strong {
        font-size: 0.85rem;
    }

    .trust-bar-text span {
        font-size: 0.7rem;
    }
}

/* ==============================================
   FEATURED TOURS CAROUSEL
   ============================================== */
.featured-tours-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 20px;
}

.section-header-flex .section-title {
    flex: 1;
}

.section-header-flex .slider-nav {
    display: flex;
    gap: 10px;
}

.section-header-flex .slider-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--dark);
}

.section-header-flex .slider-nav button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.05);
}

.featured-tours-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 0 20px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.featured-tours-carousel::-webkit-scrollbar {
    display: none;
}

.tour-card-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.tour-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.tour-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card-item:hover .tour-card-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tour-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--grey);
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-meta svg {
    color: var(--primary);
}

.tour-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.4;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.tour-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.tour-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    transition: color 0.3s ease;
}

.tour-card-item:hover .tour-link {
    color: var(--primary);
}

/* Carousel Scroll Hint */
.carousel-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--grey);
    font-size: 0.9rem;
    animation: bounce-right 1.5s ease-in-out infinite;
}

@keyframes bounce-right {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(8px);
    }
}

/* Mobile/Desktop visibility helpers */
.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

@media (max-width: 900px) {
    .mobile-only {
        display: flex;
    }

    .desktop-only {
        display: none;
    }
}

@media (max-width: 768px) {
    .featured-tours-section {
        padding: 60px 0;
    }

    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .tour-card-item {
        flex: 0 0 280px;
    }

    .tour-card-image {
        height: 180px;
    }

    .tour-card-content {
        padding: 16px;
    }

    .tour-card-content h3 {
        font-size: 1rem;
    }

    .tour-price {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .tour-card-item {
        flex: 0 0 260px;
    }
}

/* ==============================================
   ADDITIONAL HOMEPAGE SECTIONS
   ============================================== */

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 24px;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 170, 108, 0.3);
}

.why-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.why-item p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1000px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-item {
        padding: 30px 24px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0 30px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.testimonial-info h5 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: white;
}

.testimonial-info span {
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 70px 0;
    }

    .testimonial-card {
        flex: 0 0 320px;
        padding: 24px;
    }
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: white;
    color: var(--primary);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 70px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ==============================================
   GLOBAL MOBILE OVERFLOW FIXES
   ============================================== */

/* Prevent horizontal scroll on all pages - using clip to allow sticky */
html {
    overflow-x: clip;
}

body {
    overflow-x: clip;
    max-width: 100vw;
}

/* Don't apply overflow to main containers - allows sticky to work */
.site,
#page {
    max-width: 100vw;
}

/* Container fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    /* Smaller section titles */
    .section-title h2 {
        font-size: 1.6rem;
    }

    .section-title span {
        font-size: 0.8rem;
    }

    /* WooCommerce product grids */
    ul.products {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    ul.products li.product img {
        height: 180px;
    }

    ul.products li.product h2 {
        font-size: 1rem;
        padding: 14px 14px 8px;
    }

    ul.products li.product .price {
        padding: 0 14px 14px;
        font-size: 1rem;
    }

    ul.products li.product .button {
        width: calc(100% - 28px);
        margin: 0 14px 14px;
        padding: 10px;
        font-size: 0.9rem;
    }

    /* Blog grid */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card .blog-img {
        height: 180px;
    }

    .blog-card .blog-body {
        padding: 20px;
    }

    .blog-card .blog-title {
        font-size: 1.1rem !important;
    }

    .blog-card .blog-excerpt {
        font-size: 0.9rem !important;
    }

    /* Concept grid */
    .concept-card {
        height: 280px;
    }

    .concept-info h3 {
        font-size: 1.3rem;
    }

    .concept-info p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .concept-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Trust bar */
    .trust-bar {
        padding: 20px 16px;
        gap: 16px;
    }

    .trust-item h4 {
        font-size: 0.95rem;
    }

    .trust-item p {
        font-size: 0.8rem;
    }

    .trust-icon {
        font-size: 1.5rem;
    }

    /* Why choose section */
    .why-choose-section {
        padding: 60px 0;
    }

    .why-item {
        padding: 24px 20px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .why-item h4 {
        font-size: 1rem;
    }

    .why-item p {
        font-size: 0.85rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        flex: 0 0 280px;
        padding: 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-avatar {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .testimonial-info h5 {
        font-size: 0.9rem;
    }

    /* Featured tours carousel */
    .featured-tours-section {
        padding: 50px 0;
    }

    .tour-card-item {
        flex: 0 0 240px;
    }

    .tour-card-image {
        height: 150px;
    }

    .tour-card-content {
        padding: 14px;
    }

    .tour-card-content h3 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .tour-price {
        font-size: 1.1rem;
    }

    .tour-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    .home-hero h1 {
        font-size: 1.8rem;
    }

    .home-hero p {
        font-size: 1rem;
    }

    .concept-card {
        height: 240px;
    }

    .concept-info h3 {
        font-size: 1.1rem;
    }

    .concept-info p {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .tour-card-item {
        flex: 0 0 220px;
    }

    .tour-card-image {
        height: 130px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .section-title h2 {
        font-size: 1.3rem;
    }

    .home-hero h1 {
        font-size: 1.5rem;
    }

    .tour-card-item {
        flex: 0 0 200px;
    }

    ul.products li.product h2 {
        font-size: 0.95rem;
    }

    ul.products li.product .price {
        font-size: 0.95rem;
    }
}

/* ==============================================
   FEATURED TOURS - POPULAR BADGE
   ============================================== */
.featured-tour {
    position: relative;
}

.featured-tour::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: inherit;
    background: linear-gradient(135deg, #fbbf24, #f59e0b) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.tour-rating {
    color: #f59e0b;
    font-weight: 600;
}

/* ==============================================
   ENHANCED HERO SECTION - PROFESSIONAL UI/UX
   ============================================== */

/* Hero Subtitle with better styling */
.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 35px;
    opacity: 0.95;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Trust Badge */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 0.8s ease;
}

.hero-badge-icon {
    font-size: 1.2rem;
}

/* CTA Button Group */
.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    color: white !important;
    box-shadow: 0 8px 25px rgba(0, 170, 108, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 170, 108, 0.5);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Enhanced Search Bar */
.hero-search-bar {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    padding: 8px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 550px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-search-bar .search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    color: #94a3b8;
}

.hero-search-bar input[type="search"] {
    flex: 1;
    border: none;
    padding: 15px 10px;
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: var(--dark);
}

.hero-search-bar input[type="search"]::placeholder {
    color: #94a3b8;
}

.hero-search-bar button {
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-search-bar button:hover {
    box-shadow: 0 5px 20px rgba(0, 170, 108, 0.4);
    transform: scale(1.02);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-stat-item {
    text-align: center;
    color: white;
}

.hero-stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-stat-item .stat-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    align-self: center;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.8rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.hero-scroll-indicator span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-scroll-indicator svg {
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Number Counter Animation */
.stat-number {
    transition: all 0.3s ease;
}

/* Mobile Responsive Hero */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .hero-trust-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .hero-cta-group {
        flex-direction: column;
        padding: 0 20px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-search-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.95);
        margin: 0 20px 30px;
        max-width: calc(100% - 40px);
    }

    .hero-search-bar .search-icon {
        display: none;
    }

    .hero-search-bar input[type="search"] {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .hero-search-bar button {
        width: 100%;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-item .stat-number {
        font-size: 1.8rem;
    }

    .hero-stat-item .stat-label {
        font-size: 0.7rem;
    }

    .hero-stat-divider {
        height: 40px;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-stats {
        gap: 30px;
    }

    .hero-stat-item .stat-number {
        font-size: 2rem;
    }
}