:root {
    --primary: #F7931E;
    --primary-dark: #e08518;
    --primary-light: #ffb347;
    --secondary: #0A74DA;
    --secondary-dark: #0855a8;
    --dark-gray: #9A9A9E;
    --medium-gray: #A7A7A7;
    --background: #FAFBFC;
    --white: #ffffff;
    --dark: #1a1a2e;
    --gray: #4a4a6a;
    --light-gray: #e8eaf0;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(247, 147, 30, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #F7931E, #ffb347);
    --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader img {
    height: 80px !important;
    width: 200px !important;
    max-width: 200px !important;
    max-height: 80px !important;
    object-fit: contain !important;
    animation: pulse 1.5s ease-in-out infinite;
}

.lm-text {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    animation: pulse 1.5s ease-in-out infinite;
}

.wanders-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--medium-gray);
    letter-spacing: 8px;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(247, 147, 30, 0.45);
    background: var(--primary);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.35);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    padding: 12px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 60px !important;
    width: 150px !important;
    max-width: 150px !important;
    max-height: 60px !important;
    object-fit: contain !important;
    object-position: left center;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(247, 147, 30, 0.3);
}

.lm-accent {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    letter-spacing: 2px;
}

.logo-text-sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--medium-gray);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray);
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown .fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: var(--transition);
}

.nav-item-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    max-width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 100;
}

.nav-item-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu .dropdown-link {
    display: block;
    padding: 12px 25px;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu .dropdown-link:hover {
    background: var(--primary);
    color: var(--white);
    padding-left: 30px;
}

.dropdown-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    margin: 0;
    padding: 10px 0;
    background: var(--white);
    min-width: 180px;
    max-width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    list-style: none;
    display: none;
    z-index: 1000;
}

.submenu li {
    padding: 0;
    margin: 0;
}

.submenu .dropdown-link {
    display: block;
    padding: 12px 25px;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.submenu .dropdown-link:hover {
    background: var(--primary);
    color: var(--white);
    padding-left: 30px;
}

.dropdown-submenu:hover > .submenu {
    display: block;
}

.dropdown-submenu .dropdown-link i {
    font-size: 0.7rem;
    margin-left: 8px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(10, 116, 218, 0.4));
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 5;
}

.hero-particles::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--primary);
    animation: fly 2s ease-in-out infinite;
}

