/* ---
   Your Travel Co. - Modern Stylesheet
   Design Philosophy: Aspirational Modernism
--- */

/* --- 1. CSS Variables (The Foundation) --- */
/* This makes it easy to change your entire site's color scheme in one place! */
:root {
    --primary-color: #0d1b2a;      /* Deep, trustworthy navy */
    --secondary-color: #f8f9fa;   /* Off-white for clean backgrounds */
    --accent-color: #00a896;       /* Vibrant teal for CTAs and highlights */
    --accent-gradient: linear-gradient(45deg, #00a896, #02c39a);
    --text-color: #343a40;         /* Dark grey for readable text */
    --light-text-color: #ffffff;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-slider: 0 5px 15px rgba(0, 0, 0, 0.1);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Lato', sans-serif;
}

/* --- 2. Global & Typography Styles --- */
body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    background-color: var(--secondary-color);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary-color);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--primary-color);
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
    display: none!important;
}

/* --- 3. Reusable Components (Buttons, Cards) --- */
.btn-primary {
    background: var(--accent-gradient);
    border: none;
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 50px; /* Pill-shaped button */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 168, 150, 0.4);
}

.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}

/* --- 4. Header & Navigation --- */
.navbar {
    padding: 1rem 0;
    transition: background-color 0.3s ease;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}
.nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-color) !important;
    position: relative;
    padding-bottom: 0.5rem;
}
/* Modern underline hover effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}
.header-contact a {
    color: var(--primary-color);
}
.header-contact i {
    color: var(--accent-color);
}

.header-contact-block {
    display: flex;
    align-items: center;
    gap: 12px; /* Space between the icons and the numbers */
}

.contact-icons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px; /* Small space between icons */
}

.contact-icons .fa-phone {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.contact-icons .fa-whatsapp {
    color: #25D366; /* Official WhatsApp Green */
    font-size: 1.1rem; /* Slightly larger for prominence */
}

.contact-details {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.contact-line-main {
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.contact-line-main:hover {
    color: var(--accent-color);
}

.contact-line-secondary {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-line-secondary:hover {
    color: var(--accent-color);
}

/* --- 5. Hero Section & Enquiry Form (Glassmorphism) --- */
.hero {
    background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1950&q=80') no-repeat center center;
    background-size: cover;
    padding: 50px 0;
    position: relative;
    color: var(--light-text-color);
}
.hero::before { /* Dark overlay for text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.5));
}
.hero .container {
    position: relative; /* Ensure content is above the overlay */
}

/* The Glassmorphism Form */
.glass-form {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    backdrop-filter: blur(15px); /* The "frosting" effect */
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.glass-form h2 {
    color: var(--light-text-color);
}
.glass-form .form-control, .glass-form .form-select {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--light-text-color);
    border-radius: 8px;
    padding: 12px;
}
.glass-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.glass-form .form-select {
    /* Style for the dropdown arrow */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
.glass-form .form-label {
    color: rgba(255, 255, 255, 0.8);
}

.glass-form .form-select option {
    color: var(--primary-color); /* Use our dark primary color for the text */
    background-color: #fff;      /* Ensure a solid white background */
}

/* ---
   17. INFINITE PARTNERS LOGO SCROLLER
--- */

.partners-section {
    background-color: var(--secondary-color); /* A very light grey background */
    padding: 60px 0;
}

.logo-scroller {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    /* This creates a soft fade effect at the edges */
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.scroller-inner {
    display: flex;
    gap: 3rem; /* Space between logos */
    width: fit-content; /* Important for the animation */
}

/* The animation itself */
.scroller-inner {
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    to {
        transform: translateX(calc(-50% - 1.5rem)); /* Move by half the width + half the gap */
    }
}

.scroller-inner img {
    height: 65px; /* Uniform height for all logos */
    max-width: 150px;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease-in-out;
}

.scroller-inner img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* --- 6. Content Section Styles --- */
.section-title {
    margin-bottom: 4rem;
}
.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}
.icon-feature {
    font-size: 3rem;
    color: var(--accent-color);
}


/* ---
   19. DYNAMIC SUBSCRIBE CTA BANNER
--- */
.pre-footer-cta {
    position: relative;
    background-color: var(--primary-color); /* The dark navy base color */
    color: var(--light-text-color);
    padding: 100px 0;
    overflow: hidden; /* Hides parts of the shapes that go outside */
}

/* This is the new SVG container */
.cta-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Sits just above the background color */
    pointer-events: none; /* Makes it un-clickable */
}

/* This is where we control the color of the shapes */
.cta-background-shapes svg path {
    fill: #1b2f45; /* A slightly lighter shade of your primary navy */
    opacity: 0.5;
}

/* Ensure the main content is on top of the background shapes */
.pre-footer-cta .container {
    position: relative;
    z-index: 2;
}

.cta-eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.pre-footer-cta h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-text-color);
    margin-bottom: 1rem;
}

.pre-footer-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}


/* Styling the button to be white with dark text */
.btn-cta-light {
    background-color: #fff;
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-cta-light:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

/* Main Footer Area */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7); /* Soft white for text */
    padding: 60px 0 0 0;
}

