/* ============================================
   CSS RESET & ROOT VARIABLES
   ============================================ */
:root {
    /* Primary Palette */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --primary-glow: rgba(14, 165, 233, 0.3);

    /* Accent */
    --accent: #f97316;
    --accent-dark: #ea580c;
    --accent-light: #fb923c;

    /* Neutrals */
    --dark: #0f172a;
    --dark-secondary: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    /* Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;

    /* Borders & Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px var(--primary-glow);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.3;
    font-weight: 700;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.05));
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.section-badge i {
    font-size: 0.75rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    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: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-dark-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-300);
}

.btn-dark-outline:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    transform: translateY(-3px);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(14, 165, 233, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.preloader-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 3px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animations */

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark);
    color: var(--gray-400);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
}

.top-bar-left a:hover {
    color: var(--primary-light);
}

.top-bar-left i {
    color: var(--primary);
    font-size: 0.8rem;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-400);
    font-size: 0.8rem;
    transition: all var(--transition-base);
}

.top-bar-right a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--dark);
    transition: all var(--transition-base);
}

/* Fix for WordPress Admin Bar */
.admin-bar .main-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .main-header {
        top: 46px;
    }
}

/* Offset for all pages except home since header is fixed */
body:not(.home) {
    padding-top: 100px;
    /* Increased from 100px to fit offer bar */
}

@media screen and (max-width: 991px) {
    body:not(.home) {
        padding-top: 80px;
    }
}

.main-header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    transition: padding var(--transition-base);
}

.main-header.scrolled .navbar {
    padding: 12px 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo img {
    max-height: 50px;
    width: auto;
}



.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu li a i {
    font-size: 0.7rem;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    transition: transform 10s ease;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0.3) 0%,
            rgba(15, 23, 42, 0.5) 50%,
            rgba(15, 23, 42, 0.9) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 40%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    left: 50%;
    top: 60%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 70%;
    top: 30%;
    animation-delay: 3s;
    animation-duration: 20s;
}

.particle:nth-child(6) {
    left: 80%;
    top: 70%;
    animation-delay: 5s;
    animation-duration: 13s;
}

.particle:nth-child(7) {
    left: 90%;
    top: 10%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    left: 40%;
    top: 90%;
    animation-delay: 1.5s;
    animation-duration: 15s;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(50px, -100px) scale(1.5);
        opacity: 0.6;
    }

    50% {
        transform: translate(-30px, -200px) scale(1);
        opacity: 0.4;
    }

    75% {
        transform: translate(70px, -150px) scale(1.3);
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: var(--primary-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 50px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Search Box */
.hero-search {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 10;
}

/* ===== HERO INNER LAYOUT ===== */

.tv-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
    width: 100%;
}

/* LEFT TEXT */
.tv-hero-content {
    color: #fff;
    z-index: 5;
}

/* ===== PREMIUM HERO SEARCH CARD ===== */
.tv-hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 35px;
    /* Reduced from 45px for better fit */
    color: var(--white);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.tv-hero-card .card-header {
    margin-bottom: 20px;
    /* Reduced from 30px */
}

.tv-hero-card .card-header .badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.tv-hero-card h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.tv-hero-card p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.5;
}

.card-field {
    margin-bottom: 15px;
    /* Reduced from 22px */
}

.card-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}

.card-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.card-field label i {
    color: var(--primary);
}

.card-field input,
.card-field select {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.card-field input:focus,
.card-field select:focus {
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.card-btn {
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 10px;
}

.card-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--primary-glow);
    filter: brightness(1.1);
}

.card-btn i {
    transition: transform 0.3s ease;
}

.card-btn:hover i {
    transform: translateX(5px);
}

/* ===== HERO SCROLL DOWN ===== */
.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    text-align: center;
}

.hero-scroll-down a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--white);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-scroll-down a:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.hero-scroll-down span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--font-body);
}

/* Mouse Icon Animation */
.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-wheel 1.5s infinite;
}

@keyframes mouse-wheel {
    0% {
        top: 6px;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        top: 18px;
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .tv-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tv-hero-card {
        max-width: 500px;
    }
}

.search-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 35px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.search-field {
    flex: 1;
}

.search-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    transition: border-color var(--transition-fast);
    background: var(--gray-50);
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.search-field .input-icon {
    position: relative;
}

.search-field .input-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.search-field .input-icon input {
    padding-left: 42px;
}

.search-box .btn {
    padding: 14px 35px;
    white-space: nowrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   POPULAR DESTINATIONS
   ============================================ */
.destinations {
    background: var(--gray-50);
    padding: 120px 0 100px;
}

.destination-card-old {
    width: 100%;
}


.destination-card .placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    color: var(--gray-500);
    font-size: 3rem;
}

.destination-card:hover .destination-card-img {
    transform: scale(1.1);
}

.destination-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
    transition: all var(--transition-base);
}

