:root {
    /* =========================================
       1. BRAND COLORS
       ========================================= */
       /*#1c5181*/
    --brand-dark-blue:#1f4973;
    --brand-dark-blue-hover: #49749a;
    --brand-teal: #00829B;
    --brand-teal-hover: #006b80;
    --brand-teal-light: rgba(0, 130, 155, 0.1);

    /* =========================================
       2. NEUTRALS & BACKGROUNDS
       ========================================= */
    --bg-main: #fbfbfb;          /* Main body background */
    --bg-light: #f8f9fa;         /* Hover states, light sections */
    --bg-second :#e9f1f9;
    --bg-white: #ffffff;
    --bg-dark: #000000;          /* Hero background base */
    
    --text-main: #333333;
    --text-muted: #6c757d;
    --text-inverse: #ffffff;     /* Text on dark/brand backgrounds */
    
    --border-color: #e9ecef;
    --border-color-dark: #dddddd; /* Used for menus/buttons */

    /* =========================================
       3. SEMANTIC & UTILITY COLORS (From your CSS)
       ========================================= */
       /*#d9534f  */
    --color-destination: #a33a39; /* Red search icon */
    --color-date: #f0ad4e;        /* Yellow/Orange search icon */
    --color-tour-type: #5bc0de;   /* Blue search icon */
    
    --color-star-rating: #ffc107;
    
    /* Trust Badges */
    --color-tripadvisor: #00af87;
    --color-google: #4285F4;
    --color-trustpilot: #00b67a;

    /* =========================================
       4. TYPOGRAPHY
       ========================================= */
    --font-heading: "Poppins", sans-serif;
    --font-body:  "Poppins", sans-serif;
    
    --text-xs: 0.8rem;     /* 12.8px */
    --text-sm: 0.85rem;    /* 13.6px - Top bar, labels */
    --text-base: 1rem;     /* 16px - Standard body */
    --text-md: 1.1rem;     /* 17.6px */
    --text-lg: 1.25rem;    /* 20px */
    --text-xl: 1.8rem;     /* 28.8px - Section titles */
    --text-2xl: 2.5rem;    /* 40px - Mobile hero */
    --text-3xl: 3.5rem;    /* 56px - Desktop hero */


    /* Standard Heading Sizes */
    /* --h1-size: 3.5rem; */   /* 56px */
    /* --h2-size: 3rem;  */   /* 48px */
    /* --h3-size: 2.25rem; */ /* 36px */
    /* --h4-size: 1.75rem; */ /* 28px */
    /* --h5-size: 1.5rem; */  /* 24px */
    /*--h6-size: 1.25rem; */  /* 20px */

    /* Standard Heading Sizes */
    --h1-size: 3.125rem;    /* 50px */
    --h2-size: 2.188rem;    /* 35px */
    --h3-size: 1.563rem;    /* 25px */
    --h4-size: 1.25rem;     /* 20px */
    --h5-size: 1.125rem;    /* 18px */
    --h6-size: 1rem;        /* 16px */
    
    /* Standard Heading Sizes */
    --h1-size: 2rem;
    --h2-size: 1.8rem;
    --h3-size: 1.3rem;
    --h4-size: 1.1rem; 
    --h5-size: 1rem;
    --h6-size: 0.9rem; 



    /* Line Heights */
    --line-height-heading: 1.2;
    --line-height-body: 1.7;

    /* Standard Paragraph Sizes */
    --p-xl: 1.25rem;     /* 20px */
    --p-lg: 1.125rem;    /* 18px */
    --p-base: 1rem;      /* 16px */
    --p-sm: 0.875rem;    /* 14px */
    --p-xs: 0.75rem;     /* 12px */

    --weight-light: 300;
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    /* =========================================
       5. SPACING (Margins & Paddings)
       ========================================= */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 15px;      /* Standard gap */
    --space-lg: 20px;
    --space-xl: 30px;      /* Mega menu padding, Review cards */
    --space-2xl: 40px;     /* Section gaps */
    --space-3xl: 80px;     /* Major section padding (Reviews, Footer) */

    /* =========================================
       6. BORDERS & RADII
       ========================================= */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 40px;     /* Footer radius */
    --radius-pill: 50px;   /* Solid buttons, outline menus */
    --radius-circle: 50%;

    /* =========================================
       7. SHADOWS & EFFECTS
       ========================================= */
    --transition-speed: 0.3s;
    --transition-bounce: 0.3s cubic-bezier(0.16, 1, 0.3, 1); /* Dropdown animations */
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-btn-hover: 0 8px 20px rgba(0, 130, 155, 0.3);
    
    /* Overlays */
    --overlay-dark: rgba(0,0,0,0.6);
    --overlay-light: rgba(255,255,255,0.95); /* Sticky header background */

    /* =========================================
       8. Z-INDEX SYSTEM
       ========================================= */
    --z-background: -1;
    --z-normal: 1;
    --z-hero-caption: 2;
    --z-hero-controls: 5;
    --z-search-widget: 10;
    --z-dropdown: 100;     /* Custom select dropdowns */
    --z-mega-menu: 1000;   /* Navigation dropdowns */
    --z-sticky-header: 1030;
    --z-offcanvas: 1040;
    --z-modal: 1050;

    
    
    --text-color: #44546a;;

}
body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: clip;
}
html, body {
    max-width: 100vw;
    overflow-x: clip;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    letter-spacing: 0.2px;
    font-weight: 400;
}
img{
   max-width: 100%;
}
h1, h2, h3, h4, h5, h6, .hero-title, .section-title {
    font-family: var(--font-heading);
    color: var(--brand-dark-blue);
}
h2, .h2{
    font-weight: 700;
    /* font-size: 1.8rem; */
    font-size: var(--h2-size); 
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
    color: var(--brand-teal);
}