.footer-heading {
    color: var(--light-text-color);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}
/* The accent underline for headings */
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--light-text-color);
    padding-left: 5px;
}
.footer-links i {
    width: 20px;
}

.footer .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text-color);
    font-size: 1rem;
    margin-right: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.footer .social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    text-align: center;
}
.footer-bottom a {
    color: var(--light-text-color);
    font-weight: 600;
}

/* --- 8. UX Animations (Fade-in on Scroll) --- */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}



/* ---
   10. ADVANCED UI/UX ENGAGEMENT STYLES
--- */

/* 1. Immersive Hero with Ken Burns Effect */
/* This creates a slow, subtle zoom and pan on the hero image, making it feel alive */
.hero-immersive {
    overflow: hidden; /* Important for the zoom effect */
}
.hero-immersive::after { /* The background image is now on a pseudo-element */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center center;
    animation: ken-burns 20s ease-out infinite;
    z-index: -1; /* Place it behind the overlay and content */
}
@keyframes ken-burns {
    0% { transform: scale(1.0) translateX(0%); }
    50% { transform: scale(1.1) translateX(-2%); }
    100% { transform: scale(1.0) translateX(0%); }
}
/* The dark overlay remains on the main hero element */
.hero::before {
    background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.6));
    z-index: 0;
}


/* 2. Interactive Destination Cards */
.destination-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}
.destination-card .card-img {
    transition: transform 0.5s ease;
}
.destination-card:hover .card-img {
    transform: scale(1.05);
}
.destination-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    color: var(--light-text-color);
    transform: translateY(35%); /* Hides the button initially */
    transition: transform 0.4s ease;
}
.destination-card:hover .card-body {
    transform: translateY(0);
}
.destination-card .card-title {
    color: var(--light-text-color);
    margin-bottom: 0.25rem;
}
.destination-card .card-text {
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}
.destination-card:hover .card-text {
    opacity: 1;
}


/* 3. Enhanced Form Field Interaction */
.glass-form .form-control:focus,
.glass-form .form-select:focus {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.3); /* Creates a 'glow' effect */
    outline: none;
}


/* 4. Animated Stats Counter Section */
.stats-section {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 80px 0;
}
.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
}
.stat-item p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: -10px;
}


/* ---
   11. HAJJ & UMRAH PAGE ENHANCEMENTS
--- */

/* The main wrapper for the section with the background image */
.image-bg-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Creates a beautiful parallax effect on scroll */
}

/* Dark overlay for readability */
.image-bg-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.7));
    z-index: 1; /* Sits above the background but below the content */
}

/* Ensure the content (container) sits on top of the overlay */
.image-bg-section .container {
    position: relative;
    z-index: 2;
}

/* Style the informational text on the left to be light */
.info-panel h2 {
    color: var(--light-text-color);
}
.info-panel p,
.info-panel .feature-list {
    color: rgba(255, 255, 255, 0.9);
}
.info-panel .feature-list strong {
    color: var(--light-text-color);
}