.destination-card:hover .destination-card-overlay {
    padding-bottom: 40px;
}

.destination-card-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 4px;
}

.destination-card-count {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.destination-card-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all var(--transition-base);
}

.destination-card:hover .destination-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   FEATURED TOURS / PACKAGES
   ============================================ */
.tours {
    padding: var(--section-padding);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
}

.tour-card-image .placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 3rem;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.08);
}

.tour-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-card-wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--gray-500);
    border: none;
}

.tour-card-wishlist:hover {
    background: var(--danger);
    color: var(--white);
    transform: scale(1.1);
}

.tour-card-body {
    padding: 24px;
}

.tour-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 500;
}

.tour-card-title {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    transition: color var(--transition-fast);
}

.tour-card:hover .tour-card-title {
    color: var(--primary);
}

.tour-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.tour-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.tour-card-meta i {
    color: var(--primary);
    font-size: 0.8rem;
}

.tour-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.tour-card-rating i {
    color: var(--warning);
    font-size: 0.85rem;
}

.tour-card-rating span {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-left: 4px;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.tour-card-price {
    font-family: var(--font-heading);
}

.tour-card-price .from {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-family: var(--font-body);
}

.tour-card-price .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.tour-card-price .per {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-family: var(--font-body);
}

.tour-card-footer .btn {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    animation: glow-float 8s ease-in-out infinite;
}

@keyframes glow-float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-50px, 50px);
    }
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-base);
}

.why-us-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-8px);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-glow);
    transition: transform var(--transition-spring);
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-us-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================
   SPECIAL OFFERS / CTA
   ============================================ */
.special-offer {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: var(--gray-50);
}

.offer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.offer-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
}

.offer-image .placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 4rem;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-badge-float {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--accent);
    color: var(--white);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    animation: bounce 2s infinite;
}

.offer-badge-float .discount {
    font-size: 1.5rem;
    line-height: 1;
}

.offer-badge-float .off {
    font-size: 0.8rem;
    text-transform: uppercase;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.offer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.offer-content p {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 30px;
    line-height: 1.8;
}

.offer-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--gray-700);
}

.offer-feature i {
    color: var(--success);
    font-size: 0.9rem;
}

.offer-countdown {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
}

.countdown-item {
    text-align: center;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    min-width: 75px;
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 36px;
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.testimonial-card:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--warning);
    font-size: 0.85rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--dark);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-form .btn {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    white-space: nowrap;
}

.newsletter-form .btn:hover {
    background: var(--dark);
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 0.92rem;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--primary-light);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow);
    z-index: 999;
    font-size: 1.1rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    font-size: 1.8rem;
    transition: all var(--transition-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* Move up when scroll button is visible */
.scroll-top.visible + .whatsapp-float {
    bottom: 95px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
    }
    .scroll-top.visible + .whatsapp-float {
        bottom: 85px;
    }
}

/* ============================================
   INNER PAGES
   ============================================ */
.page-banner {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.page-banner .container {
    position: relative;
    z-index: 3;
}

.page-banner h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.breadcrumb a {
    color: var(--primary-light);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Content Area */
.content-area {
    padding: 80px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
}

.main-content article {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.main-content .entry-image {
    height: 400px;
    overflow: hidden;
    background: var(--gray-200);
}

.main-content .entry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-content .entry-body {
    padding: 40px;
}

.main-content .entry-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.main-content .entry-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-100);
}

.main-content .entry-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-content .entry-meta i {
    color: var(--primary);
}

.main-content .entry-content p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.main-content .entry-content h2,
.main-content .entry-content h3 {
    margin: 30px 0 16px;
}

/* Sidebar */
.sidebar .widget {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.sidebar .widget-title {
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
    position: relative;
}

.sidebar .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

/* ============================================
   BLOG ARCHIVE
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
    background: var(--gray-200);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-date {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 1.15rem;
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.blog-card:hover .blog-card-title {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.blog-card-link:hover {
    gap: 10px;
}

/* ============================================
   ANIMATIONS (Scroll Reveal)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-wrapper {
        grid-template-columns: 1fr;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right var(--transition-base);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        align-items: stretch;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li a {
        padding: 14px 16px;
        border-radius: var(--radius-sm);
    }

    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-search {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

    .search-box {
        flex-direction: column;
        gap: 16px;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-card:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .tours-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .offer-features {
        grid-template-columns: 1fr;
    }

    .offer-countdown {
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-banner h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   PREMIUM BEAUTY & PROFESSIONAL POLISH
   ============================================ */
.section-header .section-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 10px;
}

.old-tour-section-styles {
    display: none;
}


.tour-card-badge-premium {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tour-card-body-premium {
    padding: 25px;
}

.tour-card-body-premium .location {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.tour-card-body-premium h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.tour-card-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #f1f5f9;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
}

.info-item i {
    color: var(--primary);
}

.tour-card-footer-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-price-box {
    display: flex;
    flex-direction: column;
}

.tour-price-box .price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark);
}