a:hover {
    color: var(--brand-teal);
}
figcaption {
    font-size: .78rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 28px;
    font-style: italic;
}
figcaption:before {
    content: "\f030";
    font-size: .75em;
    line-height: .08333em;
    vertical-align: .125em;
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    margin-right: 10px;
    font-style: normal;
}
/* --- UI Components --- */
.btn-brand-solid {
    background-color: var(--brand-dark-blue);
    color: white;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}
.btn-brand-solid:hover {
    background-color: var(--brand-teal);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-teal-solid {
    background-color: var(--brand-teal);
    color: white;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-teal-solid:hover {
    background-color: var(--brand-teal-hover);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 130, 155, 0.3);
    transform: translateY(-2px);
}

.btn-outline-menu {
    border: 1px solid var(--brand-teal);
    border-radius: 50px;
    padding: 8px 20px;
    background: white;
    color: var(--brand-teal);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-speed) ease;
}
.btn-outline-menu:hover {
    border-color: var(--brand-teal);
    background: var(--brand-teal);
    color: #fff;
}

/* -------------------- Slider Ptn Arrow --------------------------------- */

.arrow-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e1e3e6;
    background: #fff;
    color: var(--brand-dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
}

.arrow-slider-btn:hover:not(:disabled) {
    background: var(--brand-teal);
    border-color: var(--brand-teal);
    color: #fff;
}

.arrow-slider-btn:active:not(:disabled) { transform: scale(.94); }
.arrow-slider-btn:disabled { opacity: .35; cursor: not-allowed; }

/* --- Top Bar --- */
.top-bar {
    background-color: var(--brand-dark-blue);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.top-bar a:hover {
    color: var(--brand-teal) ;
}
.social-icons a {
    margin-right: 12px;
    font-size: 1rem;
}

/* =========================================
   MAIN STICKY HEADER (Premium Upgrade)
   ========================================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.85); /* More transparent for blur */
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header.scrolled {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.92);
}

.navbar-brand img {
    height: 45px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.02);
}

/* --- Navigation Links (Desktop) --- */
.nav-link-custom {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: 8px; /* Pill-like hover state */
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active,
.nav-item-dropdown:hover .nav-link-custom,
.nav-item-mega:hover .nav-link-custom {
    color: var(--brand-teal);
    background-color: var(--bg-light); /* Soft gray background on hover */
}

.nav-link-custom i {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.nav-link-custom:hover i,
.nav-item-dropdown:hover .nav-link-custom i,
.nav-item-mega:hover .nav-link-custom i {
    color: var(--brand-teal);
    transform: rotate(180deg);
}

/* --- Standard Dropdown Menu --- */
.custom-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px); /* Detached floating look */
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    min-width: 240px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.98); /* Slight scale for snap effect */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown:hover .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Sub-items with Nudge Effect */
.dropdown-item-custom {
    display: block;
    padding: 10px 16px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-item-custom:hover {
    background-color: var(--bg-light);
    color: var(--brand-teal);
    padding-left: 22px; /* The elegant nudge */
}

/* --- Mega Menu Upgrade --- */
.mega-menu {
    position: absolute;
    top: calc(100% + -25px);
    left: 50%; /* Center the mega menu relative to the nav item */
    width: 850px; /* Constrained width for better density */
    max-width: 90vw;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    /* Center transform + dropdown animation */
    transform: translateX(-50%) translateY(15px) scale(0.98); 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.nav-item-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Mega Menu Internal Adjustments */
.mega-menu .dropdown-item-custom {
    padding: 8px 12px;
}

.mega-menu .dropdown-item-custom:hover {
    padding-left: 18px;
}

.mega-menu .mega-preview-box {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2), 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.mega-menu:hover .mega-preview-box {
    transform: scale(1.02); /* Slight pop when menu opens */
}






/* =========================================
   PREMIUM MOBILE OFF-CANVAS
   ========================================= */

.mobile-offcanvas-premium {
    width: 340px !important;
    max-width: 85vw;
    border-right: none;
    background-color: var(--bg-white);
    box-shadow: 15px 0 40px rgba(0,0,0,0.08);
}

.mobile-offcanvas-premium .offcanvas-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f4f6f8;
}

/* --- Main Menu Links --- */
.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 1.05rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--brand-dark-blue);
    border-bottom: 1px solid #f4f6f8;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--bg-white);
}

.mobile-menu-link:hover,
.mobile-menu-link[aria-expanded="true"] {
    background-color: var(--bg-light);
    color: var(--brand-teal);
    padding-left: 28px; /* Elegant nudge effect */
}

