/*
Theme Name: BookMyTrip
Theme URI: https://tripe.redseadigital.pro/
Author: RSD Digital
Author URI: https://redseadigital.pro/
Description: Premium travel booking WordPress theme for tour operators, diving centers, hotels, and adventure companies. Elementor ready with RTL and Arabic support.
Version: 2.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bookmytrip
Tags: travel, booking, tourism, elementor, rtl-language-support, translation-ready, custom-menu, custom-logo, featured-images, footer-widgets

Tags: travel, booking, adventure, responsive, elementor, custom-logo, custom-header, custom-menu

BookMyTrip Pro WordPress Theme © 2024 RSD Digital
This theme is distributed under the terms of the GPL v2 or later.
*/

/* Fonts are loaded via functions.php wp_enqueue (Outfit + Inter with display=swap + preconnect) */
/* Base Reset & Variables */
:root {
    /* Brand Palette */
    --primary: #00d2ff;
    --primary-alt: #3a7bd5;
    --primary-grad: linear-gradient(135deg, var(--primary) 0%, var(--primary-alt) 100%);
    --secondary: #0f172a;
    --accent: #8b5cf6;
    --accent-grad: linear-gradient(135deg, #00d2ff, #8b5cf6);
    --dark-slate: #0f172a;
    
    /* UI States & Surfaces */
    --bg-main: #f8fafc;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --border-color: #f1f5f9;
    
    /* Typography */
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-inverse: #ffffff;
    
    /* Shadows & Effects */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.12);
    --card-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --hover-shadow: 0 20px 40px rgba(0,0,0,.1), 0 6px 12px rgba(0,0,0,.06);
    --glass-blur: blur(12px);
    --glass-blur-lg: blur(25px);
    
    /* Border Radii */
    --rounded-sm: 8px;
    --rounded-md: 16px;
    --rounded-lg: 24px;
    --rounded-xl: 32px;
    --rounded-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin: 0 0 1rem 0;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Section Wrapper — gives consistent vertical rhythm */
.section-wrapper {
    padding: 80px 24px;
}
.section-wrapper:first-of-type {
    padding-top: 60px;
}
.section-wrapper .container {
    padding: 0;
}

/* Section backgrounds */
.section-wrapper-alt {
    background: var(--bg-light);
    padding: 80px 24px;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   TRANSPARENT GLASS NAVBAR (HEADER)
   ========================================================================== */
.glass-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bmt-logo {
    font-size: 26px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bmt-logo i {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s ease;
}

.bmt-logo:hover i {
    transform: rotate(15deg) scale(1.1);
}

.bmt-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.bmt-nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

.bmt-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.bmt-nav-menu a:hover {
    color: #fff;
}

.bmt-nav-menu a:hover::after {
    width: 100%;
}

.bmt-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bmt-lang-toggle {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.bmt-lang-toggle i {
    color: var(--primary);
    margin-right: 4px;
}

.bmt-signin-btn {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.bmt-signin-btn:hover {
    color: var(--primary);
}

.bmt-header-cta-btn {
    background: var(--primary-grad);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.3);
}

.bmt-header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 210, 255, 0.5);
    color: #fff;
}

.bmt-header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.bmt-header-cta-btn .fa-chevron-down {
    font-size: 10px;
}

.bmt-pill-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.bmt-mode-toggle {
    cursor: pointer;
}

.bmt-mode-toggle .fa-moon {
    color: #f1c40f;
}

.bmt-nav-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.bmt-curr-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bmt-curr-toggle .fa-coins {
    color: #f59e0b;
}

.bmt-signin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.bmt-header-search-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.bmt-header-search-icon:hover {
    background: rgba(255, 255, 255, 0.25);
}

.bmt-trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.bmt-no-reviews {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-size: 15px;
}

.bmt-trip-map {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.bmt-hero-section {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
}

.bmt-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.5) 0%, rgba(11, 15, 25, 0.7) 100%);
    z-index: 1;
}

.bmt-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.bmt-hero-text {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.bmt-subtitle-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 210, 255, 0.15);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.bmt-hero-text h1.bmt-title {
    font-size: 84px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bmt-hero-text p.bmt-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Glassmorphic Search Form */
.bmt-search-box-wrapper.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    padding: 24px;
    max-width: 950px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(11, 15, 25, 0.15);
}

.bmt-search-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.bmt-search-tabs .bmt-tab {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.bmt-search-tabs .bmt-tab.active {
    background: var(--primary-grad);
    color: #fff;
    box-shadow: 0 8px 15px rgba(0, 210, 255, 0.25);
}

.bmt-search-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 24px;
    padding: 10px 14px 10px 24px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.bmt-search-row .bmt-input-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    text-align: left;
}

.bmt-search-row .bmt-icon {
    font-size: 20px;
}

.bmt-search-row .bmt-input-fields {
    display: flex;
    flex-direction: column;
}

.bmt-search-row .bmt-input-fields label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.bmt-search-row .bmt-input-fields input {
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    padding: 2px 0 0 0;
    width: 100%;
}

.bmt-search-row .bmt-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
    margin: 0 24px;
}

.bmt-search-btn-round {
    width: 56px;
    height: 56px;
    background: var(--primary-grad);
    border: none;
    outline: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
    transition: var(--transition);
}

.bmt-search-btn-round:hover {
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 210, 255, 0.4);
}

@media (max-width: 768px) {
    .bmt-search-row {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        gap: 20px;
    }
    .bmt-search-row .bmt-divider {
        display: none;
    }
    .bmt-search-btn-round {
        width: 100%;
        border-radius: 12px;
        height: 50px;
    }
}

/* ==========================================================================
   TOP DESTINATIONS
   ========================================================================== */
.bmt-destinations-section {
    padding: 90px 0;
    background: #fff;
}

.bmt-section-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.bmt-badge-sm {
    display: inline-block;
    color: #ff8a00;
    font-weight: 700;
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.bmt-title-md {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 15px;
}

.bmt-highlight {
    color: #ff8a00;
}

.bmt-subtitle-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.bmt-destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .bmt-destinations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .bmt-destinations-grid { grid-template-columns: 1fr; }
}

.bmt-dest-card-wrapper {
    display: flex;
    flex-direction: column;
}

.bmt-dest-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    height: 260px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.bmt-dest-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.bmt-dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bmt-dest-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.bmt-dest-badges-wrap {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    z-index: 2;
}

.bmt-dest-badge-promo {
    background: #ef4444;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
}

.bmt-dest-badge-explore {
    background: #fff;
    color: #ff8a00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bmt-dest-content-inner {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    text-align: left;
}

.bmt-dest-title {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 5px 0;
    font-family: 'Outfit', sans-serif;
}

.bmt-dest-trips-count {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    display: block;
}

.bmt-dest-card-desc {
    margin-top: 15px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.bmt-dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
}

.bmt-dest-card:hover .bmt-dest-img img {
    transform: scale(1.08);
}

.bmt-dest-card:hover .bmt-dest-badge-explore {
    background: #ff8a00;
    color: #fff;
}

/* ==========================================================================
   RECOMMENDED ADVENTURES (TRIPS GRID)
   ========================================================================== */
.bmt-section-header {
    text-align: left;
    margin-bottom: 50px;
}

.bmt-trips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .bmt-trips-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .bmt-trips-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 15px !important; 
    }
    
    .bmt-trip-title {
        font-size: 14px !important;
        height: 38px !important;
        overflow: hidden;
    }
    
    .bmt-trip-desc {
        display: none !important;
    }
    
    .bmt-trip-body {
        padding: 12px 15px 15px 15px !important;
    }
    
    .bmt-trip-image {
        height: 140px !important;
        margin: 6px !important;
        border-radius: 20px !important;
    }
    
    .bmt-trip-price-badge {
        font-size: 11px !important;
        padding: 4px 10px !important;
        bottom: 10px !important;
        right: 10px !important;
    }
    
    .bmt-trip-badge {
        font-size: 9px !important;
        padding: 4px 8px !important;
        top: 10px !important;
        left: 10px !important;
    }
    
    .bmt-meta-pill {
        padding: 3px 8px !important;
        font-size: 9px !important;
        border-radius: 8px !important;
    }
    
    .bmt-trip-bottom-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        padding-top: 10px !important;
    }
    
    .bmt-trip-book-btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        font-size: 10px !important;
        padding: 6px 12px !important;
        border-radius: 8px !important;
    }
}

.bmt-trip-card {
    background: #fff;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.bmt-trip-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    margin: 12px;
    border-radius: 28px;
}

.bmt-trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bmt-trip-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #9333ea;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.bmt-trip-badge.sea { background: #0ea5e9; }
.bmt-trip-badge.safari { background: #f59e0b; }
.bmt-trip-badge.culture { background: #10b981; }
.bmt-trip-badge.other { background: #9333ea; }

.bmt-trip-media-actions {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.bmt-media-action-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    color: #0f172a;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.bmt-media-action-btn:hover {
    background: #fff;
    color: #ef4444;
}

.bmt-trip-media-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.bmt-trip-media-dots .dot {
    width: 12px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: all 0.3s;
}

.bmt-trip-media-dots .dot.active {
    width: 20px;
    background: #fff;
}

.bmt-trip-price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #fff;
    color: #0f172a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.bmt-trip-body {
    padding: 16px 24px 24px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.bmt-trip-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px 0;
    line-height: 1.4;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s ease;
}

.bmt-trip-title a {
    color: #0f172a;
    text-decoration: none;
}

.bmt-trip-title a:hover {
    color: #9333ea;
}

.bmt-trip-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 16px 0;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.bmt-trip-meta-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.bmt-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.bmt-meta-pill.duration {
    background: #f3e8ff;
    color: #6b21a8;
}

.bmt-meta-pill.location {
    background: #ffedd5;
    color: #c2410c;
}

.bmt-trip-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px dashed #e2e8f0;
    padding-top: 16px;
}

.bmt-trip-rating-col {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bmt-rating-provider-icon {
    width: 20px;
    height: 20px;
    background-color: #34d399;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
}

.bmt-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 11px;
}

.bmt-rating-score {
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    margin-left: 2px;
}

.bmt-trip-book-btn {
    background: #f3e8ff;
    color: #9333ea;
    border: none;
    border-radius: 14px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bmt-trip-book-btn:hover {
    background: #9333ea;
    color: #fff;
}

.bmt-trip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(147, 51, 234, 0.1);
}

.bmt-trip-card:hover .bmt-trip-image img {
    transform: scale(1.06);
}

.bmt-trip-card:hover .bmt-trip-title a {
    color: #9333ea;
}

.bmt-trip-card:hover .bmt-trip-book-btn {
    background: #9333ea;
    color: #fff;
}

/* ==========================================================================
   EXPLORE LUXURY STAYS
   ========================================================================== */
.bmt-stays-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.bmt-stays-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .bmt-stays-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .bmt-stays-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 15px !important; 
    }
    
    .bmt-stay-title {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
    
    .bmt-stay-body {
        padding: 15px !important;
    }
    
    .bmt-stay-img {
        height: 140px !important;
    }
    
    .bmt-stay-price {
        font-size: 11px !important;
        padding: 4px 10px !important;
        bottom: 10px !important;
        right: 10px !important;
    }
    
    .bmt-stay-resort-badge {
        font-size: 9px !important;
        padding: 4px 8px !important;
        top: 10px !important;
        left: 10px !important;
    }
    
    .bmt-stay-btn {
        font-size: 11px !important;
    }
}

.bmt-stay-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.bmt-stay-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.bmt-stay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bmt-stay-card:hover .bmt-stay-img img {
    transform: scale(1.08);
}

.bmt-stay-price {
    position: absolute;
    bottom: 20px; right: 20px;
    background: #fff;
    color: var(--text-main);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.bmt-stay-resort-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--accent-grad);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bmt-stay-body {
    padding: 30px;
    text-align: left;
}

.bmt-stay-loc {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.bmt-stay-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
}

.bmt-stay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.bmt-stay-btn i {
    transition: transform 0.3s;
}

.bmt-stay-btn:hover {
    color: var(--primary);
}

.bmt-stay-btn:hover i {
    transform: translateX(6px);
}

.bmt-stay-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

/* ==========================================================================
   EXPLORE LUXURY GUIDES
   ========================================================================== */
.bmt-guides-section {
    padding: 90px 0;
    background-color: #fff;
}