.tour-price-box .label {
    font-size: 0.75rem;
    color: #94a3b8;
}

.btn-book-premium {
    background: var(--primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-book-premium:hover {
    background: var(--dark);
    transform: translateX(5px);
}


/* ============================================
   FEATURED TOUR HERO & SEARCH TRANSITION
   ============================================ */
.hero-featured-tour {
    height: 70vh;
    min-height: 550px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-featured-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    padding-bottom: 100px;
}

.featured-tour-content {
    max-width: 850px;
    color: #fff;
}

.featured-badge {
    background: #ffc107;
    color: #000;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.featured-tour-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.featured-meta {
    display: flex;
    gap: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.featured-meta i {
    color: var(--primary-light);
    margin-right: 5px;
}

/* Move search widget below featured tour */
.search-section-wrap {
    margin-top: -120px;
    position: relative;
    z-index: 50;
    padding-bottom: 60px;
}

/* ============================================
   MAKEMYTRIP STYLE SEARCH SECTION
   ============================================ */

.mmt-search-section {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    margin-top: -80px;
    position: relative;
    z-index: 50;
    padding: 80px 0 60px;
}

.mmt-search-header {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.mmt-search-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mmt-search-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    padding: 30px;
    max-width: 100%;
    overflow: hidden;
}

.mmt-search-form {
    width: 100%;
}

.mmt-search-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.mmt-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mmt-input-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mmt-input-group label i {
    color: #0ea5e9;
    font-size: 0.9rem;
}

.mmt-input {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}

.mmt-input:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    background: #f0f9ff;
}

.mmt-input::placeholder {
    color: #bbb;
}

.mmt-input option {
    color: #333;
}

.mmt-search-btn-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mmt-search-submit-btn {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    border: none;
    padding: 14px 45px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.mmt-search-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
}

.mmt-search-submit-btn:active {
    transform: translateY(0);
}

.mmt-search-submit-btn i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mmt-search-section {
        padding: 60px 0 40px;
        margin-top: -60px;
    }

    .mmt-search-header h2 {
        font-size: 1.5rem;
    }

    .mmt-search-container {
        padding: 20px;
        border-radius: 12px;
    }

    .mmt-search-inputs {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .mmt-search-btn-container {
        justify-content: stretch;
    }

    .mmt-search-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

/* Page Spacing Adjustment */
.destinations {
    padding-top: 80px;
}

/* ============================================
   TV THEME HOME PAGE (NEW DESIGN)
   ============================================ */

/* ============ HERO SLIDER ============ */
.tv-hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.tv-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s linear;
}

.slide.active .tv-hero-bg {
    transform: scale(1);
}

.tv-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)); */
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* Account for fixed header */
    padding-bottom: 80px;
    z-index: 5;
}

.tv-hero-content {
    color: var(--white);
    max-width: 850px;
    position: relative;
    z-index: 10;
}

.tv-hero-content h1 {
    font-size: 5rem;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.tv-hero-meta {
    display: flex;
    gap: 40px;
    font-weight: 400;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-base);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* ============ SEARCH BOX ============ */

.tv-search-wrap {
    margin-top: -150px;
    position: relative;
    z-index: 100;
}

.tv-search-box {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.tv-search-box h2 {
    text-align: center;
    margin-bottom: 35px;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--dark);
}

.tv-search-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr 0.5fr;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-end;
}

.field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    color: var(--gray-500);
}

.field input,
.field select {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: all var(--transition-base);
    background: var(--gray-50);
}

.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.tv-search-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-spring);
    box-shadow: 0 10px 25px var(--primary-glow);
    margin: 0;
}

.tv-search-btn-field {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tv-search-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px var(--primary-glow);
}

/* ============ DESTINATIONS ============ */

.tv-destinations {
    padding: 120px 0;
    background: var(--white);
}

.tv-destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.tv-destinations .section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 3rem;
}