/* Icons within links */
.mobile-menu-link .link-arrow {
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.mobile-menu-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.mobile-dropdown-icon {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.mobile-menu-link[aria-expanded="true"] .mobile-dropdown-icon {
    transform: rotate(180deg);
    color: var(--brand-teal);
}

/* --- Submenu Styling --- */
.mobile-submenu-wrapper {
    background-color: var(--bg-main); /* Slightly off-white */
    border-bottom: 1px solid #f4f6f8;
}

.mobile-submenu-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
    margin: 15px 24px 8px 36px;
}

.mobile-submenu-list {
    border-left: 2px solid var(--brand-teal-light);
    margin: 0 24px 15px 36px;
    padding-left: 16px;
}

.mobile-submenu-link {
    display: block;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-submenu-link:hover {
    color: var(--brand-teal);
    font-weight: 500;
}

/* --- Footer Widget (Contact & Social) --- */
.mobile-footer-widget {
    padding: 24px;
    background-color: var(--bg-white);
    margin-top: auto;
}

.mobile-contact-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.contact-row {
    display: flex;
    align-items: center;
    padding: 16px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.contact-row:hover {
    background-color: var(--bg-light);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--brand-teal-light);
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 16px;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background-color: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.contact-text .value {
    font-size: 0.95rem;
    color: var(--brand-dark-blue);
    font-weight: 600;
}

/* Social Buttons */
.mobile-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
}

.mobile-social-btn:hover {
    background: var(--brand-teal);
    color: var(--bg-white);
    border-color: var(--brand-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 130, 155, 0.2);
}

/* --- Hero Slider --- */
.hero-section {
    position: relative;
    height: 70vh;
    /*min-height: 600px;*/
    background-color: #000;
}
.carousel, .carousel-inner, .carousel-item {
    height: 100%;
}
.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
/* Custom Cross-fade override */
.carousel-fade .carousel-item {
    transition: opacity 1s ease-in-out;
}

/* Inner overlay inside items so it covers the image properly */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

/* Updated: Content inside the carousel item */
.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    color: white;
    opacity: 0;
    transition: all 0.8s ease-in-out;
}
.carousel-item.active .carousel-caption-custom {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.hero-title {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-family: var(--font-heading);
    font-size: var(--h1-size);
    display: block;
    margin-bottom: 10px;
}
.hero-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.hero-buttons .btn {
    margin: 0 10px;
    margin-bottom: 10px;
}
.btn-white-solid {
    background-color: white;
    color: var(--brand-dark-blue);
    border:1px solid var(--brand-dark-blue);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}
.btn-white-solid:hover {
    background-color: var(--brand-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
    color: white !important;
}
.btn-outline-light-custom {
    background-color: var(--brand-teal);
    color: white;
    /*border: 1px solid rgba(255,255,255,0.5);*/
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 500;
    transition: all 0.3s ease;
    /*backdrop-filter: blur(5px);*/
}
.btn-outline-light-custom:hover {
    background-color: white;
    color:var(--brand-teal);
    border-color: var(--brand-teal);
}

/* Custom Carousel Controls */
.carousel-control-custom {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 5;
}
.hero-section:hover .carousel-control-custom {
    opacity: 1;
}
.carousel-control-custom:hover {
    background: white;
    color: var(--brand-dark-blue);
}
.carousel-control-prev { left: 30px; }
.carousel-control-next { right: 30px; }

/* --- Floating Search Widget --- */
.search-widget-container {
    position: relative;
    margin-top: -80px; /* Overlap hero */
    z-index: 10;
    padding: 0 20px;
}
.search-widget {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 1000px;
    margin: 0 auto;
    /* Removed overflow: hidden so dropdown lists can be visible */
}

/* =====================================    Search Tabs */
.search-tabs {
    position: relative;
    display: flex;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 8px;
    gap: 4px;
}
.tab-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    background-color: var(--brand-teal);
    border-radius: var(--radius-md);
    z-index: 0;
}
.tab-indicator.ready {
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.search-tab-btn {
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: none;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}
.search-tab-btn.active {
    color: white;
}
/*.search-tabs {*/
/*    display: flex;*/
/*    background: white;*/
/*    border-bottom: 1px solid var(--border-color);*/
/*    border-radius: var(--radius-lg) var(--radius-lg) 0 0;*/
/*}*/
/*.search-tab-btn {*/
/*    flex: 1;*/
/*    padding: 20px 0;*/
/*    text-align: center;*/
/*    background: none;*/
/*    border: none;*/
/*    font-weight: 600;*/
/*    color: var(--text-muted);*/
/*    transition: all 0.3s ease;*/
/*    position: relative;*/
/*    cursor: pointer;*/
/*}*/
/*.search-tab-btn.active {*/
/*    color: white;*/
/*    background-color: var(--brand-teal);*/
/*    border-radius: var(--radius-lg) var(--radius-lg) 0 0;*/
/*}*/
/*.search-tabs:has(.search-tab-btn:first-child.active) .search-tab-btn:nth-child(2) {*/
/*    border-bottom-left-radius: 10px;*/
/*}*/





/* Search Form Area */
.search-form-area {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.search-input-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
    border-right: 1px solid var(--border-color);
    cursor: pointer;
}
.search-input-group:last-of-type {
    border-right: none;
}
.search-input-icon {
    font-size: 1.5rem;
    color: var(--brand-dark-blue);
    margin-right: 15px;
    width: 24px;
    margin-bottom:20px;
    text-align: center;
}
/*.search-input-group:nth-child(2) .search-input-icon { color: var(--brand-teal); }*/
/*.search-input-group:nth-child(3) .search-input-icon { color:var(--brand-dark-blue); }*/

.search-input-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.search-label {
    /*font-size: 1rem;*/
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
}
.search-value {
    font-size: 0.9rem;
    color: var(--text-muted);
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    cursor: pointer;
}
.search-value::placeholder {
    color: var(--text-muted);
}

.custom-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 100;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    max-height: 250px;
    overflow-y: auto;
}
.custom-select-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.custom-option {
    padding: 12px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}
.custom-option:hover {
    background-color: var(--bg-light);
    color: var(--brand-teal);
}

.btn-search-submit {
    min-width: 140px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.loader-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Social Proof & Reviews Slider --- */
.reviews-section {
    padding: 80px 0;
    background-color: #fbfbfb;
    overflow: hidden; /* prevents slider escaping wrapper */
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
}
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}

/* =========================================
   PREMIUM TRUST BADGES CARD
   ========================================= */

.premium-trust-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 20px 32px;
    gap: 40px; /* Spacing between each platform */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Extremely soft ambient shadow */
}

.trust-badge-item {
    gap: 14px; /* Spacing between the icon and the text */
}

.trust-badge-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.trust-badge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2d3748; /* Deep slate */
    line-height: 1.2;
    margin-bottom: 2px;
}