/* Page Header/Banner */
.page-header {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center 70%;
    color: var(--light-text-color);
    text-align: center;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(13, 27, 42, 0.6), rgba(13, 27, 42, 0.4));
}
.page-header .container {
    position: relative;
}
.page-header h1 {
    font-size: 3.5rem;
    color: var(--light-text-color);
}
.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 1rem auto 0 auto;
}

/* Styled Feature List (replaces the basic ul) */
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.feature-list .icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 15px;
    width: 30px; /* Aligns the text nicely */
    text-align: center;
    margin-top: 4px;
}

/* Light Glassmorphism Card for the Form */
.form-card-light {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Testimonial Block Style */
.testimonial-quote {
    background-color: #e9ecef;
    border-left: 5px solid var(--accent-color);
    padding: 2rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.testimonial-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}
.testimonial-quote footer {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* ---
   13. PREMIUM PACKAGE SLIDER STYLES
--- */

.packages-section {
    background-color: var(--secondary-color); /* Light background to separate sections */
}

.package-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-slider);
    background-color: #fff;
    overflow: hidden; /* Important for the tag */
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures all cards in a row have the same height */
}
.package-card .card-img-top {
    height: 200px;
    object-fit: cover;
}
.package-card .card-body {
    flex-grow: 1; /* Pushes the footer to the bottom */
    position: relative;
    padding-top: 2.5rem; /* Space for the tag */
}
.package-tag {
    position: absolute;
    top: -1px;
    left: 20px;
    background: var(--accent-gradient);
    color: #fff;
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-primary);
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
}
.package-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}
.package-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    color: #6c757d;
}
.package-features li {
    margin-bottom: 0.5rem;
}
.package-features i {
    color: var(--accent-color);
    margin-right: 10px;
}
.package-card .card-footer {
    background-color: #fff;
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.package-price {
    color: var(--primary-color);
    font-weight: 700;
}
.package-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #6c757d;
}


/* Custom Swiper Navigation Styles */
.swiper-nav-wrapper {
    position: relative;
}
.swiper-button-next, .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: var(--accent-color);
    color: #fff !important;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.1rem !important;
    font-weight: 900;
}
.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
    transition: background-color 0.3s ease;
}
.swiper-pagination .swiper-pagination-bullet-active {
    background: var(--accent-gradient);
}

/* ---
   14. TOP DESTINATIONS SLIDER & CARD STYLES
--- */

.deals-section {
    background-color: #fff; /* A clean white background for this section */
}

/* We'll use a card style very similar to the package-card for consistency */
.deal-card {
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}
.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.deal-card .card-img-top {
    height: 220px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.deal-card .card-body {
    flex-grow: 1;
}
.deal-card .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}
.deal-card .card-text {
    color: #6c757d;
    font-size: 0.95rem;
}
.deal-card .card-footer {
    background-color: transparent;
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.deal-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}
.deal-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: #6c757d;
}


/* ---
   16. ELEGANT PROMO BANNER
--- */

.promo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1050; /* High z-index to be on top of everything */
    background-color: var(--primary-color);
    color: var(--light-text-color);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    
    /* Animation setup */
    transform: translateY(110%); /* Start off-screen */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* State for when the banner is visible */
.promo-banner.is-visible {
    transform: translateY(0);
}

.promo-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1200px; /* Aligns with container width */
    margin: 0 auto;
}

.promo-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.promo-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.promo-text p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.promo-text strong {
    color: #fff;
    font-weight: 600;
}

.promo-text a {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}
.promo-text a:hover {
    color: #fff;
}

.promo-close-btn {
    flex-shrink: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
    line-height: 1;
}
.promo-close-btn:hover {
    color: #fff;
}

/* Hide parts of the banner on smaller screens to prevent wrapping */
@media (max-width: 767px) {
    .promo-icon {
        display: none; /* Hide the icon on mobile */
    }
    .promo-text p {
        font-size: 0.85rem;
    }
}


/* ---
   18. STORY-DRIVEN "WHY US" SECTION
--- */

.why-us-section {
    background-color: #fff;
    overflow: hidden; /* Important for containing animations */
}