.bmt-subtitle-desc.italic {
    font-style: italic;
    color: #64748b;
    font-size: 16px;
    margin-top: 10px;
}

.bmt-guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .bmt-guides-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .bmt-guides-grid { grid-template-columns: 1fr; }
}

.bmt-guide-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.bmt-guide-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.bmt-guide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bmt-guide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.bmt-guide-card:hover .bmt-guide-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 15%, rgba(0,0,0,0.92) 100%);
}

.bmt-guide-content {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bmt-guide-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bmt-guide-badge i {
    color: #ff8a00;
    font-size: 14px;
}

.bmt-guide-badge span {
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bmt-guide-title {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bmt-guide-hover-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bmt-guide-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px 0;
    font-family: 'Inter', sans-serif;
}

.bmt-guide-link {
    color: #ff8a00;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.bmt-guide-link i {
    transition: transform 0.3s;
}

.bmt-guide-link:hover i {
    transform: translateX(4px);
}

.bmt-guide-card:hover .bmt-guide-hover-content {
    max-height: 150px;
    opacity: 1;
    margin-top: 15px;
}

.bmt-guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.bmt-guide-card:hover .bmt-guide-img img {
    transform: scale(1.06);
}

/* ==========================================================================
   NEWSLETTER CTA
   ========================================================================== */
.bmt-newsletter-cta-section {
    padding: 90px 0;
}

.glass-panel-glow {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    border-radius: 36px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.25);
}

.bmt-newsletter-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.bmt-newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.bmt-news-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.bmt-news-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    line-height: 1.6;
}

.bmt-news-form {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px;
    border-radius: 20px;
}

.bmt-news-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding-left: 20px;
}

.bmt-news-icon {
    color: #fff;
    font-size: 16px;
}

.bmt-news-input-wrap input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    color: #fff;
    font-size: 15px;
}

.bmt-news-input-wrap input::placeholder {
    color: rgba(255,255,255,0.7);
}

.bmt-news-btn {
    background: #fff;
    color: var(--text-main);
    border: none;
    border-radius: 14px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.bmt-news-btn:hover {
    background: var(--dark-slate);
    color: #fff;
}

@media (max-width: 768px) {
    .bmt-news-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 15px;
    }
    .bmt-news-input-wrap {
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.25);
        padding: 15px 20px;
        border-radius: 15px;
    }
    .bmt-news-btn {
        width: 100%;
        justify-content: center;
        height: 50px;
    }
}

/* ==========================================================================
   FEATURES (EXPERIENCES)
   ========================================================================== */
.bmt-features-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.bmt-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .bmt-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .bmt-features-grid { grid-template-columns: 1fr; }
}

.bmt-feature-box {
    background: #fff;
    border-radius: 28px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: left;
}

.bmt-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
}

.bmt-feature-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.bmt-feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.bmt-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

/* ==========================================================================
   DARK PROMO
   ========================================================================== */
.bmt-dark-promo-section {
    padding: 100px 0;
    background: var(--dark-slate);
}

.bmt-promo-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.bmt-promo-col-img {
    flex: 1.1;
}

.bmt-promo-col-text {
    flex: 0.9;
    text-align: left;
}

.bmt-promo-img-wrap {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.bmt-promo-img-wrap img {
    width: 100%;
    object-fit: cover;
}

.bmt-img-glow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1) 0%, rgba(0,0,0,0) 50%);
}

.bmt-promo-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.bmt-promo-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bmt-promo-desc {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.8;
}

.bmt-btn-gradient {
    display: inline-block;
    background: var(--primary-grad);
    color: #fff;
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.bmt-btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.5);
    color: #fff;
}

@media (max-width: 991px) {
    .bmt-promo-row {
        flex-direction: column;
        gap: 40px;
    }
}

/* ==========================================================================
   VIDEO BANNER
   ========================================================================== */
.bmt-video-banner {
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bmt-video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(11, 15, 25, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bmt-play-btn {
    width: 96px;
    height: 96px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.3);
    transition: var(--transition);
    position: relative;
}

.bmt-play-btn i {
    margin-left: 6px;
}

.bmt-play-btn::after {
    content: '';
    position: absolute;
    top: -10px; left: -10px;
    right: -10px; bottom: -10px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    animation: pulsePlay 2s infinite;
}

@keyframes pulsePlay {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0; }
}

.bmt-play-btn:hover {
    background: var(--primary-grad);
    color: #fff;
    transform: scale(1.05);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.bmt-testimonials-section {
    padding: 90px 0;
}

.bmt-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .bmt-testimonials-grid { grid-template-columns: 1fr; }
}

.bmt-testimonial-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    text-align: left;
    transition: var(--transition);
}

.bmt-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.bmt-review-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.bmt-client-info {
    border-top: 1px dashed var(--border-color);
    padding-top: 20px;
}

.bmt-client-name {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.bmt-client-trip {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
}

.bmt-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

/* ==========================================================================
   BOTTOM CTA
   ========================================================================== */
.bmt-bottom-cta-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.bmt-bottom-cta-card {
    background: linear-gradient(135deg, #0b0f19 0%, #172554 100%);
    border-radius: 36px;
    padding: 70px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11, 15, 25, 0.3);
    text-align: center;
}

.bmt-cta-overlay-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.12) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
}

.bmt-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.bmt-cta-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bmt-cta-sub {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.7;
}

.bmt-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.bmt-cta-btn-primary {
    background: var(--primary-grad);
    color: #fff;
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.3);
}

.bmt-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.5);
    color: #fff;
}

.bmt-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
}

.bmt-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

@media (max-width: 768px) {
    .bmt-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .bmt-cta-btn-primary, .bmt-cta-btn-secondary {
        width: 100%;
        display: block;
        padding: 15px 30px;
    }
}

/* ==========================================================================
   MEGA SLATE-BLACK FOOTER
   ========================================================================== */
.site-footer {
    background: #070a12;
    padding: 80px 0 40px 0;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .footer-top { grid-template-columns: 1fr; }
}

.footer-col-info {
    text-align: left;
}