.trust-badge-count {
    font-size: 0.85rem;
    color: #718096; /* Muted grey */
    line-height: 1.2;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 767.98px) {
    .premium-trust-card {
        padding: 16px 20px;
        gap: 20px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .trust-badge-item {
        width: 100%; /* Stacks them nicely on very small screens */
    }
}




.nav-arrows .btn-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-teal);
    margin-left: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}
.nav-arrows .btn-arrow:hover {
    background: var(--brand-teal);
    color: white;
    border-color: var(--brand-teal);
}

/* New Reviews Slider CSS */
.reviews-slider-container {
    width: 100%;
    position: relative;
}
.reviews-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 4px 30px 4px; /* extra padding to not cut off shadows */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
.reviews-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.review-slide {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    height: auto;
}

/* Review Card */
.review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.reviewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.reviewer-name {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1rem;
}
.reviewer-loc {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.stars {
    color: #ffc107;
    font-size: 0.8rem;
    margin-top: 2px;
}
.platform-logo {
    font-size: 1.2rem;
}
.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1; /* Pushes content evenly */
}

/* --- Footer --- */
.site-footer {
    background-color: var(--brand-dark-blue);
    color: white;
    padding: 80px 0 30px;
}
.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}
.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}
.footer-social .btn-social {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    color: white;
    display: flex;
    margin-right: 10px;
    transition: background 0.3s ease;
    justify-content: center;
    font-size: 20px;
}
.footer-social .btn-social:hover {
    background: var(--brand-teal);
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 15px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
}
.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}
.footer-links a:hover {
    color: white;
}
.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    margin-right: 20px;
}
.footer-bottom-links a:hover {
    color: white;
}
.partner-logos img {
    height: 30px;
    margin-left: 15px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}
.partner-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .search-widget-container { margin: -10px 10px -100px 10px !important; }
    .search-form-area { flex-direction: column; gap: 10px; padding: 15px;}
    .search-input-group { border-right: none; border-bottom: 1px solid var(--border-color); width: 100%; }
    .search-input-group:last-of-type { border-bottom: none; }
    .btn-search-submit { width: 100%; margin-top: 10px; }
    .hero-title { font-size: 2.5rem; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .trust-badges { flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .review-slide { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 767px) {
    .review-slide { flex: 0 0 100%; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
}






/* =========================================
   TOUR DETAILS PAGE
   ========================================= */

/* Breadcrumbs */
.tour-breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.tour-breadcrumbs a {
    color: var(--text-muted);
}
.tour-breadcrumbs a:hover {
    color: var(--brand-teal);
}

/* Header Meta */
.tour-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.meta-divider {
    color: var(--border-color-dark);
}
.stars-group {
    color: var(--color-star-rating);
}

/* Gallery Section */
.tour-gallery-wrapper {
    display: flex;
    gap: 10px;
    height: 480px;
    margin-bottom: 25px;
}
.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 140px;
}
.gallery-thumbnails img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.gallery-thumbnails img:hover {
    opacity: 0.8;
}
.gallery-thumbnails .see-more-thumb {
    position: relative;
}
.gallery-thumbnails .see-more-thumb::after {
    content: "See More " attr(data-count);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}
.gallery-main {
    flex-grow: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Gallery Main Navigation Arrows */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 5;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}
.gallery-nav-btn:hover {
    background: #ffffff;
    color: var(--brand-teal);
    box-shadow: var(--shadow-md);
}
.gallery-nav-btn.prev { left: 15px; }
.gallery-nav-btn.next { right: 15px; }

/* Thumbnail Active State */
.gallery-thumbnails img, .gallery-thumbnails .see-more-thumb {
    border: 2px solid transparent;
    transition: all 0.2s ease;
    height: calc(20% - 8px);
}
.gallery-thumbnails .see-more-thumb img{
    height: 100%;

}
.gallery-thumbnails img.active {
    border-color: var(--brand-teal);
    opacity: 1 !important; /* Keep active fully visible */
}
/* Gallery Overlay Buttons */
.gallery-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}
.btn-glass {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    color: var(--text-main);
}
.btn-glass:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--brand-teal);
}

/* Quick Features Bar */
.quick-features-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-main);
}
.feature-item i {
    color: var(--brand-teal);
    font-size: 1.1rem;
}

/* =========================================
   STICKY BOOKING WIDGET
   ========================================= */
.sticky-sidebar {
    /* The magic that makes it stick. 
       120px offset accounts for your main-header height */
    position: sticky;
    top: 100px; 
    z-index: 10;
}

.booking-widget {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 10px 15px;
    box-shadow: var(--shadow-sm);
}

.price-display {
    margin-bottom: 20px;
}
.price-display .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
}
.price-display .unit {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.input-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}
.input-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Perks Box */
.booking-perks {
    background: #f4f9f9; /* Soft teal tint */
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 20px;
}
.perk-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
}
.perk-item:last-child {
    margin-bottom: 0;
}
.perk-item i {
    color: var(--brand-teal);
    margin-top: 3px;
}

.demand-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-top: 15px;
    font-size: 0.85rem;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .tour-gallery-wrapper {
        flex-direction: column-reverse;
        height: auto;
    }
    .gallery-thumbnails {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }
    .gallery-thumbnails img {
        width: 100px;
        height: 80px;
    }
    .gallery-main {
        height: 400px;
    }
}