.card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.card:hover img {
    transform: scale(1.15);
}

.card h3 {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: var(--white);
    font-size: 2.2rem;
    z-index: 2;
    font-family: var(--font-heading);
    transition: all var(--transition-base);
}

.card:hover h3 {
    transform: translateY(-10px);
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
    opacity: 0.8;
}

/* ============ PACKAGES ============ */

.tv-packages {
    padding: 120px 0;
    background: var(--gray-50);
}

.tv-packages .section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 3rem;
}

.tv-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pkg-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding-bottom: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.pkg-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.pkg-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.pkg-card:hover img {
    transform: scale(1.05);
}

.pkg-card h3 {
    margin: 30px 20px 15px;
    font-size: 1.6rem;
    font-family: var(--font-heading);
    color: var(--dark);
}

.pkg-card span {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.8rem;
    display: block;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1200px) {
    .tv-hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .tv-search-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tv-destination-grid,
    .tv-package-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tv-hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .tv-search-wrap {
        margin-top: -60px;
    }

    .tv-search-box {
        padding: 30px;
    }

    .tv-hero {
        height: auto;
        min-height: calc(100vh - 120px);
        padding: 0;
        margin-top: 120px;
        /* Increased for mobile admin bar + offer bar clearance */
        position: relative;
    }

    .hero-slider,
    .tv-hero-overlay {
        height: 100%;
        position: absolute;
        inset: 0;
    }

    .tv-hero-overlay {
        padding-top: 20px;
        padding-bottom: 80px;
        position: relative;
        /* Changing to relative on mobile to respect parent padding/flow */
        min-height: 500px;
    }

    /* Scroll Down Fix for Mobile */
    .hero-scroll-down {
        bottom: 15px;
        z-index: 10;
    }

    .hero-scroll-down span {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .mouse {
        width: 20px;
        height: 32px;
    }

    .wheel {
        width: 3px;
        height: 6px;
    }
}

@media (max-width: 600px) {
    .tv-hero-content h1 {
        font-size: 2.8rem;
    }

    .tv-search-grid {
        grid-template-columns: 1fr;
    }

    .tv-destination-grid,
    .tv-package-grid {
        grid-template-columns: 1fr;
    }

    .tv-hero-meta {
        flex-direction: column;
        gap: 15px;
    }

    .tv-search-btn {
        width: 100%;
        padding: 15px;
    }
}

/* ===== DESTINATIONS GRID FIX ===== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.dest-card-premium {
    position: relative;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

/* Image */
.dest-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover zoom */
.dest-card-premium:hover img {
    transform: scale(1.1);
}

/* Overlay */
.dest-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 70%);
    color: #fff;
    z-index: 2;
}

/* Text */
.dest-card-content h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.packages-count {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #38bdf8;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

.destinations {
    padding-top: 80px;
}

/* TOUR CARD PREMIUM (RETAINED) */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}



.tour-card-premium {
    background: #fff !important;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.tour-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.tour-card-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.tour-card-badge-premium {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 5;
}

.tour-card-body-premium {
    padding: 30px;
    flex-grow: 1;
}

.tour-card-body-premium .location {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.tour-card-body-premium h3 {
    font-size: 1.6rem;
    margin: 15px 0 20px;
    font-weight: 800;
    color: var(--dark);
}

.tour-card-info-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 25px;
}

.info-item {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== FINAL CONSOLIDATED PREMIUM GRID & CARDS ===== */
.destinations-grid,
.tours-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: auto !important;
    /* Forces layout to adapt to item height */
    gap: 30px !important;
    width: 100%;
    margin-bottom: 50px;
}

/* Clear any old nth-child rules from old theme */
.destinations-grid>*,
.tours-grid>* {
    grid-column: auto !important;
    grid-row: auto !important;
}

/* Destination Card */
.dest-card-premium {
    position: relative;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dest-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dest-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card-premium:hover img {
    transform: scale(1.1);
}

.dest-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 70%);
    color: #fff;
    z-index: 2;
    transition: padding 0.3s ease;
}

.dest-card-premium:hover .dest-card-content {
    padding-bottom: 35px;
}

.dest-card-content h3 {
    font-size: 1.6rem;
    margin: 0;
    color: #fff !important;
    font-weight: 700;
}