.why-us-image-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.why-us-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease-out;
}
/* A subtle zoom effect when it scrolls into view */
.is-visible .why-us-image-container img {
    transform: scale(1.05);
}

.eyebrow-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.eyebrow-text::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: var(--accent-gradient);
    border-radius: 50%;
}

.feature-check-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    columns: 2; /* Creates two columns */
    -webkit-columns: 2;
    -moz-columns: 2;
    gap: 1rem;
}
.feature-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    /* Prevents items from breaking across columns */
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}
.feature-check-list .fa-check-circle {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Make it a single column on mobile for better readability */
@media (max-width: 576px) {
    .feature-check-list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

/* ---
   20. CUSTOM AUTOCOMPLETE STYLES
--- */
.ui-autocomplete {
    position: absolute;
    z-index: 1051; /* On top of the promo banner */
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
    margin-top: 8px;
    padding: 0.5rem 0;
    list-style: none;
}

/* Individual suggestion items */
.ui-menu-item .ui-menu-item-wrapper {
    padding: 10px 18px;
    font-size: 1rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: background-color 0.2s ease;
    border: none;
    outline: none;
}

/* The highlighted/hovered item */
.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}


/* ---
   22. ELEGANT FLOATING ACTION WIDGET
--- */

.floating-action-widget {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1051; /* IMPORTANT: Raise z-index to be *above* the promo banner */
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Add a transition for the 'bottom' property to make the movement smooth */
    transition: bottom 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* This new class will be added/removed by JavaScript */
.floating-action-widget.is-raised {
    /* Adjust this value to match your promo banner's height + bottom margin */
    /* (16px padding * 2) + 24px text + ~20px extra = ~76px */
    bottom: 95px; 
}

.fab-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%; /* Perfect circle */
    background: var(--accent-gradient);
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fab-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 168, 150, 0.4);
}

/* The tooltip that appears on hover */
.fab-button .tooltip-text {
    position: absolute;
    left: 120%; /* Position it to the right of the button */
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none; /* Can't click the tooltip itself */
}

.fab-button:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}


/* ---
   23. DESTINATIONS PAGE & INTERACTIVE FILTER
--- */

/* Filter Navigation Bar */
.filter-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3rem;
    flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
}
.filter-btn {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid #e0e0e0;
    padding: 10px 25px;
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    background-color: var(--secondary-color);
    border-color: #ccc;
}
.filter-btn.active {
    background: var(--accent-gradient);
    color: #fff;
    border-color: var(--accent-color);
}

/* Destination Showcase Cards */
.destination-grid-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.destination-showcase-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background-color: #fff;
    height: 100%;
    transition: all 0.3s ease;
}
/* THIS IS THE NEW RULE TO ADD */
.destination-showcase-card .card-footer {
    display: flex; /* 1. Turn on Flexbox */
    justify-content: space-between; /* 2. Pushes items to opposite ends */
    align-items: center; /* 3. Vertically aligns them in the middle */
    background-color: transparent;
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.25rem;
}
.destination-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.destination-showcase-card .card-img-container {
    position: relative;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    overflow: hidden;
}
.destination-showcase-card .card-img-top {
    height: 220px;
    object-fit: cover;
}
.destination-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(13, 27, 42, 0.7);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Custom Quote CTA Section */
.custom-quote-cta {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
}



/* ---
   24. ABOUT US PAGE & TEAM CARD STYLES
--- */

.team-card {
    text-align: center;
}

.team-img-wrapper {
    position: relative;
    margin: 0 auto 1.5rem auto;
    width: 180px;
    height: 180px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow);
    border: 5px solid #fff;
}

.team-card .team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.team-card .team-title {
    color: var(--accent-color);
    font-weight: 600;
    font-family: var(--font-primary);
    margin-bottom: 1rem;
}