/* 1. Base state: Hidden */
[gx-toggle="content"] {
    display: none;
    overflow: hidden;
}

/* 2. Open state: Display block AND trigger the animation */
[gx-toggle="item"].is-open [gx-toggle="content"] {
    display: block;
    animation: smoothReveal 0.4s ease-out forwards;
}

/* 3. The Animation: Fakes a smooth slide by combining opacity and transform */
@keyframes smoothReveal {
    0% {
        opacity: 0;
        transform: translateY(-10px); /* Starts slightly higher */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Settles into its natural place */
    }
}





/* =========================================
   1. BASE SLIDER SETUP & MATH
   ========================================= */
.gx-slider-track {
    --gx-items: 3; /* Default items */
    --gx-gap: 24px; /* Default gap */
    
    display: flex;
    gap: var(--gx-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    cursor: grab;
    
    /* Cross-browser scrollbar hiding */
    scrollbar-width: none;    /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 0;
}

.gx-slider-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

/* Standard Slide Sizing */
.gx-slider-slide {
    flex: 0 0 calc((100% - (var(--gx-gap) * (var(--gx-items) - 1))) / var(--gx-items)) !important;
    scroll-snap-align: start;
}

/* =========================================
   2. INTERACTION STATES (DRAGGING & DISABLED)
   ========================================= */
.gx-slider-track.is-dragging {
    cursor: grabbing;
}

.gx-slider-track.is-dragging * {
    pointer-events: none !important; /* Prevents accidental clicks */
    user-select: none !important;    /* Prevents text highlighting */
    -webkit-user-drag: none;         /* Stops ghost-image dragging */
}

.gx-slider:active .gx-slider-track {
    pointer-events: auto; /* Restores click on release */
}

.btn-arrow:disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    background-color: #f1f1f1 !important;
    border-color: #ddd !important;
    color: #999 !important;
}

 @media (max-width: 480px) {
    .gx-slider-track{
       --gx-items: 1;
}
[gx="expandable"] .expandable-content-body p {
    margin-bottom: -0.9rem;
}

.gallery-thumbnails img, .gallery-thumbnails .see-more-thumb {
    height: 80px;
}

.btn-brand-solid {
    padding: 10px 4px;
}

}





























/* =========================================
   SLIDER ARROWS & CONTROLS
   ========================================= */

/* Shared base styles for all arrows */
.btn-arrow-prev,
.btn-arrow-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    outline: none;
}

/* Previous Arrow (White/Outline) */
.btn-arrow-prev {
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--brand-teal);
}

.btn-arrow-prev:hover {
    background: var(--brand-teal);
    color: var(--bg-white);
    border-color: var(--brand-teal);
}

/* Next Arrow (Solid Brand) */
.btn-arrow-next {
    border: 1px solid var(--brand-teal);
    background: var(--brand-teal);
    color: var(--bg-white);
}

.btn-arrow-next:hover {
    background: var(--brand-dark-blue);
    border-color: var(--brand-dark-blue);
}

/* =========================================
   MOBILE ARROW OVERLAYS
   ========================================= */

/* Re-enable clicks specifically on the buttons themselves */
.mobile-nav-arrows .btn-arrow-prev,
.mobile-nav-arrows .btn-arrow-next {
    pointer-events: auto; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* Adds a drop shadow so they are visible over the card images */
}

/* Feedback effect on mobile tap */
.mobile-nav-arrows .btn-arrow:active {
    transform: scale(0.95);
}











/* =========================================
   TOUR CARD (gx-card="tour")
   ========================================= */
[gx-card="tour"] {
    background-color: var(--bg-white, #ffffff);
    border-radius: var(--radius-lg, 16px);
    box-shadow: var(--shadow-sm, 0 4px 6px rgba(0,0,0,0.05));
    border: 1px solid var(--border-color, #e9ecef);
    transition: all var(--transition-speed, 0.3s) ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

[gx-card="tour"]:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md, 0 10px 30px rgba(0,0,0,0.08));
}

/* --- Image Wrapper --- */
[gx-card="tour"] .card-img-wrapper {
    position: relative;
    height: 280px; /* Adjust as needed */
    overflow: hidden;
}

[gx-card="tour"] .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

[gx-card="tour"]:hover .card-img-top {
    transform: scale(1.05);
}

/* Badges & Overlays */
[gx-card="tour"] .discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ffc107; /* Yellow */
    color: #000;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
}

[gx-card="tour"] .wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-teal);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

[gx-card="tour"] .wishlist-btn:hover {
    color: var(--brand-teal);
    transform: scale(1.08);
}

[gx-card="tour"] .img-pagination {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

[gx-card="tour"] .img-pagination .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

[gx-card="tour"] .img-pagination .dot.active {
    background-color: #ffffff;
}

/* --- Card Body --- */
[gx-card="tour"] .card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

[gx-card="tour"] .review-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--text-muted, #6c757d);
}

[gx-card="tour"] .review-meta .tripadvisor-icon {
    color: var(--color-tripadvisor, #00af87);
    font-size: 1.1rem;
}

[gx-card="tour"] .tour-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: var(--font-heading);
    min-height: 55px;
}

