/* Base Styles */
:root {
    /* Premium palette: deep navy + refined gold accents */
    --primary-color: #0F3D56;
    /* Deep teal-navy */
    --primary-hover: #0B2C3F;
    /* Darker hover */
    --secondary-color: #D4AF37;
    /* Gold */
    --accent-color: #6BC5D2;
    /* Soft teal accent */
    --dark-color: #0B1220;
    /* Near-black navy */
    --light-color: #F7F7F8;
    /* Subtle light */
    --text-color: #1F2937;
    /* Slate */
    --text-light: #6B7280;
    /* Muted */
    --border-color: #E5E7EB;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --shadow-sm: none;
    --shadow: none;
    --shadow-md: none;
    --shadow-lg: none;
    --transition: all 0.3s ease;
    --border-radius: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 1rem;
    /* Bridge to Bootstrap tokens */
    --bs-primary: var(--primary-color);
}

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

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f2f2f2;
    /* fallback */
    background-image: url('../img/brushed-alum-dark.png');
    background-repeat: repeat;
    background-size: auto;
    /* natural texture tiling */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

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

a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

p {
    margin-bottom: 1rem;
}

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

ul,
ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: none;
}

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

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: none;
}

/* Header Styles */
.top-bar {
    font-size: 0.875rem;
    padding: 0.5rem 0;
    background-color: var(--dark-color) !important;
}

.top-bar .contact-info span {
    margin-right: 1.5rem;
}

.top-bar .social-links a {
    color: white;
    margin-left: 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.top-bar .social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: none;
    transition: var(--transition);
}

.main-header.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.5s ease-out;
    box-shadow: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-nav .nav-link {
    font-weight: 500;
    position: relative;
}

.dropdown-menu {
    border: none;
    box-shadow: none;
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border: 1px solid var(--border-color);
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

/* Mobile Menu */
.offcanvas {
    max-width: 300px;
    width: 85%;
}

.offcanvas-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
}

.offcanvas-body {
    padding: 1.5rem;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Simple Image Slider */
.simple-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide_1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide_1.active {
    opacity: 1;
}

.slide_1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 2rem;
    text-align: center;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: none;
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 0;
    text-shadow: none;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Menu Slider */
.menu-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.menu-slider.active {
    opacity: 1;
    visibility: visible;
}

.menu-slider-content {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background-color: #fff;
    box-shadow: none;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 1101;
}

.menu-slider.active .menu-slider-content {
    right: 0;
}

.menu-slider-header {
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-slider-header h5 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.menu-slider-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.menu-slider-close:hover {
    color: #000;
}

.menu-slider-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.menu-slider-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-slider-nav>li {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.menu-slider-nav>li:last-child {
    border-bottom: none;
}

.menu-slider-nav a {
    display: block;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
    position: relative;
}

.menu-slider-nav>li>a {
    font-weight: 500;
}

.menu-slider-nav a:hover,
.menu-slider-nav a.active {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.menu-item-has-children>a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.menu-item-has-children>a:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.menu-item-has-children.active>a:after {
    transform: rotate(180deg);
}

.sub-menu {
    display: none;
    background-color: #f9f9f9;
    padding-left: 15px;
    list-style: none;
}

.sub-menu a {
    padding: 10px 25px 10px 35px;
    font-size: 0.9rem;
    color: #555;
}

.sub-menu a:hover {
    background-color: #f0f0f0;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: none;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: none;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 90vh;
    max-height: 800px;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-color);
}

.hero-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: none;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Section */
.search-section {
    position: relative;
    margin-top: -50px;
    z-index: 10;
}

.search-tabs {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: none;
    padding: 1.5rem;
}

.nav-tabs {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-light);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    margin-right: 0.5rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    transition: var(--transition);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom: 3px solid var(--primary-color);
}

.search-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.search-form .form-control,
.search-form .form-select {
    height: 50px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Featured Destinations */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.destination-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
    height: 100%;
}

.destination-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

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

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}

.destination-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.destination-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--light-color);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 2rem;
}

.why-choose-us .col-md-4 {
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.why-choose-us .col-md-4:hover {
    background-color: white;
    box-shadow: none;
    transform: translateY(-5px);
}

.why-choose-us .col-md-4:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
}

/* Testimonials */
.testimonial-slider {
    padding: 1rem;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: none;
    margin: 1rem 0;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(37, 99, 235, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #cbd5e0;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 4px;
}

/* Offers Swiper pagination (mobile-friendly) */
.offers-swiper {
    position: relative;
    padding-bottom: 18px;
    /* room for dots so they don't overlap cards */
}

.offers-swiper .swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    /* adjust as needed */
    width: 100%;
    text-align: center;
    pointer-events: none;
    /* dots won’t block card interactions */
}

