/* ========================================
   TravelVista - Modern Travel Agency Website
   Main Stylesheet with Animations & Effects
   ======================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    --primary-color: #00b4d8;
    --primary-dark: #0096c7;
    --primary-light: #48cae4;
    --secondary-color: #ff6b6b;
    --accent-color: #ffd60a;
    --text-dark: #2b2d42;
    --text-light: #8d99ae;
    --bg-light: #f8f9fa;
    --bg-dark: #212529;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
    --gradient-warm: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    --gradient-sunset: linear-gradient(135deg, #ffd60a 0%, #ff6b6b 100%);
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

li {
    list-style: none;
    /* color: black; */
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== LOADING SCREEN - DISABLED ========== */
/* Preloader removed as per user request */
.loading-screen {
    display: none !important;
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled,
.header.header-solid {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    /* color: var(--white); */
    cursor: pointer;
}

.header.scrolled .logo,
.header.header-solid .logo {
    color: var(--text-dark);
}

.logo i {
    font-size: 30px;
    color: var(--primary-color);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* .travelTst{
    color: black;
} */

/* .destinationNav{
    color: var(--primary-color);
} */

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    /* color: black; */
}

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

.header.scrolled .nav-link,
.header.header-solid .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

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



.nav-link{
    color: black;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background:#212529;
    transition: var(--transition);
    border-radius: 2px;
}

.header.scrolled .hamburger span,
.header.header-solid .hamburger span {
    background: var(--text-dark);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-search {
    background: var(--gradient-warm);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 10px;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px; /* Space below fixed navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    animation: fadeInUp 1s ease;
}

.gradient-text {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.2s both;
}

/* ========== SEARCH BAR ========== */
.hero-search {
    margin: 40px 0;
    animation: fadeInUp 1s ease 0.4s both;
}

.search-form {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    flex-wrap: wrap;
}

.search-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    background: var(--white);
}

.search-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.search-item input,
.search-item select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
}

/* ========== HERO STATS ========== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

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

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

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

/* ========== SECTIONS ========== */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 60px;
}

/* ========== DESTINATIONS GRID ========== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.destination-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

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

.destination-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.destination-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--gradient-warm);
    color: var(--white);
}

.destination-badge.popular {
    background: var(--gradient-primary);
}

.destination-badge.trending {
    background: var(--gradient-sunset);
}

.destination-badge.hot-deal {
    background: var(--gradient-warm);
}

.wishlist-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.wishlist-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.wishlist-btn.active i::before {
    content: '\f004';
    font-weight: 900;
}

.destination-content {
    padding: 25px;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.destination-meta .rating {
    color: var(--accent-color);
}

.destination-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.destination-content p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
}

.destination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.price {
    font-size: 14px;
    color: var(--text-light);
}

.price strong {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
}

.duration {
    color: var(--text-light);
    font-size: 14px;
}

/* ========== PARALLAX EFFECT ========== */
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920');
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.parallax .container {
    position: relative;
    z-index: 1;
}

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

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color:#00b4d8;
}

.feature-card p {
    color:#48cae4;
    line-height: 1.8;
}

/* ========== TOUR CARDS ========== */
.tours-swiper {
    padding: 20px 0 60px;
}

.tour-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

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

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    background: var(--gradient-warm);
    color: var(--white);
}

.tour-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.tour-wishlist:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.tour-content {
    padding: 25px;
}

.tour-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
    font-size: 14px;
}

.tour-rating i {
    color: var(--accent-color);
}

.tour-rating span {
    margin-left: 5px;
    color: var(--text-light);
    font-size: 13px;
}

.tour-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.tour-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.new-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ========== TESTIMONIALS ========== */
.testimonials-swiper {
    padding: 20px 0 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 18px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--white);
}

.author-info h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 3px;
}

.author-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ========== NEWSLETTER ========== */
.newsletter {
    background: var(--bg-light);
}

.newsletter-container {
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile newsletter adjustments */
@media (max-width: 768px) {
    .newsletter-container {
        padding: 40px 20px;
    }
    
    .newsletter-content h2 {
        font-size: 28px;
    }
    
    .newsletter-content i {
        font-size: 48px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
}

.newsletter-content i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.newsletter-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.newsletter-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 30px;
    color: var(--primary-color);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

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

.footer-bottom i {
    color: var(--secondary-color);
}

/* ========== SCROLL TO TOP ========== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

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

/* ========== PAGE HERO ========== */
.page-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-hero-content {
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.page-hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
}

.breadcrumb i {
    font-size: 10px;
}

/* ========== FILTER BAR ========== */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.filter-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-select {
    padding: 12px 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

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

.filter-search {
    flex: 1;
    min-width: 250px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.filter-search input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.filter-search input:focus {
    border-color: var(--primary-color);
}

.filter-search i {
    position: absolute;
    right: 15px;
    color: var(--text-light);
}

.results-info {
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.no-results i {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.page-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.page-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.page-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== TOUR DETAILED CARD ========== */
.tours-grid {
    display: grid;
    gap: 40px;
}

.tour-card-detailed {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tour-card-detailed:hover {
    box-shadow: var(--shadow-lg);
}

.tour-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.tour-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-badge-top {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: var(--gradient-primary);
    color: var(--white);
}

.tour-badge-top.hot-deal {
    background: var(--gradient-warm);
}

.tour-wishlist-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.tour-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tour-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.tour-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tour-price-box {
    text-align: right;
    padding: 15px 20px;
    background: var(--gradient-primary);
    border-radius: 15px;
    color: var(--white);
}

.tour-price-box .from {
    font-size: 12px;
    display: block;
}

.tour-price-box .price {
    font-size: 32px;
    font-weight: 700;
    display: block;
}

.tour-price-box .per {
    font-size: 12px;
    display: block;
}

.tour-description {
    color: var(--text-light);
    line-height: 1.8;
}

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

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
}

.meta-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.meta-item span {
    font-size: 14px;
    font-weight: 600;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tour-features span {
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-dark);
}

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

/* ========== CTA SECTION ========== */
.cta-section {
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920');
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* ========== SWIPER CUSTOMIZATION ========== */
.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--primary-color);
    background: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .tour-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .tour-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        /* background-color:var(--bg-dark); */
        /* flood-color: #48cae4; */
    }
    
    /* Mobile navbar improvements */
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .nav-actions .btn {
        padding: 8px 16px;
        font-size: 13px;
        gap: 6px;
    }
    
    .nav-actions .btn i {
        font-size: 12px;
    }
    
    .hamburger {
        padding: 8px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo i {
        font-size: 24px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: var(--text-dark);
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    /* Add margin below navbar for all sections */
    .hero {
        margin-top: 70px;
    }
    
    .page-hero {
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .filter-bar {
        flex-direction: column;
    }
    
    .tour-meta-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .tour-header {
        flex-direction: column;
    }
    
    .tour-price-box {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Extra small mobile adjustments */
    .nav-actions .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo i {
        font-size: 22px;
    }
    
    .newsletter-content h2 {
        font-size: 24px;
    }
    
    .newsletter-content p {
        font-size: 14px;
    }
}