[gx-card="tour"] .tour-title a {
    color: var(--text-main, #333333);
}

[gx-card="tour"] .tour-title a:hover {
    color: var(--brand-teal, #00829B);
}

[gx-card="tour"] .tour-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted, #6c757d);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
[gx-card="tour"] .tour-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
        margin-bottom: 20px;
}


[gx-card="tour"] .tour-info-row i {
    width: 16px;
    text-align: center;
}

[gx-card="tour"] .tour-attributes {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted, #6c757d);
    margin-bottom: 15px;
}

[gx-card="tour"] .tour-attributes span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- Card Footer (Price & Action) --- */
[gx-card="tour"] .tour-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-color, #e9ecef);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[gx-card="tour"] .price-box {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

[gx-card="tour"] .price-from {
    font-size: 0.85rem;
    color: var(--text-muted, #6c757d);
}

[gx-card="tour"] .price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-destination, #d9534f); /* Red color from your vars */
}

[gx-card="tour"] .price-old {
    font-size: 0.85rem;
    color: var(--text-muted, #6c757d);
    text-decoration: line-through;
    margin-left: 4px;
}

[gx-card="tour"] .book-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brand-dark-blue, #1B365D);
}

[gx-card="tour"] .book-btn .icon-circle {
    width: 32px;
    height: 32px;
    background-color: var(--brand-teal);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

[gx-card="tour"] .book-btn:hover {
    color: var(--color-destination);
}

[gx-card="tour"] .book-btn:hover .icon-circle {
    transform: translateX(4px);
    background-color: var(--brand-teal, #00829B);
}



/* =========================================
   ARTICLE / BLOG CARD (Attribute Target)
   ========================================= */
[gx-card="post"] {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    background-color: var(--bg-white);
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

[gx-card="post"]:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Image Section */
[gx-card="post"] .card-img-wrapper {
    position: relative;
    height: 240px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

[gx-card="post"] .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

[gx-card="post"]:hover .card-img-top {
    transform: scale(1.05); /* Subtle zoom on hover */
}

/* Wishlist Button */
[gx-card="post"] .wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    background-color: var(--bg-white);
    border: none;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark-blue);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

[gx-card="post"] .wishlist-btn:hover {
    color: var(--color-destination); /* Uses your red variable */
    transform: scale(1.08);
}

/* Image Dots Overlay */
[gx-card="post"] .img-pagination {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

[gx-card="post"] .img-pagination .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

[gx-card="post"] .img-pagination .dot.active {
    background-color: var(--bg-white);
}

/* Content Section */
[gx-card="post"] .card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

[gx-card="post"] .meta-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

[gx-card="post"] .article-title {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

[gx-card="post"] .article-title a {
    color: var(--text-main);
}

[gx-card="post"] .article-title a:hover {
    color: var(--brand-teal);
}

[gx-card="post"] .article-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Footer Section */
[gx-card="post"] .article-footer {
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

[gx-card="post"] .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    object-fit: contain;
    padding: 2px;
}

[gx-card="post"] .author-name {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}






/* =========================================
   CALL TO ACTION (CTA) BANNER
   ========================================= */
.cta-banner {
    border-radius: var(--radius-lg, 16px);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding: 40px 50px; /* Increased overall padding for better spacing */
    background-size: cover;
    background-position: center;
}
.cta-content-wrapper {
    position: relative;
    z-index: 1;
}

.cta-header-block {
    display: flex;
    align-items: flex-start; /* Aligns the icon with the top of the text */
    gap: 25px; /* Increased gap between the main icon and text */
}

.cta-icon-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 3px solid var(--brand-teal);
    background: var(--bg-white);
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    box-shadow: 0 4px 10px rgba(0, 130, 155, 0.15);
    margin-top: 5px; /* Slight nudge to visually align with the title text */
}

.cta-text-content {
    flex-grow: 1;
}

.cta-title {
    color: var(--brand-dark-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 10px; /* Increased spacing */
    line-height: 1.2;
}

.cta-subtitle {
    color: var(--text-color); /* Matches standard body text color */
    font-size: 1rem; /* Matched to regular paragraph size */
    line-height: 1.6;
}

.cta-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start; /* Forces them nicely under the description */
}
.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem; /* Clean, readable size */
    font-weight: 600;
    color: var(--brand-dark-blue);
}

.cta-feature-item i {
    color: var(--color-destination); 
    font-size: 1.3rem; /* Enlarged icons slightly */
}

/* Override the standard solid button to match the image's squarer corners */
.cta-banner .btn-teal-solid.rounded-3 {
    border-radius: var(--radius-sm) !important; 
    padding: 14px 28px; /* Slightly thicker button for CTA */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .cta-features-list{
        display: none;
    }
    .cta-banner {
        padding: 30px 20px;
    }
    .cta-header-block {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .cta-features-list {
        justify-content: center;
        margin-top: 15px;
    }
    .cta-title {
        font-size: 1.5rem;
    }
}
.cta-banner::before {
    content: "";
    width: 100%;
    position: absolute;
    height: 100%;
    background: #b8f1ff61;
    left: 0;
    top: 0;
}









/* =========================================
   SCROLLABLE CONTENT SECTION
   ========================================= */

[gx-section="scrollable-content"] {
    margin: 40px 0;
    font-family: var(--font-body);
}

/* The Extracted Heading */
[gx-section="scrollable-content"] .section-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--brand-dark-blue, #1B365D);
    margin-bottom: 24px;
    line-height: 1.3;
}

/* The 300px Scroll Box */
[gx-section="scrollable-content"] .content-scroll-box {
    height: 300px;
    overflow-y: auto;
    padding-right: 20px; /* Leaves breathing room so text doesn't touch the scrollbar */
    
    /* Formatting the text inside */
    color: var(--text-color, #44546a);
    line-height: 1.8;
    font-size: 1.1rem;
}

[gx-section="scrollable-content"] .content-scroll-box p {
    margin-bottom: 1.2rem;
}

[gx-section="scrollable-content"] .content-scroll-box strong {
    color: var(--brand-dark-blue, #1B365D);
}

/* --- Custom Scrollbar Styling (Webkit Browsers: Chrome, Safari, Edge) --- */

/* Width of the scrollbar itself */
[gx-section="scrollable-content"] .content-scroll-box::-webkit-scrollbar {
    width: 8px; 
}

/* The track (background) of the scrollbar */
[gx-section="scrollable-content"] .content-scroll-box::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.04); 
    border-radius: 10px;
}

/* The draggable handle */
[gx-section="scrollable-content"] .content-scroll-box::-webkit-scrollbar-thumb {
    background: var(--brand-teal, #00829B); 
    border-radius: 10px;
}

/* Handle on hover */
[gx-section="scrollable-content"] .content-scroll-box::-webkit-scrollbar-thumb:hover {
    background: var(--brand-dark-blue, #1B365D); 
}

/* Firefox Fallback Styling */
[gx-section="scrollable-content"] .content-scroll-box {
    scrollbar-width: thin;
    scrollbar-color: var(--brand-teal, #00829B) rgba(0, 0, 0, 0.04);
}




.trust-badges.d-flex.flex-wrap.gap-4 {
    background: #fff;
    padding: 18px;
    box-shadow: 0 0 #000000, 0 0 #0000, 0 1px 2px 0 rgb(74 51 51 / 23%);
    border-radius: 5px;
}




/* =========================================
   GLOBAL FORM ELEMENTS
   ========================================= */

/* Base Input Override */
.form-control,
.form-select {
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-main);
    background-color: var(--bg-white);
    background-clip: padding-box;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md); /* Uses your 12px radius */
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    appearance: none; /* Normalizes select dropdowns across browsers */
}

/* Focus State: Replaces default blue glow with your Brand Teal */
.form-control:focus,
.form-select:focus {
    color: var(--text-main);
    background-color: var(--bg-white);
    border-color: var(--brand-teal);
    outline: 0;
    box-shadow: 0 0 0 0.25rem var(--brand-teal-light); /* Uses your rgba(0, 130, 155, 0.1) */
}

/* Placeholders */
.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

/* Disabled & Read-only States */
.form-control:disabled,
.form-control[readonly],
.form-select:disabled {
    background-color: #f7fbff;
    color: var(--text-muted);
    opacity: 1;
}

/* Labels */
.form-label {
    font-weight: 600;
    color: var(--brand-dark-blue);
    margin-bottom: 8px;
    display: inline-block;
}
/* =========================================
   SELECT2 OVERRIDES (Matches Form Control)
   ========================================= */

/* Main Selection Box (Single & Multi) */
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    min-height: 50px; /* Matches your 12px padding + line-height */
    outline: none;
}

/* Focus State (Matches your brand-teal glow) */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--multiple {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 0.25rem var(--brand-teal-light);
}

/* --- Single Select Specifics --- */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--text-main);
    line-height: 48px; /* Vertically centers the text */
    padding-left: 20px; /* Matches standard input padding */
    padding-right: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

/* The Dropdown Arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    position: absolute;
    top: 1px;
    right: 15px;
    width: 20px;
}

/* --- Multiple Select Specifics (Tags) --- */
.select2-container--default .select2-selection--multiple {
    padding: 4px 10px; 
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--brand-dark-blue);
    padding: 5px 12px;
    margin-top: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--color-destination); /* Uses your red variable for the 'X' */
    margin-right: 8px;
    border-right: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background: transparent;
    color: var(--brand-teal);
}

/* Multi-select typing area */
.select2-container--default .select2-search--inline .select2-search__field {
    font-family: var(--font-body);
    color: var(--text-main);
    margin-top: 8px;
    padding-left: 10px;
}

/* --- The Dropdown Menu (Popover) --- */
.select2-dropdown {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 1055; /* Keeps it above other UI elements */
    overflow: hidden;
    margin-top: 35px; /* Slight gap between input and dropdown */
}

/* Ensure border radius stays rounded even when attached */
.select2-container--open .select2-dropdown--below,
.select2-container--open .select2-dropdown--above {
    border-radius: var(--radius-md); 
}
.select2-container--open .select2-dropdown--above {
    border-radius: var(--radius-md); 
    margin-top: -10px;
}
.select2-container--open .select2-dropdown--below {
    border-radius: var(--radius-md); 
    margin-top: 10px;
}

/* Search input inside the dropdown */
.select2-search--dropdown .select2-search__field {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s ease;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: var(--brand-teal);
}

/* Dropdown Options */
.select2-results__option {
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: background 0.2s ease, color 0.2s ease;
}

/* Hover / Highlighted Option */
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--bg-light);
    color: var(--brand-teal);
}