.offers-swiper .swiper-pagination-bullet {
    background: var(--secondary-color);
    /* gold */
    opacity: 0.35;
    width: 6px;
    height: 6px;
    margin: 0 4px !important;
}

.offers-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (min-width: 768px) {
    .offers-swiper .swiper-pagination {
        display: none;
        /* show dots only on small screens */
    }
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.newsletter h3 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.newsletter-form .form-control {
    height: 50px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

.newsletter-form .btn {
    height: 50px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

.newsletter-form .btn:hover {
    background-color: #111827;
    border-color: #111827;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-widget h5 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
    position: absolute;
    left: -15px;
}

.footer-links a:hover {
    color: white;
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
    min-width: 20px;
}

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

.footer-contact a:hover {
    color: white;
    text-decoration: none;
}

.social-media-bar {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.social-icon {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: none;
}

.social-icon .tooltip {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%) scale(0);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-icon:hover .tooltip {
    transform: translate(-50%, -120%) scale(1);
    opacity: 1;
}

.social-icon.facebook {
    background: #3b5999;
}

.social-icon.twitter {
    background: #55acee;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: none;
}

.social-icon:active {
    transform: translateY(0) scale(0.95);
}

.social-icon .tooltip {
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: none;
}

.social-icon .tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: #333 transparent transparent;
}

.top-bar .social-media-bar {
    gap: 8px;
}

.top-bar .social-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.top-bar .social-icon:hover {
    color: white;
    transform: translateY(-3px);
}

.footer .social-media-bar {
    justify-content: flex-start;
    margin-top: 20px;
}

.footer .social-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer .social-icon:hover {
    color: white;
}

@media (max-width: 767.98px) {
    .social-media-bar {
        justify-content: center;
    }

    .top-bar .social-media-bar {
        justify-content: flex-end;
    }

    .footer .social-media-bar {
        justify-content: center;
    }
}

.payment-methods img {
    margin-right: 0.5rem;
    height: 30px;
    width: auto;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: none;
    border: none;
}

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

.back-to-top:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-3px);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-slider {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .search-section {
        margin-top: -30px;
    }

    .footer {
        text-align: center;
    }

    .footer-widget h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .payment-methods {
        justify-content: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    html {
        font-size: 15px;
    }

    .hero-slider {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .search-section {
        margin-top: -20px;
    }

    .search-tabs {
        padding: 1rem;
    }

    .nav-tabs .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .footer-widget {
        margin-bottom: 2.5rem;
    }

    .footer-widget:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .hero-slider {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .search-section {
        margin-top: -15px;
    }

    .search-tabs {
        padding: 1rem 0.75rem;
    }

    .nav-tabs .nav-link {
        padding: 0.5rem 0.5rem;
        font-size: 0.8rem;
        margin-right: 0.25rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        left: 20px;
    }
}

/* Print Styles */
@media print {

    .no-print,
    .navbar,
    .footer,
    .back-to-top,
    .whatsapp-float {
        display: none !important;
    }

    body {
        padding: 0;
        font-size: 12pt;
        line-height: 1.3;
    }

    a[href]::after {
        content: " ("attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
        color: #6b7280;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .row {
        display: block;
    }

    .col-md-4,
    .col-md-6,
    .col-lg-4,
    .col-lg-3 {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .destination-card {
        page-break-inside: avoid;
    }
}


.offers-section {
    background: white;
    border-radius: 7px;
    box-shadow: none;
    margin: 20px;
    padding: 24px;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.view-all-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all-link:hover {
    color: var(--primary-hover);
}

.slider-nav-buttons {
    display: flex;
    gap: 8px;
}

/* Hide slider navigation on mobile */
@media (max-width: 767.98px) {
    .slider-nav-buttons {
        display: none;
    }
}

.slider-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.slider-nav-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.slider-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-tabs {
    border-bottom: none;
    margin-bottom: 24px;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-light);
    font-weight: 500;
    padding: 5px 9px;
    border-bottom: 3px solid transparent;
    background: none;
    transition: all 0.3s ease;
    position: relative;
    text-wrap-mode: nowrap;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: none;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border-color: transparent;
}

.offers-slider {
    position: relative;
    overflow: hidden;
}

.offers-container {
    display: flex;
    transition: transform 0.3s ease;
    gap: 20px;
}

.offer-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    flex: 0 0 400px;
    height: 280px;
    display: flex;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.card-image {
    width: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.85);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.4;
}

.card-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
}

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

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

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

.bank-logo {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    box-shadow: none;
}

.vacation-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}

/* Specific card image backgrounds */
.card-flight {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

.card-hotel {
    background: linear-gradient(135deg, #00cec9 0%, #00b894 100%);
}

.card-vacation {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
}

.card-travel {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
}

.card-emi {
    background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
}

.card-book {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

/* Real images for the cards */
.card-flight-img {
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80');
}

.card-hotel-img {
    background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80');
}

.card-vacation-img {
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80');
}

.card-travel-img {
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80');
}

.card-emi-img {
    background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80');
}

.card-book-img {
    background-image: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80');
}

@media (max-width: 768px) {
    .offers-section {
        margin: 10px;
        padding: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-header {
        gap: 10px;
        align-items: flex-start;
    }

    .offer-card {
        flex: 0 0 350px;
        height: 260px;
    }

    .card-image {
        width: 120px;
    }

    .card-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .offer-card {
        flex: 0 0 300px;
        flex-direction: column;
        height: auto;
    }

    .card-image {
        width: 100%;
        height: 120px;
    }
}

/* </style> */





















.hero-swiper {
    height: 70vh;
    width: 100%;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
}

.hero-slide .container {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 600px;
}

.hero-slide h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-swiper {
        height: 30vh;
    }

    .hero-slide h2 {
        font-size: 1.8rem;
    }
}













/* Guest Selector Styles */
.guest-selector-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-top: 5px;
    z-index: 1000;
    box-shadow: none;
}

.guest-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.guest-option:last-child {
    border-bottom: none;
}

.guest-label {
    flex: 1;
}

.guest-label span {
    display: block;
    font-weight: 500;
    color: #333;
}

.guest-label small {
    font-size: 12px;
    color: #6c757d;
}

.guest-counter {
    display: flex;
    align-items: center;
}

.guest-counter button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 14px;
    line-height: 1;
}

.guest-counter span {
    min-width: 30px;
    text-align: center;
    font-weight: 500;
}

.guest-dropdown-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.guest-dropdown-footer .btn {
    margin-left: 10px;
    padding: 5px 15px;
}

/* Search Section Styles */
.search-section {
    position: relative;
    z-index: 10;
    margin-top: -157px;
    border-radius: 10px;
}

.search-tabs .nav-pills {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 10px;
    border-radius: 50px;
    display: inline-flex;
    border: 1px solid var(--border-color);
    gap: 6px;
}

.search-tabs .nav-link {
    color: #495057;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    margin: 0 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.search-tabs .nav-link.active {
    background: #521269;
    color: white;
    box-shadow: none;
    border-color: var(--primary-color);
}

.search-tabs .nav-link i {
    margin-right: 8px;
}

.tab-content {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    backdrop-filter: saturate(180%) blur(6px);
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.input-group-text {
    border: 1px solid #dee2e6;
    border-right: none;
    background: #fff;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.form-control,
.form-select {
    border: 1px solid #dee2e6;
    border-left: none;
    padding-left: 0.5rem;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    height: 44px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.btn-primary {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .search-tabs .nav-pills {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 6px;
    }

    .search-tabs .nav-link {
        white-space: nowrap;
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .search-section {
        margin-top: -15px;
    }
}

@media (max-width: 767.98px) {
    .form-group {
        margin-bottom: 1rem;
    }

    .search-section {
        margin: 0 -15px;
        border-radius: 0;
    }

    .tab-content {
        padding: 15px !important;
    }

    .search-tabs .nav-pills {
        border-radius: 8px;
    }
}









/* Destination Slider Styles */
.destination-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-content {
    border-radius: 0 0 0.25rem 0.25rem;
    transition: all 0.3s ease;
}

.destination-card .card {
    overflow: hidden;
}

.destination-card img {
    transition: transform 0.5s ease;
}

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

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .section-header {
        margin-bottom: 0.5rem !important;
    }

    .destination-card {
        margin-bottom: 1rem;
    }
}













.top-destinations {
    padding: 60px 0;
    position: relative;
}

.destinations-swiper {
    padding: 20px 0 40px;
}

.destination-card {
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.card {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    margin: 0 5px;
}

.card-img-top {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .card-img-top {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.rating-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-weight: 600;
    color: #333;
}

.location {
    font-size: 0.9rem;
    color: #666;
}

.location i {
    margin-right: 5px;
}

.btn-outline-primary {
    border-width: 1px;
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--bs-primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--bs-primary);
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: none;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--bs-primary);
    color: white;
}

/* Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--bs-primary);
    transform: scale(1.2);
}