.team-card .team-socials a {
    color: #adb5bd;
    margin: 0 8px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.team-card .team-socials a:hover {
    color: var(--primary-color);
}


/* ---
   25. ABOUT US PAGE - CONCLUDING CTA
--- */

.concluding-cta-section {
    background-color: var(--secondary-color); /* The light grey background */
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.concluding-cta-box {
    background-color: #fff;
    padding: 3rem;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.concluding-cta-box .btn-outline-primary {
    border-width: 2px;
    font-weight: 600;
}

/* ---
   26. POLISHED SECONDARY BUTTON STYLE
--- */

.btn-secondary-custom {
    color: var(--primary-color);
    background-color: transparent;
    border: 2px solid #e0e0e0; /* A soft, light grey border */
    padding: 10px 28px; /* Slightly adjusted padding for the thicker border */
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    color: var(--primary-color);
    background-color: var(--secondary-color); /* The very light grey background fill */
    border-color: #adb5bd; /* A slightly darker border on hover */
    transform: translateY(-2px);
}


/* ---
   27. CONTACT US PAGE STYLES
--- */

.contact-info-card {
    background-color: var(--secondary-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
}
.contact-info-card .icon-wrapper {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.contact-info-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
}
.contact-info-card a {
    color: var(--text-color);
    text-decoration: none;
}
.contact-info-card a:hover {
    color: var(--accent-color);
}

.contact-form-section {
    padding: 80px 0;
}

.map-container {
    height: 450px;
    width: 100%;
}
.map-container iframe {
    /* Modern grayscale filter for the map */
    filter: grayscale(1) contrast(1.2) opacity(0.8);
    transition: filter 0.3s ease;
    width: 100%;
    height: 100%;
    border: 0;
}
.map-container iframe:hover {
    filter: grayscale(0);
}
/* --- 28. DYNAMIC ENQUIRY FORM STYLES (REFINED) --- */

/* Radio Button Toggle Style */
.query-type-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    padding: 5px;
    max-width: 55%;
    margin-left: auto;
    margin-right: auto;
}

.query-type-selector .form-check-input {
    display: none;
}

.query-type-selector .form-check-label {
    padding: 8px 20px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
    white-space: nowrap; /* THIS IS THE FIX for the text wrapping issue */
}

.query-type-selector .form-check-input:checked + .form-check-label {
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.query-type-selector .form-check-label:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Multi-City Form Specifics (NEW & IMPROVED) */
.multi-leg-wrapper {
    padding: 1.25rem;
    border-radius: 10px;
    background-color: rgba(0,0,0,0.1); /* Subtle background to group fields */
}

/* Add a top margin and border to all but the first leg for clear separation */
.multi-leg-wrapper:not(:first-child) {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.leg-title {
    color: var(--light-text-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

#multi-city-form .btn-outline-light {
    border-radius: 50px;
    font-weight: 600;
    padding: 5px 15px;
}

#multi-city-form .btn-remove-leg {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    line-height: 1; /* Aligns the icon better */
    transition: color 0.3s ease, transform 0.3s ease;
}

#multi-city-form .btn-remove-leg:hover {
    color: #ff4d4d;
    transform: scale(1.2);
}

/* Responsive adjustments for the radio toggles */
@media (max-width: 480px) {
    .query-type-selector {
        max-width: 100%;
        gap: 5px;
    }
    .query-type-selector .form-check-label {
        padding: 8px 12px;
        font-size: 0.85rem; /* Slightly smaller font for tight spaces */
    }
    
    /* On mobile, remove the wrapper background and just use a border for separation */
    .multi-leg-wrapper {
        background-color: transparent;
        padding-left: 0;
        padding-right: 0;
    }
    .multi-leg-wrapper:not(:first-child) {
        padding-top: 1.25rem;
    }
}

.fab-pulsing {
    /* Bind the animation to this element */
    animation: pulse-animation 2s infinite;
}

/* This is the animation definition */
@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(0, 168, 150, 0.4); /* Use the accent color for the glow */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* We also need to adjust the hover state for this specific button */
/* so that the manual hover overrides the animation smoothly */
.fab-pulsing:hover {
    animation-play-state: paused; /* Pause the pulse animation on hover */
    transform: scale(1.1); /* Apply the standard hover scale */
    box-shadow: 0 8px 25px rgba(0, 168, 150, 0.4); /* Apply the standard hover shadow */
}