.packages-count {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #38bdf8 !important;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Tour Card */
.tour-card-premium {
    background: #fff !important;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 480px;
    /* Fixed height for symmetry */
    position: relative;
    cursor: pointer;
}

.tour-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.tour-card-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.tour-card-badge-premium {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tour-card-body-premium {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-card-body-premium .location {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.tour-card-body-premium h3 {
    font-size: 1.5rem;
    margin: 10px 0 15px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.4;
}

.tour-card-info-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.info-item {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item i {
    color: var(--primary);
}

.tour-card-footer-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.tour-price-box .price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark);
}

.btn-book-premium {
    background: var(--dark);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-book-premium:hover {
    background: var(--primary);
    transform: scale(1.05);
}

/* Stretched-link: makes the whole card clickable */
.btn-book-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

/* Keep badge & price above the overlay so they remain visible */
.tour-card-badge-premium,
.tour-price-box {
    z-index: 2;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 1024px) {

    .destinations-grid,
    .tours-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {

    .destinations-grid,
    .tours-grid {
        grid-template-columns: 1fr !important;
    }

    .dest-card-premium {
        height: 380px;
    }

    .tour-card-premium {
        height: auto;
    }
}

/* ============================================
   BLOG PAGINATION
   ============================================ */
.blog-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.blog-pagination .page-numbers {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 10px 25px var(--primary-glow);
    transform: translateY(-5px);
}

.blog-pagination span.page-numbers.current {
    cursor: default;
}

.blog-pagination .page-numbers.next,
.blog-pagination .page-numbers.prev {
    width: auto;
    padding: 0 25px;
    border-radius: 50px;
}

.blog-pagination .page-numbers i {
    font-size: 0.9rem;
}

.itinerary-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
}

.itinerary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.itinerary-header h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.arrow {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
}

.itinerary-content {
    display: none;
    margin-top: 15px;
    animation: fadeIn .3s ease;
    gap: 40px;
    align-items: flex-start;
}

.itinerary-content img {
    width: 40%;
    border-radius: 12px;
    margin-bottom: 0;
    object-fit: cover;
}

.itinerary-content p {
    flex: 1;
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .itinerary-content {
        flex-direction: column;
    }

    .itinerary-content img {
        width: 100%;
        margin-bottom: 15px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.departure-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.departure-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    transition: .3s;
    flex-wrap: wrap;
}

.departure-row:hover {
    background: #f1f5f9;
}

.departure-row div {
    font-weight: 600;
    color: #334155;
}

.date {
    font-size: 16px;
}

.duration {
    color: #64748b;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.seats {
    color: #ef4444;
    font-weight: 700;
}

.book-btn {
    background: var(--primary);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.book-btn:hover {
    background: var(--dark);
}

.date-range {
    font-weight: 700;
    font-size: 16px;
    color: #334155;
}

.date-range .arrow {
    margin: 0 6px;
    color: #64748b;
}

.end-date {
    color: #64748b;
}

@media (max-width: 768px) {
    .inc-exc-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

.departure-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
    overflow-x: auto;
}

.departure-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--primary);
    background: #f1f5f9;
}

.tab-btn.active {
    background: var(--primary);
    color: #fff;
}

/* ============================================
   TOUR DETAILS TABS (INCLUSIONS / EXCLUSIONS)
   ============================================ */

.inc-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Base Button */
.inc-tab-btn {
    position: relative;
    padding: 12px 26px;

    border-radius: 50px;
    border: 1px solid var(--gray-200);

    background: #fff;
    color: var(--gray-600);

    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: .3px;

    cursor: pointer;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    transition: all .35s cubic-bezier(.4, 0, .2, 1);

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Hover */
.inc-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Active */
.inc-tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 30px var(--primary-glow);
}

/* Active icon */
.inc-tab-btn.active i {
    color: #fff;
}

/* Content animation */
.inc-tab-content {
    animation: fadeTab .35s ease;
}

/* Animation */
@keyframes fadeTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media(max-width:600px) {
    .inc-tab-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* ============================================
   RESPONSIVE LAYOUT FIXES
   ============================================ */
@media (max-width: 991px) {
    .tour-main-row {
        flex-direction: column-reverse !important;
    }
}

/* OFFER BAR */

.offer-bar {
    background: linear-gradient(90deg, #0f172a, #0ea5e9, #f97316);
    background-size: 200% auto;
    animation: gradient-shift 10s ease infinite;
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.offer-bar-content {
    display: flex;
    width: max-content;
    animation: scroll-left 50s linear infinite;
    align-items: center;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    padding-right: 100px;
    flex-shrink: 0;
}

.offer-item i {
    color: var(--white);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-10%);
    }
}

@media (max-width: 991px) {
    body:not(.home) {
        padding-top: 130px;
    }
}

@media (max-width: 768px) {
    .offer-bar-content {
        animation-duration: 40s;
    }

    .offer-item {
        padding-right: 60px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}