@keyframes fly {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(247, 147, 30, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-content > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.scroll-indicator span {
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(247, 147, 30, 0.3);
}

.section-header.light .section-tag {
    background: var(--white);
    color: var(--primary);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-title .highlight {
    color: var(--primary);
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Popular Tours */
.popular-tours {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

    .tour-card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        cursor: pointer;
    }
    
    .tour-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
    }
    
    .tour-card-link {
        display: block;
        text-decoration: none;
        color: inherit;
    }
    
    .tour-card-link .tour-card {
        height: 100%;
    }
    
    .tour-card-link:hover .tour-card {
        transform: translateY(-10px);
    }

.tour-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.tour-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tour-card:hover .tour-image img {
    transform: scale(1.15);
    filter: brightness(0.9);
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.badge-new {
    background: var(--secondary);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(247, 147, 30, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: var(--transition);
}

.tour-card:hover .tour-overlay {
    opacity: 1;
}

.btn-tour {
    background: var(--white);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.tour-card:hover .btn-tour {
    transform: translateY(0);
}

.btn-tour:hover {
    background: var(--primary);
    color: var(--white);
}

.tour-info {
    padding: 25px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--gray);
}

.tour-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.tour-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.tour-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.tour-price .per-person {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--gray);
}

.tour-rating i {
    color: #ffc107;
}

.tour-rating span {
    margin-left: 5px;
}

/* Visa Section */
.visa-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.wave-top,
.wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--white);
}

.wave-top {
    top: 0;
    transform: rotate(180deg);
}

.wave-bottom {
    bottom: 0;
}

.visa-section .section-header.light {
    position: relative;
    z-index: 2;
}

.visa-section .section-title,
.visa-section .section-subtitle {
    color: var(--white);
}

.visa-section .section-subtitle {
    opacity: 0.8;
}

.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.visa-card {
    position: relative;
}

.visa-card-inner {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
}

.visa-card:hover .visa-card-inner {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.visa-card.featured .visa-card-inner {
    background: var(--primary);
    border-color: var(--primary);
}

.visa-card.featured:hover .visa-card-inner {
    background: var(--primary-dark);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
}

.visa-card .flag {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.visa-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.visa-fee {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.visa-card.featured .visa-fee {
    color: var(--white);
}

.visa-time {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.visa-time i {
    margin-right: 5px;
}

.visa-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.visa-features i {
    color: var(--primary);
    margin-right: 8px;
}

.visa-card.featured .visa-features i {
    color: var(--white);
}

.visa-card .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.visa-card .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.visa-card.featured .btn-outline {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.visa-card.featured .btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--background);
}

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

.feature-box {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.3);
}

.feature-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.reviews-carousel {
    overflow: hidden;
}

.reviews-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    min-width: 100%;
    padding: 40px;
}

.review-card-inner {
    background: var(--background);
    padding: 35px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.review-author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.review-author-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

.review-stars {
    margin-left: auto;
    font-size: 1rem;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray);
    line-height: 1.8;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content .section-tag {
    background: var(--white);
    color: var(--primary);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content h2 .highlight {
    color: var(--dark);
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-outline-light {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    position: relative;
    padding-top: 80px;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 100%, 100% 0, 0 0);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 50px !important;
    width: 130px !important;
    max-width: 130px !important;
    max-height: 50px !important;
    object-fit: contain !important;
}

.footer-logo .lm-accent {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text span:first-child {
    font-size: 1rem;
    font-weight: 700;
    color: var(--medium-gray);
    letter-spacing: 2px;
}

.footer-logo-text span:last-child {
    font-size: 0.7rem;
    color: var(--dark-gray);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-brand .social-links {
    display: flex;
    gap: 12px;
}

.footer-brand .social-links a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-brand .social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 5px;
    font-size: 1rem;
}

.footer-newsletter > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info h2 i {
    color: var(--primary);
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.25);
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.contact-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-text p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.social-media h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark);
}

.social-media .social-links {
    gap: 12px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(247, 147, 30, 0.3);
}

.social-btn:hover {
    transform: translateY(-5px);
    background: var(--primary-dark);
}

.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-map h2 i {
    color: var(--primary);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
}

/* Booking Page */
.booking-page {
    padding: 80px 0;
    background: var(--background);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.booking-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-info h2 i {
    color: var(--primary);
}

.booking-info > p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.info-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--dark);
}

.info-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

.why-book {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.why-book h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: var(--dark);
}

.why-book ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.why-book li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.95rem;
}

.why-book li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.booking-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.booking-form .form-group {
    margin-bottom: 22px;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 0.95rem;
}

.booking-form label i {
    color: var(--primary);
    font-size: 0.9rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition);
    background: var(--background);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(247, 147, 30, 0.1);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: var(--dark-gray);
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 6px;
    display: block;
}

.form-success {
    text-align: center;
    padding: 50px 30px;
}

.success-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 25px;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.form-success h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.form-success p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Visa Page */
.visa-page {
    padding: 80px 0;
}

.visa-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.visa-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.visa-intro h2 i {
    color: var(--primary);
}

.visa-intro p {
    color: var(--gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

.visa-pricing-table {
    margin-bottom: 70px;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

thead {
    background: var(--gradient-primary);
    color: var(--white);
}

th, td {
    padding: 20px 25px;
    text-align: left;
}

th {
    font-weight: 600;
    font-size: 1rem;
}

td {
    border-bottom: 1px solid var(--light-gray);
    color: var(--gray);
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background-color: rgba(247, 147, 30, 0.05);
}

.country-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark);
}

.flag-emoji {
    font-size: 1.5rem;
}

.price-tag {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.visa-steps {
    margin-bottom: 50px;
}

.visa-steps .section-title {
    margin-bottom: 40px;
}

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

.step-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(247, 147, 30, 0.35);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 18px;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.step-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.visa-note {
    background: rgba(247, 147, 30, 0.1);
    padding: 22px 28px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.visa-note i {
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.visa-note p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Tours Page */
.tours-page {
    padding: 60px 0;
}

.filters {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.filter-group {
    flex: 1;
    min-width: 220px;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--dark);
}

.filter-group label i {
    color: var(--primary);
}

.filter-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark);
    background-color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray);
}

.no-results i {
    font-size: 4rem;
    color: var(--light-gray);
    margin-bottom: 20px;
    display: block;
}

.no-results p {
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-dark);
    color: var(--white);
    margin-top: 70px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: 25px 25px;
    opacity: 0.6;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header .section-tag {
    margin-bottom: 18px;
}

.page-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.85;
}

@media (max-width: 992px) {
    .booking-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .filters {
        flex-direction: column;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .why-book ul {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        height: 350px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-grid {
        gap: 35px;
    }
    
    .booking-form-container {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .visa-note {
        flex-direction: column;
        text-align: center;
    }
}

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

.tour-card,
.visa-card,
.review-card,
.feature-box {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.tour-card:nth-child(1) { animation-delay: 0.1s; }
.tour-card:nth-child(2) { animation-delay: 0.2s; }
.tour-card:nth-child(3) { animation-delay: 0.3s; }
.tour-card:nth-child(4) { animation-delay: 0.4s; }
.tour-card:nth-child(5) { animation-delay: 0.5s; }
.tour-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content > p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .tours-grid,
    .features-grid,
    .visa-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .page-header {
        height: 350px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .review-card {
        padding: 20px;
    }
}

/* ===================================
   TOUR DETAILS PAGE STYLES
   =================================== */

.tour-details-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tour-details-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.tour-details-hero .hero-content {
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
    width: 100%;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
    transition: var(--transition);
}

.back-link:hover {
    opacity: 1;
    transform: translateX(-5px);
}

.tour-header-info {
    color: var(--white);
}

.tour-badge-hero {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tour-details-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.tour-meta-hero {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.tour-meta-hero span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.tour-price-hero {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-size: 0.95rem;
    opacity: 0.8;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-per {
    font-size: 1rem;
    opacity: 0.8;
}

.tour-details-content {
    padding: 60px 0;
}

.tour-details-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.tour-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tour-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.tour-card h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.tour-card h2 i {
    color: var(--primary);
}

.tour-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
}

.tour-card h3 i {
    color: var(--primary);
}

.tour-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
}

.highlights-list {
    list-style: none;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--gray);
}

.highlights-list li:last-child {
    border-bottom: none;
}

.highlights-list li i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

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

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -34px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-content h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.7;
}

.tour-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card.inclusions h3 i {
    color: #10b981;
}

.info-card.exclusions h3 i {
    color: #ef4444;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray);
    font-size: 0.95rem;
}

.info-card ul li i {
    margin-top: 3px;
    flex-shrink: 0;
}

.info-card.inclusions ul li i {
    color: #10b981;
}

.info-card.exclusions ul li i {
    color: #ef4444;
}

.notes-list {
    list-style: none;
}

.notes-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    color: var(--gray);
    font-size: 0.95rem;
}

.notes-list li i {
    color: #f59e0b;
    margin-top: 4px;
    flex-shrink: 0;
}

.tour-sidebar {
    position: relative;
}

.booking-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.booking-card-header {
    background: var(--gradient-primary);
    padding: 25px;
    text-align: center;
    color: var(--white);
}

.booking-label {
    font-size: 0.85rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 10px 0 5px;
}

.booking-per {
    font-size: 0.9rem;
    opacity: 0.9;
}

.booking-card-body {
    padding: 20px 25px;
}

.booking-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--gray);
}

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

.booking-info-item i {
    color: var(--primary);
    width: 20px;
}

.booking-card .btn {
    margin: 20px 25px;
}

.booking-card-footer {
    padding: 15px 25px;
    background: var(--light-gray);
    text-align: center;
}

.booking-card-footer p {
    font-size: 0.9rem;
    color: var(--gray);
}

.booking-card-footer a {
    color: var(--primary);
    font-weight: 600;
}

.share-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.share-card h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
}