/* Already Selected Option */
.select2-container--default .select2-results__option--selected {
    background-color: var(--brand-teal-light);
    color: var(--brand-dark-blue);
    font-weight: 500;
}

/* =========================================
   100% WIDTH NUMBER SPINNER COMPONENT
   ========================================= */

.gx-spinner {
    display: flex; /* Changed from inline-flex to fill container */
    align-items: center;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 100%;
    /* Removed max-width constraint so it acts fluidly */
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

/* Focus ring mapping to your brand teal */
.gx-spinner:focus-within {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 0.25rem var(--brand-teal-light);
}

/* Action Buttons (+ / -) */
.gx-spinner .spinner-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 12px 20px; /* Slightly wider padding for larger fluid inputs */
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0; /* Prevents buttons from shrinking in narrow columns */
}

.gx-spinner .spinner-btn:hover {
    background: var(--bg-light);
    color: var(--brand-teal);
}

.gx-spinner .spinner-btn:active {
    background: var(--border-color);
}

/* The Internal Input */
.gx-spinner .spinner-input {
    border: none;
    border-radius: 0;
    text-align: center;
    padding: 12px 0;
    width: 100%;
    flex-grow: 1; /* Forces the input to eat up the remaining horizontal space */
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--brand-dark-blue);
    background: transparent;
    box-shadow: none !important;
    outline: none;
    -moz-appearance: textfield; /* Hides arrows in Firefox */
}