.footer-logo {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-logo i {
    color: var(--primary);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--primary-grad);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 14px;
    color: #94a3b8;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 18px;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #64748b;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* ==========================================================================
    DYNAMIC BOOKING MODAL & WIZARD
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.bmt-booking-wizard-panel {
    background: #fff;
    border-radius: 36px;
    max-width: 750px;
    width: 100%;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.15);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    animation: wizardFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes wizardFadeIn {
    from { opacity: 0; transform: scale(0.96) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 30px; right: 30px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    font-size: 22px;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 100;
}

.modal-close:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
}

.bmt-wizard-header {
    padding: 35px 35px 25px;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}

.bmt-wizard-logo-url {
    font-size: 26px;
    font-weight: 900;
    color: #0f172a;
    text-align: center;
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
}

.bmt-wizard-steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-dot.active {
    background: #f97316;
    color: #fff;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.step-dot.done {
    background: #f97316;
    color: #fff;
}

.step-line {
    flex-grow: 1;
    max-width: 40px;
    height: 3px;
    background: #f1f5f9;
    transition: all 0.3s ease;
}

.step-line.active,
.step-line.done {
    background: #f97316;
}

.bmt-wizard-body {
    padding: 35px;
    overflow-y: auto;
    flex-grow: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-title i {
    color: #f97316;
}

.section-sub-desc {
    font-size: 13px;
    color: #64748b;
    margin-top: -15px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Mini Trip Tag Row */
.bmt-wizard-mini-trip-tag {
    background: #fff8f0;
    border: 1px solid #ffedd5;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 13px;
    color: #c2410c;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bmt-wizard-mini-trip-tag strong {
    color: #0f172a;
}

/* Vehicle Selector Pills */
.section-sub-label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #334155;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.vehicle-pills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.vehicle-pill {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: var(--transition);
}

.vehicle-pill:hover {
    background: #fff8f0;
    border-color: #ffedd5;
}

.vehicle-pill.active {
    background: #fff;
    border-color: #f97316;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.08);
}

.vehicle-pill .v-name {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}

.vehicle-pill .v-price {
    font-size: 13px;
    font-weight: 700;
    color: #f97316;
}

/* Wizard Live Calculation Block */
.wizard-recalculation-details {
    background: #f8fafc;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #f1f5f9;
}

.recalc-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    padding: 6px 0;
}

.recalc-line.total-divider {
    border-top: 1px dashed #cbd5e1;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 15px;
    color: #0f172a;
}

.price-val-orange {
    color: #f97316 !important;
    font-size: 20px;
    font-weight: 900;
}

/* Optional Addons Accordion */
.wizard-accordion-box {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
}

.accordion-header {
    background: #f8fafc;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    color: #334155;
    cursor: pointer;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-accordion-box.active .accordion-content {
    max-height: 150px;
    border-top: 1px solid #e2e8f0;
    padding: 15px 20px;
}

.addon-row {
    padding: 6px 0;
}

.addon-row label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Location Search bar */
.search-location-wrap {
    display: flex;
    gap: 10px;
}

.search-location-wrap input {
    flex-grow: 1;
}

.use-location-btn {
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.use-location-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

/* Custom Map Placeholder */
.wizard-map-placeholder {
    height: 200px;
    border-radius: 20px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-inner-placeholder {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(5px);
    padding: 14px 24px;
    border-radius: 16px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.map-inner-placeholder i {
    color: #f97316;
    font-size: 22px;
}

/* Payment Method Toggles */
.payment-method-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.pay-method-label {
    cursor: pointer;
    display: block;
}

.pay-method-label input[type="radio"] {
    display: none;
}

.pay-method-label .pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 14px;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    font-size: 13px;
    font-weight: 800;
    color: #475569;
    transition: var(--transition);
}

.pay-method-label input[type="radio"]:checked + .pay-btn {
    border-color: #f97316;
    background: #fff;
    color: #0f172a;
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.1);
}

.pay-method-label:hover .pay-btn {
    background: #fff;
    border-color: #cbd5e1;
}

.pay-method-label input[type="radio"]:checked + .pay-btn i {
    color: #f97316;
}

.payment-info-note {
    font-size: 12px;
    color: #64748b;
    margin-top: 10px;
    font-weight: 600;
}

/* Success Step styles */
.success-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.success-details-box {
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.success-details-box div {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.success-footer-note {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 25px;
}

.wizard-finish-btn {
    width: 100%;
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 16px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.wizard-finish-btn:hover {
    background: #ea580c;
}

/* Wizard Footer Bar */
.bmt-wizard-footer {
    background: #fff;
    border-top: 1px solid #f1f5f9;
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-total-box {
    display: flex;
    flex-direction: column;
}

.footer-total-box .lbl {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
}

.footer-total-box .val {
    font-size: 26px;
    font-weight: 900;
    color: #f97316;
}

.footer-btn-actions {
    display: flex;
    gap: 12px;
}

.wizard-nav-btn {
    padding: 14px 28px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wizard-nav-btn.prev {
    background: #fff;
    color: #475569;
    border: 1px solid #cbd5e1;
}

.wizard-nav-btn.prev:hover {
    background: #f8fafc;
}

.wizard-nav-btn.next {
    background: #f97316;
    color: #fff;
    border: none;
}

.wizard-nav-btn.next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}

@media (max-width: 580px) {
    .vehicle-pills-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-method-selector {
        grid-template-columns: 1fr;
    }
    
    .bmt-wizard-steps-bar {
        gap: 2px;
    }
    
    .step-line {
        max-width: 15px;
    }
}


/* ==========================================================================
   CUSTOM NAVBAR DROPDOWNS & BADGES
   ========================================================================== */
.has-badge {
    position: relative;
}
.bmt-nav-badge {
    background: #f59e0b;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: 5px;
    vertical-align: middle;
    text-transform: uppercase;
}
.bmt-nav-menu li.has-dropdown {
    position: relative;
}
.bmt-nav-menu li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}
.bmt-nav-menu li.has-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.bmt-nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 12px;
    min-width: 180px;
    list-style: none;
    margin: 10px 0 0 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}
.bmt-nav-menu .sub-menu li {
    margin: 0;
    padding: 0;
}
.bmt-nav-menu .sub-menu li a {
    display: block;
    padding: 8px 16px;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-align: left;
}
.bmt-nav-menu .sub-menu li a:hover {
    background: rgba(0, 210, 255, 0.08);
    color: var(--primary);
    padding-left: 20px;
}

/* ==========================================================================
   MEGA MENU
   ========================================================================== */
.bmt-nav-menu li.bmt-mega-trigger {
    position: static;
}

.bmt-nav-menu .bmt-mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 24px;
    margin: 10px 20px 0;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 200;
    max-width: 1200px;
}

.bmt-nav-menu li.bmt-mega-trigger:hover .bmt-mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bmt-mega-menu {
    display: grid;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bmt-mega-col-2 { grid-template-columns: repeat(2, 1fr); }
.bmt-mega-col-3 { grid-template-columns: repeat(3, 1fr); }
.bmt-mega-col-4 { grid-template-columns: repeat(4, 1fr); }

.bmt-mega-menu > .menu-item {
    break-inside: avoid;
}

.bmt-mega-menu > .menu-item > a {
    display: block;
    padding: 10px 14px;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.bmt-mega-menu > .menu-item > a:hover {
    background: rgba(0, 210, 255, 0.08);
    color: var(--primary);
    padding-left: 18px;
}

.bmt-mega-menu .bmt-mega-label > .mega-label-link {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    padding: 4px 14px;
    margin: 4px 0;
    pointer-events: none;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 0;
}

.bmt-mega-menu .bmt-mega-label > .mega-label-link:hover {
    background: none;
    color: #94a3b8;
    padding-left: 14px;
}

.bmt-menu-desc {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #94a3b8;
    margin-top: 2px;
    line-height: 1.4;
}

.bmt-mega-menu .sub-sub-menu {
    list-style: none;
    margin: 4px 0 0 0;
    padding: 0 0 0 14px;
}

.bmt-mega-menu .sub-sub-menu a {
    display: block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bmt-mega-menu .sub-sub-menu a:hover {
    background: rgba(0, 210, 255, 0.06);
    color: var(--primary);
    padding-left: 18px;
}

@media (max-width: 991px) {
    .bmt-nav-menu .bmt-mega-dropdown {
        position: static;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        padding: 8px 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
    }

    .bmt-mega-col-2,
    .bmt-mega-col-3,
    .bmt-mega-col-4 {
        grid-template-columns: 1fr;
    }

    .bmt-mega-menu .sub-sub-menu {
        padding-left: 20px;
    }

    .bmt-promo-infobar-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

/* ==========================================================================
   ULTIMATE SINGLE TRIP DETAIL PAGE
   ========================================================================== */
.bmt-single-trip-page {
    background-color: #f8fafc;
    padding-bottom: 80px;
    font-family: 'Outfit', sans-serif;
    color: #334155;
}

/* 1. Header & Breadcrumbs Wrap */
.bmt-trip-header-wrap {
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    padding: 30px 0 40px;
}

.bmt-trip-breadcrumb-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 25px;
}

.bmt-trip-breadcrumb-row a.back-btn-link {
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.bmt-trip-breadcrumb-row a.back-btn-link:hover {
    color: #7e22ce;
    transform: translateX(-3px);
}

.bmt-trip-title-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.bmt-meta-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.bmt-trip-badge-top {
    background: #f3e8ff;
    color: #9333ea;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.bmt-trip-badge-top.other { background: #f3e8ff; color: #9333ea; }
.bmt-trip-badge-top.sea { background: #e0f2fe; color: #0284c7; }
.bmt-trip-badge-top.safari { background: #fff7ed; color: #ea580c; }
.bmt-trip-badge-top.culture { background: #ecfdf5; color: #059669; }

.bmt-trip-loc-top {
    background: #fff8f0;
    color: #f97316;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #ffedd5;
}

.bmt-single-trip-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.bmt-single-trip-subtitle {
    font-size: 16px;
    color: #f97316;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.bmt-trip-header-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #475569;
}

.bmt-trip-header-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bmt-trip-header-meta .meta-item.rating i {
    color: #eab308;
}

.bmt-trip-header-meta .meta-item.duration i {
    color: #a855f7;
}

.bmt-title-actions {
    display: flex;
    gap: 10px;
}

.bmt-title-actions .action-btn {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.bmt-title-actions .action-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.bmt-title-actions .action-btn.fav-btn.active {
    background: #fff1f2;
    border-color: #fecdd3;
    color: #f43f5e;
}

.bmt-title-actions .action-btn.fav-btn.active i {
    font-weight: 900;
}

/* 2. Page Container & Layout Columns */
.bmt-single-trip-container {
    padding-top: 40px;
}

.bmt-single-trip-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: flex-start;
}

/* 3. Left Column Cards */
.bmt-trip-gallery-card {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
    margin-bottom: 30px;
}

.gallery-main-slide {
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 15px;
}

.gallery-main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumb-item {
    height: 85px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition);
}

.thumb-item:hover img,
.thumb-item.active img {
    opacity: 1;
}

.thumb-item.active {
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Highlights Info Bar */
.bmt-trip-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-box {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 25px rgba(0,0,0,0.01);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #f8fafc;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.highlight-box:nth-child(2) .highlight-icon { color: #f97316; background: #fff8f0; }
.highlight-box:nth-child(3) .highlight-icon { color: #06b6d4; background: #ecfeff; }
.highlight-box:nth-child(4) .highlight-icon { color: #10b981; background: #ecfdf5; }

.highlight-info {
    display: flex;
    flex-direction: column;
}

.highlight-info .label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.highlight-info .val {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}

/* Sections Styling */
.bmt-single-section-card {
    background: #fff;
    border-radius: 32px;
    padding: 35px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 15px 40px rgba(0,0,0,0.02);
    margin-bottom: 30px;
}

.section-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-card-title i {
    color: var(--primary);
}

.desc-typography {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}

.desc-typography p {
    margin-bottom: 18px;
}

.desc-typography p:last-child {
    margin-bottom: 0;
}

/* Side-by-Side Included / Excluded Columns */
.bmt-includes-excludes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.inclusion-card {
    border-radius: 32px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
}

.inclusion-card.included {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.inclusion-card.excluded {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.inclusion-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inclusion-card.included .inclusion-title { color: #166534; }
.inclusion-card.excluded .inclusion-title { color: #991b1b; }

.inclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inclusion-list li {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.inclusion-card.included .inclusion-list li { color: #1e3a2b; }
.inclusion-card.excluded .inclusion-list li { color: #491212; }

.inclusion-list li i {
    margin-top: 3px;
    font-size: 13px;
}

.inclusion-card.included .inclusion-list li i { color: #16a34a; }
.inclusion-card.excluded .inclusion-list li i { color: #dc2626; }

/* What to Bring custom icon list */
.bring-list li i {
    color: #f97316 !important;
}

/* Reviews Breakdown UI */
.bmt-reviews-summary-block {
    display: flex;
    gap: 40px;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 30px;
}

.summary-score-box {
    background: #faf5ff;
    border: 1px solid #f3e8ff;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.big-score {
    font-size: 48px;
    font-weight: 900;
    color: #9333ea;
    line-height: 1;
    margin-bottom: 5px;
}

.score-label {
    font-size: 14px;
    font-weight: 800;
    color: #7e22ce;
    margin-bottom: 10px;
}

.bmt-stars {
    display: flex;
    gap: 4px;
    color: #eab308;
    font-size: 12px;
    margin-bottom: 8px;
}

.review-count {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 15px;
}

.write-review-btn {
    background: #9333ea;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.write-review-btn:hover {
    background: #7e22ce;
    transform: translateY(-2px);
}

.summary-bars-box {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-label {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    min-width: 100px;
}

.bar-track {
    flex-grow: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #f97316;
    border-radius: 4px;
}

.bar-val {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    min-width: 25px;
    text-align: right;
}

/* Reviews List Comments */
.review-comment-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #f1f5f9;
}

.review-comment-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #9333ea;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.comment-date {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.comment-stars {
    font-size: 11px;
}

.review-comment-text {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
    font-weight: 500;
}

/* 4. Sticky Sidebar Booking Card */
.bmt-single-sidebar-col {
    position: sticky;
    top: 110px;
    z-index: 10;
}

.bmt-sticky-booking-card {
    background: #fff;
    border-radius: 36px;
    padding: 30px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.special-offer-banner {
    background: linear-gradient(135deg, #9333ea 0%, #f97316 100%);
    border-radius: 20px;
    padding: 16px;
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
}

.offer-badge {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
}

.offer-countdown {
    font-size: 13px;
    font-weight: 700;
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 10px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.booking-card-price-header {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-left {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.booking-card-price-header .original-price {
    font-size: 18px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}

.booking-card-price-header .current-price-large {
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
}

.price-caption {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

/* Travelers Selector Widget */
.travelers-calculator-box {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 20px;
}

.calc-title {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.calc-row:not(:last-child) {
    border-bottom: 1px solid #e2e8f0;
}

.calc-row-left {
    display: flex;
    flex-direction: column;
}

.calc-label {
    font-size: 14px;
    font-weight: 800;
    color: #334155;
}

.calc-sub-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.calc-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.calc-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 16px;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.calc-btn:hover {
    background: var(--primary);
    border-color: transparent;
    color: #fff;
}

.calc-qty {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    min-width: 15px;
    text-align: center;
}

.calc-info-note {
    font-size: 11px;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.calc-info-note i {
    color: var(--primary);
    margin-top: 2px;
}

/* Primary Booking Button */
.sidebar-book-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #7e22ce 100%);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 18px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.25);
    transition: var(--transition);
}

.sidebar-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.35);
}

.sidebar-trust-box {
    margin: 20px 0;
    text-align: center;
}

.trust-badge {
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    background: #f0fdf4;
    padding: 6px 14px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #bbf7d0;
}

/* Support Help Row */
.sidebar-support-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.support-btn {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.support-btn.tel {
    background: #fff;
    color: #475569;
}

.support-btn.tel:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.support-btn.whatsapp {
    background: #25d366;
    color: #fff;
    border-color: transparent;
}

.support-btn.whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* 5. Similar Adventures Section */
.bmt-related-trips-section {
    background: #fff;
    border-top: 1px solid #f1f5f9;
    padding: 80px 0;
    margin-top: 60px;
}

.related-section-header {
    margin-bottom: 40px;
}

.bmt-title-md {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATIONS
   ========================================================================== */
@media (max-width: 1024px) {
    .bmt-single-trip-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bmt-single-sidebar-col {
        position: static;
        top: 0;
    }
    
    .gallery-main-slide {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .bmt-single-trip-title {
        font-size: 28px;
    }
    
    .bmt-trip-title-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .bmt-title-actions {
        width: 100%;
    }
    
    .bmt-title-actions .action-btn {
        flex-grow: 1;
        justify-content: center;
    }
    
    .bmt-trip-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bmt-includes-excludes-grid {
        grid-template-columns: 1fr;
    }
    
    .bmt-reviews-summary-block {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }
    
    .summary-bars-box {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
    HOMEPAGE PREMIUM REDESIGNED SECTIONS (BookMyTrip custom styling)
   ========================================================================== */

/* 1. Explore Paradise (Destinations Section) */
.bmt-explore-paradise-sec {
    background: #0f172a;
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.bmt-explore-paradise-sec::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bmt-explore-paradise-sec::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bmt-explore-paradise-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 50px;
}

.bmt-explore-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.bmt-explore-row.reverse {
    flex-direction: row-reverse;
}

.bmt-explore-img-col {
    flex: 1;
    position: relative;
}

.bmt-dest-slider-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bmt-dest-slider-wrap img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bmt-dest-slider-wrap:hover img {
    transform: scale(1.03);
}

.bmt-dest-badge-capsule {
    position: absolute;
    top: 24px; left: 24px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.bmt-dest-badge-capsule span.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d2ff;
    display: inline-block;
    box-shadow: 0 0 10px #00d2ff;
    animation: cyanPulse 2s infinite;
}

@keyframes cyanPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 210, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 255, 0); }
}

.bmt-dest-slider-progress {
    position: absolute;
    bottom: 24px;
    left: 24px; right: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    z-index: 5;
}

.bmt-dest-progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    overflow: hidden;
}

.bmt-dest-progress-bar-fill {
    width: 0%;
    height: 100%;
    background: #00d2ff;
    transition: width 0.3s ease;
}

.bmt-dest-progress-bar.active .bmt-dest-progress-bar-fill {
    width: 100%;
    transition: width 4s linear;
}

.bmt-explore-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bmt-explore-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.bmt-explore-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 25px;
}

.bmt-explore-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.bmt-explore-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.bmt-explore-tag i {
    color: #00d2ff;
}

.bmt-explore-tag:hover {
    background: rgba(0, 210, 255, 0.1);
    border-color: rgba(0, 210, 255, 0.3);
    color: #fff;
}

.bmt-dest-btn-gradient {
    align-self: flex-start;
    background: linear-gradient(135deg, #00d2ff 0%, #8b5cf6 100%);
    color: #fff;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.15);
}

.bmt-dest-btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.25);
    background: linear-gradient(135deg, #00c2eb 0%, #7c3aed 100%);
}

/* 2. Interactive Red Sea Stories (3D Perspective Section) */
.bmt-stories-3d-sec {
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.bmt-stories-3d-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    perspective: 1000px;
}

.bmt-story-3d-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 480px;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    transform-style: preserve-3d;
}

.bmt-story-3d-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bmt-story-3d-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 2;
}

.bmt-story-3d-card:hover {
    transform: translateY(-10px) rotateX(4deg) rotateY(-4deg);
    box-shadow: 0 30px 60px rgba(0, 210, 255, 0.15);
}

.bmt-story-3d-card.photo:hover { box-shadow: 0 30px 60px rgba(249, 115, 22, 0.15); }
.bmt-story-3d-card.water:hover { box-shadow: 0 30px 60px rgba(0, 210, 255, 0.15); }
.bmt-story-3d-card.safari:hover { box-shadow: 0 30px 60px rgba(139, 92, 246, 0.15); }

.bmt-story-3d-card:hover img {
    transform: scale(1.05);
}

.bmt-story-content-inner {
    position: absolute;
    bottom: 40px;
    left: 40px; right: 40px;
    z-index: 3;
    text-align: left;
    transform: translateZ(30px); /* 3D effect depth */
}

.bmt-story-3d-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.bmt-story-accent-line {
    width: 44px;
    height: 4px;
    border-radius: 4px;
    background: #00d2ff;
}

.bmt-story-3d-card.photo .bmt-story-accent-line { background: #f97316; }
.bmt-story-3d-card.water .bmt-story-accent-line { background: #00d2ff; }
.bmt-story-3d-card.safari .bmt-story-accent-line { background: #8b5cf6; }

/* 3. Testimonials Section (Verified Adventurers) */
.bmt-testimonials-premium-sec {
    background: #fff;
    padding: 100px 0;
}

.bmt-testimonials-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.bmt-testimonial-premium-card {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bmt-testimonial-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.06);
    border-color: #cbd5e1;
}

.bmt-testimonial-quote-badge {
    position: absolute;
    top: 30px; right: 35px;
    font-size: 48px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.bmt-testimonial-premium-card .bmt-stars {
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.bmt-testimonial-premium-card .bmt-stars i {
    color: #f59e0b;
    font-size: 13px;
}

.bmt-review-text-premium {
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
    font-style: italic;
    margin-bottom: 25px;
}

.bmt-client-premium-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bmt-client-avatar-glow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: #fff;
}

.bmt-client-avatar-gradient-1 { background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%); }
.bmt-client-avatar-gradient-2 { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }
.bmt-client-avatar-gradient-3 { background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%); }
.bmt-client-avatar-gradient-4 { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }

.bmt-client-premium-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.bmt-client-premium-name {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bmt-client-premium-name i.verif-badge {
    color: #3b82f6;
    font-size: 11px;
}

.bmt-client-premium-country {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
}

/* 4. Common Questions Accordion Hub */
.bmt-faq-accordion-sec {
    background: #f8fafc;
    padding: 100px 0;
}

.bmt-faq-side-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.bmt-faq-info-card {
    background: #fff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid #e2e8f0;
}

.bmt-faq-icon-bubble {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: #fff3e8;
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.1);
}

.bmt-faq-info-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.bmt-faq-info-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

.bmt-faq-accordion-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bmt-faq-accordion-item {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: var(--transition);
}

.bmt-faq-accordion-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.02);
}

.bmt-faq-accordion-item.active {
    border-color: #f97316;
}

.bmt-faq-accordion-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.bmt-faq-accordion-header h4 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    transition: var(--transition);
    text-align: left;
}

.bmt-faq-accordion-item.active .bmt-faq-accordion-header h4 {
    color: #f97316;
}

.bmt-faq-accordion-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 11px;
    transition: var(--transition);
}

.bmt-faq-accordion-item.active .bmt-faq-accordion-icon {
    background: #ffedd5;
    color: #f97316;
    transform: rotate(180deg);
}

.bmt-faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bmt-faq-accordion-content p {
    padding: 0 30px 24px 30px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
    text-align: left;
}

/* 5. Why Choose Us & Experiences redos */
.bmt-why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.bmt-why-us-card {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    text-align: left;
}

.bmt-why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: #cbd5e1;
}

.bmt-why-us-icon-glow {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.bmt-why-us-card:hover .bmt-why-us-icon-glow {
    transform: scale(1.1) rotate(5deg);
}

.bmt-why-us-card:nth-child(1) .bmt-why-us-icon-glow { color: #10b981; background: #ecfdf5; }
.bmt-why-us-card:nth-child(2) .bmt-why-us-icon-glow { color: #3b82f6; background: #eff6ff; }
.bmt-why-us-card:nth-child(3) .bmt-why-us-icon-glow { color: #8b5cf6; background: #f5f3ff; }
.bmt-why-us-card:nth-child(4) .bmt-why-us-icon-glow { color: #f59e0b; background: #fffbeb; }

.bmt-why-us-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.bmt-why-us-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 0;
}

/* Experiences Section Grid */
.bmt-unforgettable-experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.bmt-experience-card {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    text-align: left;
    box-shadow: var(--card-shadow);
}

.bmt-experience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.bmt-exp-large-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.bmt-experience-card:nth-child(1) .bmt-exp-large-icon-box { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }
.bmt-experience-card:nth-child(2) .bmt-exp-large-icon-box { background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%); }
.bmt-experience-card:nth-child(3) .bmt-exp-large-icon-box { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.bmt-experience-card:nth-child(4) .bmt-exp-large-icon-box { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }

.bmt-exp-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.bmt-exp-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 0;
}

/* Responsive fixes */
@media (max-width: 991px) {
    .bmt-explore-row {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .bmt-stories-3d-grid {
        grid-template-columns: 1fr;
    }
    
    .bmt-testimonials-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bmt-faq-side-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bmt-why-us-grid,
    .bmt-unforgettable-experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bmt-explore-paradise-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 10px 5px 30px 5px !important;
        -webkit-overflow-scrolling: touch !important;
        margin-top: 30px !important;
    }
    
    .bmt-explore-paradise-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .bmt-explore-row {
        flex: 0 0 85% !important;
        scroll-snap-align: center !important;
        flex-direction: column !important;
        background: #1e293b !important; /* Dark card color */
        border-radius: 28px !important;
        padding: 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25) !important;
        gap: 20px !important;
    }
    
    .bmt-explore-row.reverse {
        flex-direction: column !important;
    }
    
    .bmt-explore-img-col {
        width: 100% !important;
    }
    
    .bmt-dest-slider-wrap img {
        height: 220px !important;
        border-radius: 18px !important;
    }
    
    .bmt-explore-text-col {
        width: 100% !important;
        padding: 0 !important;
        text-align: left !important;
    }
    
    .bmt-explore-title {
        font-size: 20px !important;
        margin-bottom: 8px !important;
        color: #fff !important;
    }
    
    .bmt-explore-desc {
        font-size: 13px !important;
        line-height: 1.6 !important;
        color: rgba(255, 255, 255, 0.7) !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 4 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        margin-bottom: 20px !important;
    }
    
    .bmt-explore-tags {
        display: none !important;
    }
    
    .bmt-dest-btn-gradient {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 580px) {
    .bmt-testimonials-premium-grid,
    .bmt-why-us-grid,
    .bmt-unforgettable-experiences-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   BOOKMYTRIP BLOG & SINGLE POST STYLING (PREMIUM & CLASSY)
   ========================================================================== */

/* 1. Blog Archive (home.php) */
.bmt-blog-header {
    background: linear-gradient(180deg, #fff8f3 0%, #fff 100%);
    padding: 90px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.bmt-blog-header-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.bmt-blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 9px 20px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.bmt-blog-back-btn:hover {
    color: #f97316;
    border-color: #f97316;
    transform: translateX(-3px);
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.05);
}

.bmt-blog-badge {
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.bmt-blog-title {
    font-size: 40px;
    font-weight: 900;
    color: #0f172a;
    margin: 20px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.bmt-blog-categories-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.bmt-blog-cat-link {
    color: #64748b;
    background: rgba(15, 23, 42, 0.03);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: var(--transition);
}

.bmt-blog-cat-link:hover,
.bmt-blog-cat-link.active {
    color: #f97316;
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.15);
}

/* Featured Post Box */
.bmt-blog-featured-sec {
    padding: 80px 0 40px 0;
    background: #fff;
}

.bmt-blog-featured-card {
    display: flex;
    gap: 45px;
    background: #fff;
    border-radius: 32px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.03);
    align-items: center;
    transition: var(--transition);
}

.bmt-blog-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.06);
    border-color: #cbd5e1;
}

.bmt-blog-featured-img {
    flex: 1.2;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bmt-blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bmt-blog-featured-card:hover .bmt-blog-featured-img img {
    transform: scale(1.04);
}

.bmt-blog-featured-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.bmt-featured-label {
    background: #ffedd5;
    color: #f97316;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 16px;
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.bmt-blog-meta {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.bmt-blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bmt-blog-featured-title {
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.bmt-blog-featured-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.bmt-blog-featured-title a:hover {
    color: #f97316;
}

.bmt-blog-featured-excerpt {
    font-size: 14px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 25px;
}

.bmt-blog-read-link {
    color: #f97316;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition);
}

.bmt-blog-read-link:hover {
    color: #ea580c;
    gap: 10px;
}

/* Grid of All Articles */
.bmt-blog-all-articles-sec {
    padding: 40px 0 80px 0;
    background: #fff;
}

.bmt-blog-all-articles-title {
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
    text-align: left;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.bmt-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bmt-blog-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.bmt-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
    border-color: #cbd5e1;
}

.bmt-blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.bmt-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bmt-blog-card:hover .bmt-blog-card-img img {
    transform: scale(1.04);
}

.bmt-blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bmt-blog-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.bmt-blog-card-tag {
    background: rgba(15, 23, 42, 0.04);
    color: #475569;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    transition: var(--transition);
}

.bmt-blog-card:hover .bmt-blog-card-tag {
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
}

.bmt-blog-card-meta {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.bmt-blog-card-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px;
}

.bmt-blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.bmt-blog-card-title a:hover {
    color: #f97316;
}

.bmt-blog-card-excerpt {
    font-size: 13px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.bmt-blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    margin-bottom: 80px;
}

.bmt-blog-pagination a,
.bmt-blog-pagination span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
}

.bmt-blog-pagination a:hover,
.bmt-blog-pagination span.current {
    background: #f97316;
    color: #fff;
    border-color: #f97316;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.2);
}

/* 2. Single Post (single.php) */
.bmt-single-hero {
    height: 480px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 60px 0;
    color: #fff;
    text-align: left;
}

.bmt-single-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.bmt-single-back-btn {
    position: absolute;
    top: 40px; left: 15px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
    z-index: 5;
    backdrop-filter: blur(10px);
}

.bmt-single-back-btn:hover {
    background: #fff;
    color: #0f172a;
    border-color: #fff;
    transform: translateX(-3px);
}

.bmt-single-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 15px;
}

.bmt-single-hero-badge {
    background: #f97316;
    color: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.bmt-single-hero-title {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.bmt-single-hero-meta {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    gap: 15px;
    align-items: center;
}

.bmt-single-hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Content Layout */
.bmt-single-content-wrapper {
    padding: 80px 0;
    background: #fff;
}

.bmt-single-content-col {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 15px;
}

.bmt-single-entry-content {
    font-size: 16px;
    line-height: 1.85;
    color: #334155;
}

.bmt-single-entry-content p {
    margin-bottom: 25px;
}

.bmt-single-entry-content h2,
.bmt-single-entry-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 45px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.bmt-single-entry-content h2::before {
    content: '🔸';
    color: #f97316;
    font-size: 18px;
}

.bmt-single-entry-content h3::before {
    content: '🔹';
    color: #00d2ff;
    font-size: 16px;
}

.bmt-single-entry-content img,
.bmt-single-entry-content .wp-block-image {
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
}

.bmt-single-entry-content img {
    width: 100%;
    height: auto;
    display: block;
}

.bmt-single-entry-content figcaption,
.bmt-single-entry-content .wp-caption-text {
    font-size: 13px;
    color: #94a3b8;
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

.bmt-single-entry-content blockquote {
    background: #f8fafc;
    border-left: 4px solid #f97316;
    padding: 25px 35px;
    border-radius: 0 20px 20px 0;
    font-style: italic;
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin: 35px 0;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .bmt-blog-featured-card {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    
    .bmt-blog-featured-img {
        width: 100%;
        height: 280px;
    }
    
    .bmt-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .bmt-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .bmt-blog-title {
        font-size: 32px;
    }
    
    .bmt-single-hero-title {
        font-size: 28px;
    }
    
    .bmt-single-hero {
        height: 380px;
    }
}

/* ===== Single Post Utilities ===== */
.bmt-content-area{padding:40px 20px;}
.bmt-content-layout{display:flex;gap:40px;flex-wrap:wrap;}
.bmt-content-primary{flex:1;min-width:280px;}
.bmt-single-entry-content-wrap{max-width:750px;margin:0 auto;}
.bmt-single-post-footer{margin-top:50px;padding-top:30px;border-top:1px solid #f1f5f9;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:20px;}
.bmt-single-tags{display:flex;gap:8px;flex-wrap:wrap;}
.bmt-tag{background:#f1f5f9;color:#475569;padding:6px 14px;border-radius:100px;font-size:12px;font-weight:700;display:inline-block;}
.bmt-single-share{display:flex;align-items:center;gap:12px;}
.bmt-share-label{font-size:13px;font-weight:800;color:#64748b;}
.bmt-share-link{font-size:16px;text-decoration:none;transition:opacity .2s;}
.bmt-share-link:hover{opacity:.7;}
.bmt-comments-wrapper{max-width:750px;margin:40px auto 0;}

/* ===== Comments Area ===== */
.bmt-comments-area{background:#fff;border-radius:12px;padding:24px;box-shadow:0 1px 3px rgba(0,0,0,.08);margin-top:40px;}
.bmt-comments-area .comments-title{font-size:20px;margin:0 0 20px;color:#1e293b;}
.bmt-comments-area .comment-list{list-style:none;margin:0;padding:0;}
.bmt-comment-item{padding:16px 0;border-bottom:1px solid #f1f5f9;}
.bmt-comment-layout{display:flex;gap:14px;}
.bmt-comment-avatar-wrap{flex-shrink:0;}
.bmt-comment-body{flex:1;min-width:0;}
.bmt-comment-header{display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
.bmt-comment-header .comment-author{font-weight:700;font-size:14px;color:#1e293b;}
.bmt-comment-header .comment-date{font-size:12px;color:#94a3b8;}
.bmt-comment-header .comment-date a{color:#94a3b8;text-decoration:none;}
.bmt-comment-moderation{font-size:13px;color:#f59e0b;margin:4px 0;}
.bmt-comment-text{font-size:14px;color:#475569;line-height:1.7;margin-top:8px;}
.bmt-comment-reply-wrap{margin-top:8px;}
.bmt-comment-nav{margin-top:20px;display:flex;justify-content:space-between;}
.bmt-comments-closed{text-align:center;color:#94a3b8;padding:20px 0;margin:0;}
.bmt-comment-reply-title{font-size:18px;margin:24px 0 16px;color:#1e293b;}
.bmt-comment-form-input{width:100%;padding:12px 14px;border:1px solid #e2e8f0;border-radius:10px;font-size:14px;background:#f8f9fa;}
.bmt-comment-form-textarea{width:100%;padding:14px;border:1px solid #e2e8f0;border-radius:10px;font-size:14px;background:#f8f9fa;}

/* ===== Blog Home Utilities ===== */
.bmt-blog-read-link{margin-top:auto;display:inline-flex;align-items:center;gap:6px;}
.bmt-blog-img-flex{display:flex;align-items:center;justify-content:center;min-height:200px;}
.bmt-blog-card-img-flex{display:flex;align-items:center;justify-content:center;min-height:180px;}
.bmt-blog-no-articles{text-align:left;color:#64748b;}

/* ==========================================================================
   PREMIUM MOBILE FLOATING BOTTOM NAV BAR (APP-LIKE EXPERIENCE)
   ========================================================================== */
.bmt-mobile-bottom-nav {
    position: fixed;
    bottom: 25px;
    left: 20px;
    right: 20px;
    height: 75px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--rounded-full);
    box-shadow: var(--shadow-deep);
    border: 1px solid var(--glass-border);
    display: none; /* Hide on desktop */
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    padding: 0 15px;
    transition: var(--transition-base);
}

.bmt-nav-scrolled {
    bottom: 15px;
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
}

.bmt-nav-scrolled .bmt-mobile-nav-label {
    color: rgba(255, 255, 255, 0.6);
}

.bmt-nav-scrolled .bmt-mobile-nav-icon {
    color: rgba(255, 255, 255, 0.8);
}

.bmt-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted);
    flex: 1;
    height: 100%;
    transition: var(--transition-fast);
}

.bmt-mobile-nav-item.active {
    color: var(--primary);
}

.bmt-mobile-nav-icon {
    font-size: 20px;
    margin-bottom: 4px;
    transition: var(--transition-fast);
}

.bmt-mobile-nav-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating Center Book Circle */
.bmt-mobile-book-center-btn {
    position: relative;
    top: -20px;
    max-width: 80px;
}

.bmt-mobile-book-circle {
    width: 65px;
    height: 65px;
    background: var(--primary-grad);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.4);
    border: 4px solid var(--bg-white);
    transition: var(--transition-base);
}

.bmt-mobile-book-text {
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.bmt-mobile-nav-item:active {
    transform: scale(0.92);
}

.bmt-mobile-book-center-btn:hover .bmt-mobile-book-circle {
    transform: scale(1.05) translateY(-5px);
}

/* Show only on Mobile & Tablets */
@media (max-width: 768px) {
    .bmt-mobile-bottom-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 90px; /* Extra bottom cushion to avoid coverage overlap */
    }
}

/* ==========================================================================
    HERO SECTION STYLES
   ========================================================================== */
.bmt-hero-title {
    margin-bottom: 25px;
}
.bmt-hero-title .bmt-brand-red {
    color: #ef4444;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    font-size: 78px;
    letter-spacing: -2px;
}
.bmt-hero-title .bmt-brand-blue {
    color: #1e3a8a;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    font-size: 78px;
    letter-spacing: -2px;
}
.bmt-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}
.bmt-tab-badge {
    background: #f59e0b;
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 6px;
}
.bmt-search-btn-round {
    background: linear-gradient(135deg, #ef4444, #f43f5e);
}
.bmt-icon-cyan { color: #00d2ff; }
.bmt-icon-purple { color: #8b5cf6; }
.bmt-icon-amber { color: #f59e0b; }
.bmt-icon-green { color: #10b981; }
.bmt-promo-infobar {
    margin-top: 30px;
    border-radius: 24px;
    padding: 20px 30px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    width: 100%;
}
.bmt-promo-infobar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    text-align: left;
}
.bmt-promo-infobar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.bmt-promo-infobar-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-size: 18px;
}
.bmt-promo-infobar-text h5 {
    margin: 0 0 2px 0;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
}
.bmt-promo-infobar-text span {
    font-size: 12px;
    font-weight: 600;
}
.bmt-section-header-gap { margin-bottom: 50px; }
.bmt-section-padding { padding: 80px 0; }
.bmt-why-choose-section { padding: 100px 0; background: #fff; }
.bmt-experiences-section { padding: 100px 0; background: #f8fafc; }
.bmt-section-subtitle { color: #64748b; max-width: 600px; margin: 0 auto; }
.bmt-section-header-dark .bmt-badge-sm { background: rgba(0,210,255,0.15); color: #00d2ff; font-weight: 800; }
.bmt-section-header-dark .bmt-title-md { color: #fff; }
.bmt-3d-subtitle { color: #64748b; margin-top: 30px; font-size: 13px; }
.bmt-newsletter-section { background: #fff; }

@media (max-width: 768px) {
    .bmt-hero-title .bmt-brand-red,
    .bmt-hero-title .bmt-brand-blue {
        font-size: 42px;
    }
    .bmt-hero-desc {
        font-size: 15px;
    }
    .bmt-promo-infobar-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .bmt-hero-title .bmt-brand-red,
    .bmt-hero-title .bmt-brand-blue {
        font-size: 32px;
    }
}

.bmt-video-banner {
    background-size: cover;
    background-position: center;
}

/* Loading spinner animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.bmt-toast {
    font-family: 'Inter', sans-serif;
}

/* ==========================================================================
    REDSEA INTERACTIVE SEARCH BAR & DROPDOWS (OloTrip matching)
   ========================================================================== */
.bmt-search-box-wrapper {
    position: relative;
    z-index: 100;
}

.bmt-input-group {
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bmt-input-group.focused {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.bmt-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: none;
    z-index: 999;
    padding: 24px;
    opacity: 0;
    transform: translateY(10px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.bmt-dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* 1. WHERE Dropdown */
.bmt-dropdown-where {
    width: 380px;
}

.bmt-dropdown-header {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
    text-align: left;
}

.bmt-dest-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bmt-dest-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    border-radius: 18px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: left;
}

.bmt-dest-item:hover,
.bmt-dest-item.active {
    background: #f8fafc;
    border-color: #0f172a;
}

.bmt-dest-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.bmt-dest-info {
    display: flex;
    flex-direction: column;
}

.bmt-dest-info strong {
    font-size: 14px;
    color: #0f172a;
    font-weight: 700;
}

.bmt-dest-info span {
    font-size: 11px;
    color: #94a3b8;
}

/* 2. WHEN Dropdown */
.bmt-dropdown-when {
    width: 620px;
    padding: 30px;
}

.bmt-calendar-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.bmt-calendar-month {
    display: flex;
    flex-direction: column;
}

.bmt-calendar-month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 20px;
}

.bmt-calendar-month-header button {
    background: none;
    border: none;
    cursor: pointer;
    color: #475569;
    font-size: 14px;
}

.bmt-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 12px;
}

.bmt-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px 4px;
    text-align: center;
}

.bmt-calendar-days span {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.bmt-calendar-days span:hover {
    background: #f1f5f9;
}

.bmt-calendar-days span.muted {
    color: #cbd5e1;
    font-weight: 500;
}

.bmt-calendar-days span.selected {
    background: #ef4444 !important;
    color: #fff !important;
    font-weight: 800;
}

/* 3. WHO Dropdown */
.bmt-dropdown-who {
    width: 360px;
    padding: 20px 24px;
}

.bmt-guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.bmt-guest-row:last-child {
    border-bottom: none;
}

.bmt-guest-label {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.bmt-guest-label strong {
    font-size: 15px;
    color: #0f172a;
    font-weight: 800;
}

.bmt-guest-label span {
    font-size: 12px;
    color: #94a3b8;
}

.bmt-guest-counter {
    display: flex;
    align-items: center;
    gap: 16px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
}

.counter-btn:hover {
    border-color: #0f172a;
    background: #f8fafc;
}

.counter-value {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    min-width: 14px;
    text-align: center;
}

/* Responsive adjust for popups on small mobile views */
@media (max-width: 768px) {
    .bmt-dropdown {
        position: fixed !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        border-radius: 30px 30px 0 0 !important;
        padding: 30px 24px !important;
        box-shadow: 0 -10px 40px rgba(0,0,0,0.15) !important;
        transform: translateY(100%) !important;
    }
    
    .bmt-dropdown.active {
        transform: translateY(0) !important;
    }
    
    .bmt-calendar-wrapper {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-height: 320px;
        overflow-y: auto;
    }
}

/* Currency Switcher */
.bmt-currency-switcher {
    display: inline-block;
    margin: 0 15px;
}
.bmt-currency-select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
}

/* Payment Methods */
.bmt-payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin: 15px 0;
}
.bmt-payment-method {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s;
}
.bmt-payment-method:hover,
.bmt-payment-method.active {
    border-color: #27ae60;
}
.bmt-payment-method input[type="radio"] {
    display: none;
}
.bmt-payment-method label {
    cursor: pointer;
    display: block;
}
.bmt-payment-method .method-icon {
    font-size: 32px;
    margin-bottom: 5px;
}

/* Bank Transfer */
.bmt-bank-instructions {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #27ae60;
}

/* Deposit Info */
.bmt-deposit-info {
    background: #fff3cd;
    padding: 10px 15px;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 14px;
}

/* Auth Forms */
.bmt-auth-form { max-width: 400px; margin: 20px 0; }
.bmt-auth-form input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 15px; }
.bmt-auth-form button { width: 100%; padding: 14px; background: var(--primary); color: #fff; border: none; border-radius: 6px; font-size: 16px; cursor: pointer; }
.bmt-auth-form button:hover { opacity: .9; }
.bmt-auth-msg { margin-top: 10px; }
.bmt-error { color: #e74c3c; background: #fde8e8; padding: 10px; border-radius: 4px; }

/* Search */
.bmt-search-wrap { margin: 20px 0; }
.bmt-search-fields { display: flex; gap: 10px; flex-wrap: wrap; }
.bmt-search-fields input,.bmt-search-fields select { padding: 10px 15px; border: 1px solid #ddd; border-radius: 6px; font-size: 15px; }
.bmt-search-fields input[type=text] { flex: 1; min-width: 200px; }
.bmt-search-fields button { padding: 10px 25px; background: var(--primary); color: #fff; border: none; border-radius: 6px; cursor: pointer; }
.bmt-search-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin: 20px 0; }
.bmt-search-item { background: #fff; border: 1px solid #eee; border-radius: 10px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.bmt-search-item:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,.1); }
.bmt-search-item img { width: 100%; height: 180px; object-fit: cover; }
.bmt-search-item h3 { padding: 10px 15px 0; font-size: 16px; }
.bmt-search-item h3 a { color: #333; text-decoration: none; }
.bmt-search-item p { padding: 5px 15px; color: #666; font-size: 14px; }
.bmt-search-item .button { margin: 0 15px 15px; display: inline-block; }

/* Compare */
.bmt-compare-btn { padding: 8px 16px; background: var(--accent); color: #fff; border: none; border-radius: 6px; cursor: pointer; font-size: 14px; }
.bmt-compare-table { width: 100%; border-collapse: collapse; margin: 20px 0; overflow-x: auto; display: block; }
.bmt-compare-table th,.bmt-compare-table td { padding: 12px; border: 1px solid #e0e0e0; text-align: center; min-width: 150px; }
.bmt-compare-table th { background: var(--primary); color: #fff; font-weight: 600; }
.bmt-compare-table td { background: #fff; }
.bmt-compare-table img { width: 200px; height: 130px; object-fit: cover; border-radius: 6px; }
.bmt-remove-compare { padding: 6px 12px; background: #e74c3c; color: #fff; border: none; border-radius: 4px; cursor: pointer; font-size: 13px; }

/* Account Dashboard */
.bmt-account-dashboard { max-width: 900px; }
.bmt-account-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin: 20px 0; }
.bmt-account-card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 25px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.bmt-account-card h3 { margin: 0 0 10px; color: #333; }
.bmt-account-stat { font-size: 36px; font-weight: 700; color: var(--primary); margin: 10px 0; }
.bmt-account-card .button { margin-top: 15px; display: inline-block; padding: 8px 20px; background: var(--primary); color: #fff; border-radius: 6px; text-decoration: none; }

/* Bookings Table */
.bmt-bookings-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.bmt-bookings-table th { background: #f8f9fa; padding: 12px; text-align: left; border-bottom: 2px solid #dee2e6; font-weight: 600; }
.bmt-bookings-table td { padding: 12px; border-bottom: 1px solid #eee; }
.bmt-bookings-table .button-small { padding: 4px 10px; font-size: 12px; text-decoration: none; border-radius: 4px; margin-right: 5px; }
.bmt-status-confirmed { color: #27ae60; font-weight: 600; }
.bmt-status-pending { color: #f39c12; font-weight: 600; }
.bmt-status-completed { color: #2ecc71; font-weight: 600; }
.bmt-status-cancelled { color: #e74c3c; font-weight: 600; }
.bmt-pstatus-paid { color: #27ae60; }
.bmt-pstatus-unpaid { color: #e74c3c; }
.bmt-pstatus-partial { color: #f39c12; }
.bmt-cancel-btn { background: #fee; color: #e74c3c; border: 1px solid #e74c3c; }

/* Edit Profile */
.bmt-edit-profile { max-width: 500px; }
.bmt-edit-profile label { display: block; margin-bottom: 5px; font-weight: 600; color: #555; }
.bmt-edit-profile input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; margin-bottom: 15px; }
.bmt-success { color: #27ae60; background: #e8f8e8; padding: 10px; border-radius: 4px; }

/* Privacy & Terms */
.bmt-privacy-policy,.bmt-terms { max-width: 800px; }
.bmt-privacy-policy h1,.bmt-terms h1 { color: #2c3e50; border-bottom: 2px solid var(--primary); padding-bottom: 10px; }
.bmt-privacy-policy h2,.bmt-terms h2 { color: #34495e; margin-top: 30px; }
.bmt-privacy-policy p,.bmt-terms p { line-height: 1.8; color: #555; }

/* Cookie Consent */
.bmt-cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #2c3e50; color: #fff; padding: 15px 30px; display: flex; align-items: center; gap: 15px; z-index: 9999; flex-wrap: wrap; }
.bmt-cookie-bar p { margin: 0; flex: 1; }
.bmt-cookie-bar .button { padding: 8px 20px; border: none; border-radius: 4px; cursor: pointer; }
.bmt-cookie-bar .button-primary { background: var(--primary); color: #fff; }
.bmt-cookie-bar a { color: var(--primary); text-decoration: underline; }

/* RTL Support */
[dir="rtl"] .bmt-search-fields input[type=text] { margin-left: 0; margin-right: 0; }
[dir="rtl"] .bmt-bookings-table th,[dir="rtl"] .bmt-bookings-table td { text-align: right; }
[dir="rtl"] .bmt-compare-table th,[dir="rtl"] .bmt-compare-table td { text-align: center; }
[dir="rtl"] .bmt-bank-instructions { border-left: none; border-right: 4px solid #27ae60; }
[dir="rtl"] .bmt-auth-form input { text-align: right; }
[dir="rtl"] .bmt-cookie-bar { flex-direction: row-reverse; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .bmt-search-fields { flex-direction: column; }
    .bmt-search-fields input[type=text] { min-width: auto; }
    .bmt-account-grid { grid-template-columns: 1fr; }
    .bmt-compare-table { font-size: 13px; }
    .bmt-compare-table th,.bmt-compare-table td { min-width: 100px; padding: 8px; }
    .bmt-compare-table img { width: 120px; height: 80px; }
    .bmt-bookings-table { font-size: 13px; }
    .bmt-bookings-table th,.bmt-bookings-table td { padding: 8px; }
    .bmt-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .bmt-cookie-bar { flex-direction: column; text-align: center; padding: 12px; }
    .bmt-auth-form { max-width: 100%; }
    .bmt-edit-profile { max-width: 100%; }
    .bmt-search-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .bmt-stats-grid { grid-template-columns: 1fr; }
    .bmt-bookings-table { display: block; overflow-x: auto; }
}

/* ============================================================
   🎯 OLO Trip Inspired Design System
   ============================================================ */

/* ── Glass Header ── */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background .3s ease, box-shadow .3s ease;
}
.glass-header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.bmt-nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}
.bmt-nav-menu li a {
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all .2s ease;
}
.bmt-nav-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.bmt-header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4) !important;
}
.bmt-signin-btn:hover {
    opacity: 0.85;
}

/* ── Hero Section ── */
.bmt-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.bmt-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,.6) 0%, rgba(26,115,232,.4) 100%);
    z-index: 1;
}
.bmt-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.bmt-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bmt-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .3;
    pointer-events: none;
}
.bmt-glow-cyan {
    background: #06b6d4;
    top: 10%;
    right: 5%;
}
.bmt-glow-blue {
    background: #3b82f6;
    bottom: 15%;
    left: 5%;
}
.bmt-search-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.bmt-search-form select,
.bmt-search-form input,
.bmt-search-form button {
    border-radius: 10px;
    font-size: 14px;
}
.bmt-search-form select:focus,
.bmt-search-form input:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}
.bmt-search-form button:hover {
    background: #1557b0 !important;
    transform: translateY(-1px);
}

/* ── Hero Inner Elements ── */
.bmt-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}
.bmt-hero-content-wrap {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}
.bmt-hero-badge {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(255,255,255,.15);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}
.bmt-hero-badge i {
    margin-right: 6px;
}
[dir="rtl"] .bmt-hero-badge i {
    margin-right: 0;
    margin-left: 6px;
}
.bmt-hero-title {
    color: #fff;
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.15;
}
.bmt-hero-subtitle {
    color: rgba(255,255,255,.85);
    font-size: clamp(14px, 2vw, 18px);
    margin: 0;
    line-height: 1.6;
}

/* ── Hero Search Form Fields ── */
.bmt-search-form .search-flex-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.bmt-search-form .field-group {
    flex: 2;
    min-width: 180px;
}
.bmt-search-form .field-group-sm {
    flex: 1;
    min-width: 140px;
}
.bmt-search-form .field-group-btn {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
}
.bmt-search-form .field-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}
.bmt-search-form .field-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    background: #f8f9fa;
}
.bmt-search-form .search-btn {
    padding: 12px 28px;
    background: var(--primary-grad);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}
.bmt-search-form .search-btn:hover {
    background: linear-gradient(135deg, #00b8d4, #2d6bcb);
    transform: translateY(-1px);
}

/* ── Glass Search (general widget) ── */
.bmt-glass-search {
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,.4);
    border-radius: var(--rounded-md);
    padding: 8px;
    box-shadow: 0 30px 60px rgba(11,15,25,.15);
}
.bmt-glass-search .search-field {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
}
.bmt-glass-search .search-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 210, 255, .15);
}
.bmt-glass-search button {
    padding: 12px 20px;
    background: var(--primary-grad);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.bmt-glass-search button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 210, 255, .3);
}

/* ── Trip Cards ── */
.trip-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    transition: all .3s cubic-bezier(.4,0,.2,1);
    position: relative;
}
.trip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.1), 0 6px 12px rgba(0,0,0,.06);
}
.trip-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.trip-card:hover .trip-image img {
    transform: scale(1.08);
}
.trip-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #fff;
}
.trip-badge.safari { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.trip-badge.sea { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.trip-badge.other { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.trip-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 6px 16px;
    background: rgba(255,255,255,.95);
    border-radius: 20px;
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    backdrop-filter: blur(4px);
}
.trip-body {
    padding: 20px;
}
.trip-title {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px;
    line-height: 1.35;
}
.trip-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.trip-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.trip-meta span::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    opacity: .6;
}
.trip-meta span:nth-child(1)::before { content: '\f017'; } /* clock */
.trip-meta span:nth-child(2)::before { content: '\f3c5'; } /* map-marker */
.trip-rating {
    color: #f59e0b !important;
    font-weight: 700;
}
.trip-footer .button {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1a73e8, #0f3460);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all .2s ease;
}
.trip-footer .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, .3);
}
.bmt-trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* ── Destination Cards ── */
.bmt-dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.bmt-dest-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: all .3s ease;
}
.bmt-dest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
.bmt-dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.bmt-dest-card:hover img {
    transform: scale(1.08);
}
.bmt-dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
}
.bmt-dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
}
.bmt-dest-info h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 700;
}
.bmt-dest-info p {
    margin: 0;
    font-size: 13px;
    opacity: .85;
}
.bmt-dest-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: rgba(239, 68, 68, .9);
    color: #fff;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

/* ── Feature Blocks ── */
.bmt-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}
.bmt-feature-card {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    transition: all .3s ease;
}
.bmt-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.bmt-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}
.bmt-feature-card h4 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}
.bmt-feature-card p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* ── Activities Grid ── */
.bmt-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.bmt-activity-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    transition: all .3s ease;
}
.bmt-activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
.bmt-activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.bmt-activity-card:hover img {
    transform: scale(1.08);
}
.bmt-activity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
}
.bmt-activity-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

/* ── FAQ Accordion ── */
.bmt-faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.bmt-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    overflow: hidden;
}
.bmt-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #1e293b;
    transition: background .2s;
}
.bmt-faq-question:hover {
    background: #f8fafc;
}
.bmt-faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform .3s ease;
}
.bmt-faq-item.active .bmt-faq-question::after {
    transform: rotate(180deg);
}
.bmt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0 20px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}
.bmt-faq-item.active .bmt-faq-answer {
    max-height: 300px;
    padding: 0 20px 16px;
}

/* ── Section Headers ── */
.bmt-section-header {
    text-align: center;
    margin-bottom: 40px;
}
.bmt-section-tag {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.bmt-section-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px;
    line-height: 1.2;
}
.bmt-section-desc {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
}

/* ── Newsletter / CTA ── */
.bmt-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f3460, #1a73e8);
    text-align: center;
}
.bmt-cta-title {
    color: #fff;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin: 0 0 8px;
}
.bmt-cta-sub {
    color: rgba(255,255,255,.8);
    font-size: 16px;
    margin: 0 0 24px;
    line-height: 1.6;
}
.bmt-cta-form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
}
.bmt-cta-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
}
.bmt-cta-form button {
    padding: 14px 28px;
    background: #0f3460;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
}
.bmt-cta-form button:hover {
    background: #1a3a6e;
}

/* ── Footer ── */
.site-footer {
    background: #0f172a;
    color: rgba(255,255,255,.7);
    padding: 60px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: all .2s;
}
.footer-social-link:hover {
    background: #1a73e8;
    color: #fff;
    transform: translateY(-2px);
}
.footer-col h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 16px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}
.footer-contact-item i {
    width: 16px;
    text-align: center;
    opacity: .6;
}

.bmt-footer-link {
    color: inherit;
    text-decoration: none;
}

.whatsapp-icon {
    color: #25d366;
}

.bmt-mobile-whatsapp-icon {
    color: #25d366;
}

.bmt-mobile-book-icon {
    color: #fff;
    font-size: 20px;
    margin-bottom: 2px;
}

.bmt-mega-menu-icon {
    width: 18px;
    text-align: center;
    margin-right: 8px;
}

.review-comment-title {
    margin: 0 0 5px 0;
    font-size: 15px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.footer-bottom-links {
    display: flex;
    gap: 16px;
}
.footer-bottom-links a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s;
}
.footer-bottom-links a:hover {
    color: #fff;
}

/* ── Mobile Bottom Nav ── */
.bmt-mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    padding: 8px 0;
    z-index: 999;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.08);
}
.bmt-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    transition: color .2s;
    padding: 4px 12px;
}
.bmt-mobile-nav-item:hover {
    color: #fff;
}
.bmt-mobile-nav-icon {
    font-size: 18px;
}
.bmt-mobile-book-center-btn {
    position: relative;
    top: -16px;
}
.bmt-mobile-book-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(239, 68, 68, .4);
}
.bmt-mobile-book-text {
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ── Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.bmt-animate-in {
    animation: fadeInUp .6s ease forwards;
}
.bmt-animate-in-1 { animation-delay: .1s; }
.bmt-animate-in-2 { animation-delay: .2s; }
.bmt-animate-in-3 { animation-delay: .3s; }
.bmt-animate-in-4 { animation-delay: .4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .glass-header { padding: 0; }
    .header-container { padding: 10px 16px; }
    .bmt-nav-menu { display: none; }
    .bmt-header-actions { gap: 8px; }
    .bmt-pill-controls { display: none !important; }
    .bmt-mobile-bottom-nav { display: flex; }
    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    .bmt-trips-grid { grid-template-columns: 1fr; }
    .bmt-dest-grid { grid-template-columns: 1fr; }
    .bmt-activities-grid { grid-template-columns: 1fr 1fr; }
    .bmt-search-form-wrapper { padding: 16px; }
    .bmt-search-form > div { flex-direction: column; }
    .bmt-cta-form { flex-direction: column; }
}
@media (max-width: 480px) {
    .bmt-activities-grid { grid-template-columns: 1fr; }
    .bmt-dest-card { height: 200px; }
    .trip-image { height: 180px; }
}
/* ==========================================================================
   CARD VARIANTS — Wide / Square / Compact
   ========================================================================== */

/* Card Wide — horizontal layout, image left + content right */
.card-wide {
    display: flex;
    background: var(--bg-white);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}
.card-wide:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-8px);
}
.card-wide:hover img {
    transform: scale(1.05);
}
.card-wide .card-image {
    width: 40%;
    min-height: 260px;
    overflow: hidden;
}
.card-wide .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.card-wide:hover .card-image img {
    transform: scale(1.05);
}
.card-wide .card-body {
    width: 60%;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-wide .card-body .card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}
.card-wide .card-body .card-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.card-wide .card-body .card-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-alt);
    transition: var(--transition-fast);
}
.card-wide .card-body .card-action:hover {
    gap: 10px;
}

/* Card Square — trip cards, equal aspect */
.card-square {
    background: var(--bg-white);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.card-square:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}
.card-square .card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.card-square .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.card-square:hover .card-image img {
    transform: scale(1.08);
}
.card-square .card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
}
.card-square .card-badge.sea { background: #0ea5e9; }
.card-square .card-badge.safari { background: #f59e0b; }
.card-square .card-badge.culture { background: #10b981; }
.card-square .card-badge.other { background: var(--accent); }
.card-square .card-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 6px 16px;
    background: rgba(255,255,255,.95);
    border-radius: 20px;
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-slate);
    backdrop-filter: blur(4px);
}
.card-square .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-square .card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 12px;
    line-height: 1.35;
}
.card-square .card-title a {
    color: var(--text-main);
    text-decoration: none;
    transition: color .2s ease;
}
.card-square .card-title a:hover {
    color: var(--primary-alt);
}
.card-square .card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.card-square .card-meta span,
.card-square .card-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}
.card-square .card-meta span i,
.card-square .card-meta .meta-item i {
    color: var(--primary);
}
.card-square .card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.card-square .card-rating .stars {
    color: #f59e0b;
    font-size: 12px;
    display: flex;
    gap: 2px;
}
.card-square .card-rating .score {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
}
.card-square .card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed #e2e8f0;
}
.card-square .card-footer .view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #f1f5f9;
    color: var(--text-main);
    border-radius: var(--rounded-md);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}
.card-square .card-footer .view-btn:hover {
    background: var(--primary-grad);
    color: #fff;
}
.card-square .card-footer .view-btn i {
    font-size: 12px;
    transition: transform .3s ease;
}
.card-square .card-footer .view-btn:hover i {
    transform: translateX(4px);
}

/* Card Compact — destinations, small overlays */
.card-compact {
    position: relative;
    border-radius: var(--rounded-lg);
    overflow: hidden;
    height: 260px;
    cursor: pointer;
    transition: var(--transition-base);
}
.card-compact a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.card-compact:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}
.card-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.card-compact:hover img {
    transform: scale(1.08);
}
.card-compact .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
    pointer-events: none;
}
.card-compact .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
    pointer-events: none;
}
.card-compact .card-info h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 700;
}
.card-compact .card-info .card-region {
    margin: 0;
    font-size: 13px;
    opacity: .85;
    display: flex;
    align-items: center;
    gap: 6px;
}
.card-compact .card-info .card-region i {
    color: var(--primary);
}
.card-compact .card-badge-count {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    pointer-events: none;
}

/* ==========================================================================
   REUSABLE TRIP CARD V2 (PREMIUM DESIGN)
   ========================================================================== */
.bmt-trip-card-v2 {
    background: var(--bg-white);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}

.bmt-trip-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

.bmt-card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.bmt-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bmt-trip-card-v2:hover .bmt-card-image img {
    transform: scale(1.1);
}

.bmt-card-badge-floating {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: var(--rounded-full);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bmt-card-badge-floating.sea { background: #0ea5e9; }
.bmt-card-badge-floating.safari { background: #f59e0b; }
.bmt-card-badge-floating.culture { background: #10b981; }
.bmt-card-badge-floating.other { background: var(--accent); }

.bmt-card-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--bg-white);
    padding: 6px 16px;
    border-radius: var(--rounded-full);
    font-weight: 800;
    font-size: 15px;
    color: var(--text-main);
    box-shadow: var(--shadow-soft);
    z-index: 2;
}

.bmt-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bmt-card-title {
    font-size: 19px;
    font-weight: 800;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.bmt-card-title a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition-fast);
}

.bmt-card-title a:hover {
    color: var(--primary-alt);
}

.bmt-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.bmt-card-meta .meta-item {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.bmt-card-meta .meta-item i {
    color: var(--primary);
}

.bmt-card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bmt-card-rating .stars {
    color: #f59e0b;
    font-size: 12px;
    display: flex;
    gap: 2px;
}

.bmt-card-rating .score {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
}

.bmt-card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px dashed #e2e8f0;
}

.bmt-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f1f5f9;
    color: var(--text-main);
    padding: 12px;
    border-radius: var(--rounded-md);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-base);
}

.bmt-view-btn:hover {
    background: var(--primary-grad);
    color: #fff;
}

.bmt-view-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.bmt-view-btn:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   REUSABLE DESTINATION CARD V2
   ========================================================================== */
.bmt-dest-card-v2 {
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}

.bmt-dest-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
}

.bmt-dest-image {
    height: 320px;
    position: relative;
    overflow: hidden;
}

.bmt-dest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bmt-dest-card-v2:hover .bmt-dest-image img {
    transform: scale(1.1);
}

.bmt-dest-overlay-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
}

.bmt-dest-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 2;
}

.bmt-dest-title {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.bmt-dest-region {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bmt-dest-region i { color: var(--primary); }

.bmt-dest-badge-count {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 6px 14px;
    border-radius: var(--rounded-full);
    color: var(--text-main);
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
    border: 1px solid var(--glass-border);
}

/* ==========================================================================
   FRONT PAGE SECTION UTILITIES
   ========================================================================== */
.bmt-py-lg { padding-top: 100px; padding-bottom: 100px; }
.bmt-py-md { padding-top: 60px; padding-bottom: 60px; }
.bmt-py-sm { padding-top: 40px; padding-bottom: 60px; }
.bmt-py-trips { padding-top: 40px; padding-bottom: 100px; }
.bmt-bg-alt { background: #f8fafc; }

.bmt-section-tag-warning { background: #fef3c7; color: #92400e; }
.bmt-section-tag-info { background: #e0f2fe; color: #0369a1; }
.bmt-section-tag-primary { background: #e8f0fe; color: #1a73e8; }

.bmt-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.bmt-review-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    transition: all .3s ease;
}
.bmt-review-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.bmt-review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
}
.bmt-review-author {
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
}
.bmt-icon-display {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}
.bmt-empty-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 24px;
    background: #1a73e8;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
}
.bmt-empty-btn:hover {
    background: #1557b0;
    color: #fff;
}
.bmt-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}
.bmt-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}
.bmt-cta-container-sm {
    max-width: 600px;
    margin: 0 auto;
}
.bmt-newsletter-msg {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255,255,255,.9);
}
.bmt-dashboard-container {
    padding: 40px 0;
}

/* ===== Cart Badge & Add to Cart Button ===== */
.bmt-header-cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 18px;
    color: var(--bmt-text, #1e293b);
    transition: color 0.3s;
}
.bmt-header-cart-icon:hover { color: var(--bmt-primary, #E84E1B); }
.bmt-cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--bmt-primary, #E84E1B);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    border-radius: 9px;
    display: none;
}
.bmt-cart-count.has-items { display: block; }
.bmt-add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--bmt-primary, #E84E1B);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}
.bmt-add-to-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(232,78,27,0.3);
}
.bmt-add-to-cart-btn.loading { opacity: 0.7; cursor: wait; }
.card-footer { gap: 8px; }

/* ===== Additional Template Utilities ===== */
.bmt-page-section{padding:60px 20px;}
.bmt-flex-row{display:flex;gap:40px;flex-wrap:wrap;}
.bmt-flex-col{flex:1;min-width:280px;}
.bmt-page-header{text-align:center;margin-bottom:40px;}
.bmt-page-title{font-size:28px;margin:0 0 6px;}
.bmt-page-desc{color:#64748b;max-width:500px;margin:0 auto;}
.bmt-article-card{background:#fff;border-radius:12px;padding:24px;box-shadow:0 1px 3px rgba(0,0,0,.08);}
.bmt-article-title{font-size:20px;margin:0 0 6px;}
.bmt-article-title a{color:#1e293b;text-decoration:none;}
.bmt-article-date{font-size:12px;color:#94a3b8;margin-bottom:10px;}
.bmt-article-excerpt{font-size:14px;color:#475569;line-height:1.7;}
.bmt-article-read-more{display:inline-block;margin-top:12px;color:#1a73e8;font-weight:600;font-size:13px;text-decoration:none;}
.bmt-pagination-wrapper{margin-top:40px;text-align:center;}
.bmt-avatar-round{width:80px;height:80px;border-radius:50%;overflow:hidden;margin:0 auto 16px;border:3px solid #e2e8f0;}
.bmt-article-grid{display:grid;gap:20px;}
.bmt-thumb-link{display:block;margin-bottom:14px;}
.bmt-archive-desc{color:#64748b;}
.bmt-tag-badge{display:inline-block;padding:4px 14px;background:#fef3c7;color:#92400e;border-radius:20px;font-size:12px;font-weight:700;margin-bottom:8px;}
.bmt-tag-desc{color:#64748b;}
.bmt-attachment-article{max-width:800px;margin:0 auto;}
.bmt-attachment-header{text-align:center;margin-bottom:30px;}
.bmt-attachment-meta{color:#94a3b8;font-size:13px;}
.bmt-attachment-parent-link{color:#1a73e8;}
.bmt-attachment-content-center{text-align:center;}
.bmt-attachment-download-box{padding:40px;background:#f8f9fa;border-radius:12px;}
.bmt-attachment-download-link{color:#1a73e8;font-weight:600;}
.bmt-attachment-body-text{margin-top:30px;text-align:left;color:#475569;line-height:1.7;}
.bmt-search-desc{color:#64748b;margin-top:8px;}
.bmt-search-form-wrap{max-width:400px;margin:20px auto 0;}
.bmt-search-results-grid{display:grid;gap:20px;}
.bmt-search-card{background:#fff;border-radius:12px;padding:24px;box-shadow:0 1px 3px rgba(0,0,0,.08);transition:box-shadow .2s;}
.bmt-search-title{font-size:18px;margin:0 0 6px;}
.bmt-search-title a{color:#1e293b;text-decoration:none;}
.bmt-search-excerpt{font-size:14px;color:#475569;line-height:1.6;}
.bmt-meta-separator{margin-left:10px;}
.bmt-meta-separator-cap{margin-left:10px;text-transform:capitalize;}
.bmt-404-page{text-align:center;padding:100px 20px;}
.bmt-404-home-btn{display:inline-block;margin-top:20px;padding:12px 30px;background:var(--primary);color:#fff;border-radius:6px;text-decoration:none;}

/* ==========================================================================
   HERO WITH BACKGROUND IMAGE — Ken Burns + Category Pills
   ========================================================================== */
.bmt-hero-with-img {
    background-size: cover;
    background-position: center;
    animation: bmt-kenburns 18s ease-in-out infinite alternate;
}

@keyframes bmt-kenburns {
    0%   { background-size: 100% auto; background-position: center center; }
    100% { background-size: 110% auto; background-position: center 30%; }
}

/* Hero padding to clear fixed navbar */
.bmt-hero-inner {
    padding-top: 100px;
    padding-bottom: 80px;
}

/* Category Quick-Explore Pills */
.bmt-hero-cat-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.bmt-hero-cat-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.bmt-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.9);
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    transition: all .2s ease;
    backdrop-filter: blur(4px);
}

.bmt-cat-pill:hover {
    background: var(--primary-grad);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,210,255,.25);
}

.bmt-cat-pill i {
    font-size: 12px;
    opacity: .8;
}

.bmt-cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: rgba(0,0,0,0.07);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.bmt-cat-pill:hover .bmt-cat-count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* ==========================================================================
   INNER PAGE — pad content below fixed header
   ========================================================================== */
body:not(.home) .site-content,
body:not(.home) #primary {
    padding-top: 72px;
}

/* ==========================================================================
   SECTION HEADERS — unified styling for front page sections
   ========================================================================== */
.bmt-section-header-center {
    text-align: center;
    margin-bottom: 40px;
}
.bmt-section-header-center .bmt-badge-sm {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(0,210,255,0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.bmt-section-header-center .bmt-title-md {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--secondary);
    margin: 0 0 12px;
}
.bmt-highlight {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bmt-subtitle-desc {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
}
.bmt-section-header {
    margin-bottom: 32px;
}
.bmt-section-header .bmt-badge-sm {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0,210,255,0.08);
    color: var(--primary);
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.bmt-section-header .bmt-title-md {
    font-size: clamp(22px, 3vw, 32px);
    color: var(--secondary);
    margin: 0;
}

/* ── Padding utilities for front page sections ── */
.bmt-py-lg { padding-top: 80px; padding-bottom: 80px; }

/* Responsive */
@media (max-width: 768px) {
    .bmt-hero-cat-pills { gap: 8px; }
    .bmt-cat-pill { font-size: 12px; padding: 5px 12px; }
    .bmt-hero-inner { padding-top: 80px; padding-bottom: 60px; }
}


/* ==========================================================================
   ✨ PREMIUM VISUAL REDESIGN & FULL RESPONSIVENESS (YALLA TRIPE)
   ========================================================================== */

/* ── 1. Animated Hamburger Button Styles ── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    outline: none;
    box-shadow: none;
}
.menu-toggle .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-toggle.active .line-1 {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .line-2 {
    opacity: 0;
    transform: scale(0);
}
.menu-toggle.active .line-3 {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex !important;
    }
    .bmt-nav-menu,
    .main-navigation ul {
        display: none !important; /* Hide desktop nav and fallback navs */
    }
    .bmt-header-actions .bmt-signin-btn,
    .bmt-header-actions .bmt-header-cta-btn,
    .bmt-header-actions .bmt-pill-controls {
        display: none !important; /* Hide large desktop buttons from header bar */
    }
    .bmt-logo-icon {
        width: 28px !important;
        height: 28px !important;
    }
    .bmt-logo {
        font-size: 20px !important;
    }
}

/* ── 2. Glassmorphic Mobile Menu Drawer ── */
.bmt-mobile-menu-drawer {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.3);
    z-index: 999;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.bmt-mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bmt-mobile-nav-menu li {
    width: 100%;
}

.bmt-mobile-nav-menu li a {
    display: block;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.bmt-mobile-nav-menu li a:hover {
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    border-color: rgba(0, 210, 255, 0.2);
    transform: translateX(5px);
}

[dir="rtl"] .bmt-mobile-nav-menu li a:hover {
    transform: translateX(-5px);
}

.drawer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drawer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.drawer-pills span {
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.drawer-pills span i {
    color: #00d2ff;
}

.drawer-buttons {
    display: flex;
    gap: 12px;
}

.drawer-signin-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.drawer-signin-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.drawer-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, #00d2ff 0%, #8b5cf6 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.25);
    transition: all 0.2s ease;
}

.drawer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 210, 255, 0.4);
}

@media (max-width: 480px) {
    .drawer-buttons {
        flex-direction: column;
    }
}

/* ── 3. Premium Search Bar in Hero ── */
.bmt-search-form-wrapper {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 28px !important;
    padding: 12px !important;
    max-width: 980px !important;
    margin: 0 auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25) !important;
}

.search-flex-row {
    display: flex;
    align-items: center;
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 6px 6px 6px 20px !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03) !important;
}

[dir="rtl"] .search-flex-row {
    padding: 6px 20px 6px 6px !important;
}

.search-flex-row .field-group,
.search-flex-row .field-group-sm {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 8px 4px;
}

.search-flex-row .field-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(0, 210, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-flex-row .field-icon {
    font-size: 16px;
    background: linear-gradient(135deg, #00d2ff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search-flex-row .field-inputs-wrap {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

[dir="rtl"] .search-flex-row .field-inputs-wrap {
    text-align: right;
}

.search-flex-row .field-label {
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.search-flex-row .field-input {
    border: none !important;
    outline: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--secondary) !important;
    padding: 0 !important;
    background: transparent !important;
    width: 100%;
    cursor: pointer;
    box-shadow: none !important;
}

.search-flex-row .field-divider {
    width: 1px;
    height: 44px;
    background: rgba(15, 23, 42, 0.08);
    margin: 0 16px;
    display: inline-block;
}

.search-flex-row .search-btn {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 28px !important;
    border-radius: 16px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.3) !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.search-flex-row .search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 210, 255, 0.45) !important;
    background: linear-gradient(135deg, #3a7bd5 0%, #8b5cf6 100%) !important;
}

@media (max-width: 991px) {
    .search-flex-row {
        flex-direction: column !important;
        padding: 16px !important;
        border-radius: 18px !important;
        gap: 14px;
    }
    .search-flex-row .field-group,
    .search-flex-row .field-group-sm {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding-bottom: 12px;
    }
    .search-flex-row .field-divider {
        display: none !important;
    }
    .search-flex-row .field-group-btn {
        width: 100%;
    }
    .search-flex-row .search-btn {
        width: 100%;
        justify-content: center;
        padding: 16px !important;
        border-radius: 14px !important;
    }
}

/* ── 4. Activities Visual Excellence ── */
.bmt-activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.bmt-activity-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 180px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.bmt-activity-card .bmt-activity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.3) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.bmt-activity-card .bmt-activity-label {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bmt-activity-card .bmt-icon-display {
    font-size: 28px;
    color: #00d2ff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bmt-activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
}

.bmt-activity-card:hover .bmt-activity-overlay {
    background: linear-gradient(to top, rgba(0, 210, 255, 0.6) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.bmt-activity-card:hover .bmt-activity-label {
    transform: scale(1.05);
}

.bmt-activity-card:hover .bmt-icon-display {
    transform: translateY(-4px) rotate(10deg);
    color: #fff;
}

@media (max-width: 991px) {
    .bmt-activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .bmt-activities-grid {
        grid-template-columns: 1fr;
    }
}

/* ── 5. Destination & Trip Card premium styling refinements ── */
.card-square {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid rgba(15, 23, 42, 0.05) !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.card-square:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
    border-color: rgba(0, 210, 255, 0.15) !important;
}

.card-square .card-image {
    border-radius: 20px 20px 0 0 !important;
    height: 200px !important;
}

.card-square .card-badge {
    border-radius: 30px !important;
    font-size: 10px !important;
    padding: 6px 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important;
}

.card-square .card-badge.safari {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%) !important;
}

.card-square .card-badge.sea {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%) !important;
}

.card-square .card-badge.desert {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
}

.card-square .card-price {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    color: #ef4444 !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    padding: 6px 16px !important;
}

.card-square .card-body {
    padding: 20px !important;
}

.card-square .card-title a {
    color: var(--secondary) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    transition: color 0.25s ease !important;
}

.card-square .card-title a:hover {
    color: #00d2ff !important;
}

.card-square .card-meta {
    display: flex;
    gap: 16px !important;
    margin-bottom: 16px !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding-bottom: 12px;
}

.card-square .card-meta span {
    font-size: 13px !important;
    color: var(--text-muted) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px !important;
}

.card-square .card-meta span i {
    color: #00d2ff !important;
}

.card-square .card-rating {
    margin-bottom: 16px !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-square .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: none !important;
    padding: 0 !important;
}

.card-square .card-footer .view-btn {
    background: rgba(0, 210, 255, 0.06) !important;
    color: #00d2ff !important;
    padding: 10px 20px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    transition: all 0.25s ease !important;
}

.card-square .card-footer .view-btn:hover {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%) !important;
    color: #fff !important;
    box-shadow: 0 6px 15px rgba(0, 210, 255, 0.2);
}

.card-square .bmt-add-to-cart-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    background: #f8fafc;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.card-square .bmt-add-to-cart-btn:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

/* Compact destinations styling */
.card-compact {
    border-radius: 24px !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
}

.card-compact img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.card-compact:hover img {
    transform: scale(1.08) !important;
}

.card-compact .card-badge-count {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(12px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    padding: 6px 14px !important;
    top: 16px !important;
    right: 16px !important;
}

.card-compact .card-info h3 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 22px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.card-compact .card-info .card-region {
    font-size: 13px !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}