.share-card h4 i {
    color: var(--primary);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.messenger {
    background: #0084ff;
}

.share-btn.whatsapp {
    background: #25d366;
}

.mobile-sticky-book {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.mobile-sticky-book .btn {
    width: 100%;
}

/* Responsive Tour Details */
@media (max-width: 992px) {
    .tour-details-grid {
        grid-template-columns: 1fr;
    }

    .tour-sidebar {
        order: -1;
    }

    .sticky-card {
        position: static !important;
    }

    .mobile-sticky-contact {
        display: block;
    }

    .tour-details-content {
        padding-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .tour-details-hero {
        height: 50vh;
        min-height: 400px;
    }

    .tour-details-hero h1 {
        font-size: 1.8rem;
    }

    .tour-meta-hero {
        flex-direction: column;
        gap: 10px;
    }

    .price-value {
        font-size: 2rem;
    }

    .tour-card {
        padding: 20px;
    }

    .tour-info-grid {
        grid-template-columns: 1fr;
    }

    .btn-block {
        display: block;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .tour-details-hero {
        height: 40vh;
        min-height: 350px;
        margin-top: 60px;
    }

    .tour-details-hero h1 {
        font-size: 1.5rem;
    }

    .price-value {
        font-size: 1.8rem;
    }

    .back-link {
        font-size: 0.85rem;
    }
}

/* ===================================
   CONTACT CARD STYLES (Tour Details)
   =================================== */

.contact-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-card-header {
    background: var(--gradient-primary);
    padding: 25px;
    text-align: center;
    color: var(--white);
}

.contact-card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card-header p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.contact-card-info {
    padding: 20px 25px;
    background: var(--background);
    border-bottom: 1px solid var(--light-gray);
}

.contact-summary {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.contact-summary:not(:last-child) {
    border-bottom: 1px dashed var(--light-gray);
}

.summary-label {
    font-size: 0.85rem;
    color: var(--gray);
}

.summary-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    text-align: right;
    max-width: 60%;
}

.summary-value.price-highlight {
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-buttons {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-zalo {
    background: #0068ff;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 104, 255, 0.3);
}

.btn-zalo:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 104, 255, 0.4);
}

.btn-email {
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(26, 26, 46, 0.3);
}

.btn-email:hover {
    background: var(--gray);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.4);
}

.btn-whatsapp-table {
    background: #25d366;
    color: var(--white);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-whatsapp-table:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.zalo-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-card-footer {
    padding: 15px 25px;
    background: var(--light-gray);
    text-align: center;
}

.contact-card-footer p {
    font-size: 0.9rem;
    color: var(--gray);
}

.contact-card-footer a {
    color: var(--primary);
    font-weight: 600;
}

.mobile-sticky-contact {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.mobile-sticky-contact .btn {
    width: 100%;
}

/* Location Tags */
.locations-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--background);
    color: var(--gray);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--light-gray);
}

.location-tag i {
    color: var(--primary);
}

.location-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