/* Hide arrows in Chrome/Safari/Edge */
.gx-spinner .spinner-input::-webkit-outer-spin-button,
.gx-spinner .spinner-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

 
    [gx="expandable"] .expandable-content-wrapper {
        position: relative;
        max-height: 300px;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }
    
    [gx="expandable"] .expandable-content-wrapper.expanded {
        max-height: 300px;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--brand-teal) rgba(0, 0, 0, 0.04);
    }
    
    [gx="expandable"] .expandable-content-wrapper.expanded::-webkit-scrollbar {
        width: 6px;
    }
    
    [gx="expandable"] .expandable-content-wrapper.expanded::-webkit-scrollbar-thumb {
        background: var(--brand-teal);
        border-radius: 10px;
    }
    
    [gx="expandable"] .expandable-content-body h1 {
        color: var(--brand-dark-blue);
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 2.05rem;
        margin: 0px 0px 15px 0px;
    }
    [gx="expandable"] .expandable-content-body h2 {
        color: var(--brand-dark-blue);
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.8rem;
        margin: 0px 0px 15px 0px;
    }
    
    [gx="expandable"] .expandable-content-body p {
        font-size: 1rem;
        color: var(--text-color);
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    
    [gx="expandable"] .expandable-content-body a {
        color: var(--brand-teal);
        font-weight: 500;
    }
    
    [gx="expandable"] .expandable-content-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(to bottom, transparent, var(--bg-main, #fbfbfb));
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    [gx="expandable"] .expandable-content-wrapper.expanded .expandable-content-overlay {
        opacity: 0;
    }
    
    [gx="expandable"] .expandable-content-btn {
        background: none;
        border: none;
        color: var(--brand-teal);
        font-weight: 600;
        font-size: 0.95rem;
        padding: 0;
        margin-top: 10px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        transition: color 0.2s ease;
    }
    
    [gx="expandable"] .expandable-content-btn:hover {
        color: var(--brand-teal-hover);
    }
    
    
.iti__selected-dial-code, .iti__country-name{
    color: var(--text-main);
}


/* =========================================
   SUCCESS MODAL COMPONENTS
   ========================================= */

.success-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #eaf5f7; /* Very light teal background matching the image */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.inbox-alert {
    background-color: #f0f8fa; /* Soft cyan/teal tint */
    border-radius: var(--radius-md);
    padding: 20px 24px;
    border: 1px solid rgba(0, 130, 155, 0.1);
}

.next-steps-box {
    background-color: var(--bg-main); /* Light gray #fbfbfb from your root */
    border-radius: var(--radius-md);
    padding: 24px;
}

.step-item {
    gap: 15px;
}

.step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Custom Outline Button for the Modal */
.btn-outline-brand {
    border: 1px solid var(--brand-dark-blue);
    color: var(--brand-dark-blue);
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    background: transparent;
}

.btn-outline-brand:hover {
    background-color: var(--brand-dark-blue);
    color: var(--bg-white);
}



.modal {
    z-index: 555555;
}




/* Card Table Styling */    
table {        
    width: 100%;        
    border-collapse: separate;        
    border-spacing: 0 12px; /* Creates the gap between row cards */    
}

/* Table Headers */    
table thead th {        
    color: var(--text-muted);        
    font-size: 0.75rem;        
    font-weight: 600;        
    text-transform: uppercase;        
    letter-spacing: 0.5px;        
    padding: 0 20px 5px 20px;        
    border: none;
    text-align: left; /* Added to ensure headers align nicely by default */
}

/* Table Body Rows (The Cards) */    
table tbody tr {        
    background-color: var(--bg-white);        
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);        
    transition: all var(--transition-speed) ease;        
    position: relative;    
}

table tbody tr:hover {        
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);        
    transform: translateY(-2px);    
}

/* Table Cells */    
table tbody td {        
    padding: 15px;        
    vertical-align: middle;        
    border-top: 1px solid #f4f6f8;        
    border-bottom: 1px solid #f4f6f8;        
    color: var(--text-main);    
}

/* Left Edge Rounding & Hover Bar */    
table tbody td:first-child {        
    border-left: 4px solid transparent;        
    border-top-left-radius: 8px;        
    border-bottom-left-radius: 8px;        
    position: relative;        
    transition: border-color 0.3s ease;    
}

table tbody tr:hover td:first-child {        
    border-left-color: var(--brand-teal);    
}

/* Right Edge Rounding */    
table tbody td:last-child {        
    border-right: 1px solid #f4f6f8;        
    border-top-right-radius: 20px;        
    border-bottom-right-radius: 20px;    
}

[gx-page="article"], [gx-page="official"]{
    
    ul {
        list-style: none;
        padding: 25px;
        margin-bottom: 30px;
        background-color: #f8fafc;
        border-radius: 16px;
        border-left: 4px solid #008db1;
    }

    ul li {
        position: relative;
        padding-left: 24px;
        margin-bottom: 12px;
        font-size: 15px;
        line-height: 1.7;
        color: #374151;
        transition: padding-left 0.2s ease;
    }

    ul li:hover {
        padding-left: 32px;
        color: #1f2937;
    }

    ul li:last-child {
        margin-bottom: 0;
    }

    ul li::before {
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 4px;
        top: 1px;
        color: #008db1;
        font-size: 14px;
        transition: left 0.2s ease;
    }
    ul li:hover::before {
        left: 8px;
    }
}