:root {
    --primary: #F69044;
    --primary-rgb: 246, 144, 68;
    --primary-dark: #d57a32;
    --primary-light: #fff4eb;
    --secondary: #00476d;
    --secondary-rgb: 37, 69, 86;
    --secondary-dark: #1a3240;
    --accent: #F9E51E;
    --accent-rgb: 249, 229, 30;
    --dark: #000000;
    --dark-rgb: 0, 0, 0;
    --gray-900: #1C1C1E;
    --gray-800: #2C2C2E;
    --gray-700: #3A3A3C;
    --gray-600: #48484A;
    --gray-500: #8E8E93;
    --gray-400: #AEAEB2;
    --gray-300: #C7C7CC;
    --gray-200: #E5E5EA;
    --gray-100: #F2F2F7;
    --white: #ffffff;
    --success: #34C759;
    --warning: #F9E51E;
    --danger: #FF3B30;
    --info: #254556;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 50rem;
    --safe-top: env(safe-area-inset-top);
    --safe-bottom: env(safe-area-inset-bottom);
    --header-h: 72px;
    --bs-primary: var(--primary);
    --bs-primary-rgb: var(--primary-rgb);
    --bs-secondary: var(--secondary);
    --bs-secondary-rgb: var(--secondary-rgb);
    --bs-body-bg: #F8FAFC;
    --bs-body-color: var(--dark);
    --bs-font-sans-serif: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    --bs-border-radius: var(--radius);
    --bs-primary-bg-subtle: #f6914433;
}
.form-check-input.desert-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    background-color: white !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: none !important;
}
.form-check-input.desert-checkbox:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
}
.form-check-input.desert-checkbox:focus {
    box-shadow: 0 0 0 0.25rem var(--bs-primary-bg-subtle);
    border-color: var(--primary);
}
.form-check-input.desert-checkbox:hover {
    border-color: var(--primary-dark);
}
.was-validated .form-check-input.desert-checkbox:valid,
.sticky-right-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
}
.sticky-badge {
    pointer-events: auto;
    display: flex;
    align-items: center;
    background: white;
    padding: 0;
    width: 70px;
    height: 70px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    text-decoration: none;
    border: 2px solid var(--primary);
    border-right: none;
    position: relative;
    right: -2px;
}
.sticky-badge:hover {
    width: 260px;
    right: 0;
    background: #fff;
    border-color: var(--primary-dark);
}
.sticky-badge-head {
    width: 70px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: white;
    z-index: 2;
    gap: 1px;
}
.sticky-badge-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    padding: 5px 0px 5px 0px;
}
.nav-review-circle {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: visible;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px rgba(246, 144, 68, 0.2);
    transition: all 0.3s ease;
}
.nav-review-circle:active {
    transform: scale(0.95);
}
.nav-review-circle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(90deg, #FF8C00, #FFD700, #FF4500, #FFD700, #FF8C00);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    will-change: background-position;
    animation: desertBorderFlow 8s linear infinite;
}
.nav-review-circle img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}
.nav-review-circle .review-popover {
    display: none !important;
}
.global-popover-overlay {
    position: fixed;
    z-index: 100000;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    padding: 20px;
    border: 1px solid var(--gray-200);
    text-align: center;
    width: 220px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
}
.global-popover-overlay.visible {
    opacity: 1;
    transform: translateY(0);
}
.global-popover-overlay::before {
    content: '';
    position: absolute;
    top: -6px;
    left: var(--arrow-left, 50%);
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid var(--gray-200);
    border-top: 1px solid var(--gray-200);
    pointer-events: none;
}
.global-popover-overlay .review-popover-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}
.global-popover-overlay .review-popover-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.global-popover-overlay .review-popover-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
}
.global-popover-overlay .review-popover-score {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
}
.global-popover-overlay .review-popover-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: #FFB33E;
    font-size: 16px;
    margin-bottom: 16px;
}
.global-popover-overlay .review-popover-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 6px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}
.global-popover-overlay .review-popover-btn:hover {
    background: var(--primary-dark);
    color: white;
}
.nav-review-circle.active .review-popover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.review-popover-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}
.review-popover-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.review-popover-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
}
.review-popover-score {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
}
.review-popover-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: #FFB33E;
    font-size: 16px;
    margin-bottom: 16px;
}
.review-popover-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 6px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}
.review-popover-btn:hover {
    background: var(--primary-dark);
    color: white;
}
.sticky-badge-head-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    background: #fff;
    padding: 1px 4px;
    border-radius: 4px;
}
.sticky-badge-head-score {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.sticky-badge-head-star {
    font-size: 11px;
    color: #FFB33E;
    display: flex;
}
.sticky-badge-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 12px;
    padding-right: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.2s ease;
    flex-grow: 1;
    border-left: 1px solid var(--gray-200);
    height: 60%;
}
.sticky-badge:hover .sticky-badge-body {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}
.sticky-badge-count {
    font-size: 13px;
    color: var(--dark);
    font-weight: 700;
}
.sticky-badge-sub {
    font-size: 10px;
    color: var(--gray-500);
    font-weight: 500;
}
.sticky-badge-tail {
    width: 45px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-dark);
    opacity: 0;
    transition: opacity 0.2s ease 0.15s;
}
.sticky-badge:hover .sticky-badge-tail {
    opacity: 1;
}
.footer-badge {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 4px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px;
    margin-top: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.footer-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.footer-badge-logo {
    width: 30px;
    height: auto;
    object-fit: contain;
    grid-row: span 2;
}
.footer-badge-header {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-badge-score {
    font-size: 16px;
    font-weight: 700;
    color: #00aa6c;
}
.footer-badge-stars {
    display: flex;
    gap: 2px;
    font-size: 7px;
    color: #FFB33E;
}
.footer-badge-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
}
@media (min-width: 992px) and (max-width: 1500px) {
    .footer-badge {
        padding: 12px 10px;
        column-gap: 10px;
    }
    .footer-badge-logo {
        width: 38px;
        height: 38px;
    }
    .footer-badge-header {
        flex-wrap: wrap;
        gap: 4px;
        line-height: 1;
    }
    .footer-badge-score {
        font-size: 15px;
    }
    .footer-badge-stars {
        font-size: 11px;
    }
    .footer-badge-count {
        font-size: 11px;
    }
}
.mobile-badges-container {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
}
.mobile-badge {
    flex: 1;
    min-width: 140px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 10px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.mobile-badge img {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
}
.mobile-badge-score {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
}
.mobile-badge-stars {
    color: #FFB33E;
    font-size: 10px;
    margin: 2px 0;
}
.mobile-badge-count {
    font-size: 10px;
    color: var(--gray-500);
}
.form-check-input.desert-checkbox.is-valid,
.was-validated .form-check-input.desert-checkbox:invalid,
.form-check-input.desert-checkbox.is-invalid {
    border-color: var(--primary) !important;
    background-image: none !important;
    background-color: white !important;
}
.was-validated .form-check-input.desert-checkbox:valid:checked,
.form-check-input.desert-checkbox.is-valid:checked {
    background-color: var(--primary) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
}
.was-validated .form-check-input.desert-checkbox:valid,
.form-check-input.desert-checkbox.is-valid {
    background-image: none !important;
}
.legal-agreement-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
}
.legal-agreement-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.4;
    padding-top: 2px;
}
.legal-agreement-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.legal-agreement-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: auto;
    overflow-x: hidden;
    width: 100%;
}
body {
    font-family: var(--bs-font-sans-serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--bs-body-color);
    background: var(--bs-body-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: var(--header-h);
    width: 100%;
}
@media (min-width: 992px) {
    ::-webkit-scrollbar {
        width: 12px;
    }
    ::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 6px;
    }
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
        border-radius: 6px;
        border: 2px solid #f1f1f1;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
    }
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark);
}
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}
@font-face {
    font-family: bootstrap-icons;
    font-display: swap;
    src: url("/assets/vendor/bootstrap-icons/1.11.3/font/fonts/bootstrap-icons.woff2?dd67030699838ea613ee6dbda90effa6") format("woff2"),
         url("/assets/vendor/bootstrap-icons/1.11.3/font/fonts/bootstrap-icons.woff?dd67030699838ea613ee6dbda90effa6") format("woff");
}
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.glass-dark {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary), #FFB074);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-soft-primary { background-color: var(--primary-light); }
.bg-soft-secondary { background-color: #E0F2FE; }
.bg-soft-success { background-color: #DCFCE7; }
.glass-nav {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.page-header-modern {
    padding: 50px 0 25px;
    background: linear-gradient(170deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-header-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bs-body-bg), transparent);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb-item a:hover {
    color: var(--primary);
}
.breadcrumb-item.active {
    color: var(--white);
}
.icon-box {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--primary-light);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.card-modern:hover .icon-box {
    background: var(--primary);
    color: var(--white);
    transform: rotate(10deg);
}
.stat-card {
    padding: 2rem;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}
.tour-card,
.review-card,
.card-modern {
    position: relative;
    z-index: 1;
}
.tour-card::before,
.review-card::before,
.card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(90deg, #FF8C00, #FFD700, #FF4500, #FFD700, #FF8C00);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    will-change: background-position;
    animation: desertBorderFlow 8s linear infinite;
    pointer-events: none;
    z-index: 2;
}
.reviews-marquee {
    overflow: hidden;
    user-select: none;
    display: flex;
    gap: 1rem;
}
.reviews-track {
    flex-shrink: 0;
    display: flex;
    gap: 1rem;
    min-width: 100%;
    animation: marquee 160s linear infinite;
}
.reviews-marquee.reverse .reviews-track {
    animation-direction: reverse;
}
.reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
}
.reviews-marquee a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% - 1rem)); }
}
.line-clamp-1 {
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-card {
    width: 280px;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}
.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--primary-light);
}
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #FFB074 100%);
    position: relative;
    z-index: 1;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: -1;
}
.btn-white {
    background: var(--white);
    color: var(--primary);
    border: none;
}
.btn-white:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.accordion-button {
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
}
.accordion-button::after {
    background-size: 1rem;
}
.badge.glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.shadow-primary {
    box-shadow: 0 10px 20px -5px rgba(var(--primary-rgb), 0.4);
}
.navbar-brand img {
    height: 44px;
    width: auto;
    transition: transform 0.3s ease;
}
.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--gray-700) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}
.hero-modern {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-modern::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(245, 143, 67, 0.15) 0%, transparent 70%);
    z-index: -1;
}
.card-modern {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: var(--white);
}
.card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-modern:hover .card-img-wrapper img {
    transform: scale(1.1);
}
.form-control-modern {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-size: 15px;
    transition: all 0.2s ease;
}
.form-control-modern:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(245, 143, 67, 0.1);
    outline: none;
}
.form-select-modern {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    padding-right: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    background-color: var(--white);
    font-size: 15px;
    transition: all 0.2s ease;
    background-position: right 1rem center;
}
.form-select-modern:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(245, 143, 67, 0.1);
    outline: none;
}
.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}
#tabBar .nav-link.active {
    color: var(--primary) !important;
}
#tabBar .nav-link i {
    transition: transform 0.2s ease;
}
#tabBar .nav-link:active i {
    transform: scale(0.85);
}
.footer-modern {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}
.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    margin-bottom: 0.75rem;
}
.footer-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}
.stats-item {
    position: relative;
}
@media (min-width: 992px) {
    .stats-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.1);
    }
}
@media (max-width: 991.98px) {
    .stats-item {
        margin-bottom: 1rem;
    }
    .stats-item:nth-child(3n+1)::after,
    .stats-item:nth-child(3n+2)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.1);
    }
    .stats-item:nth-child(-n+3) {
        border-bottom: 0;
        position: relative;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .stats-item:nth-child(-n+3)::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.1);
    }
    .stats-item:nth-child(n+4) {
        margin-bottom: 0;
    }
}
* {
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 991.98px) {
    body {
        padding-bottom: var(--safe-bottom);
    }
}
:root {
    --sidebar-width: 280px;
    --sidebar-bg: var(--secondary);
}
.admin-sidebar {
    width: var(--sidebar-width);
    background: var(--dark);
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 991.98px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    .admin-sidebar.show {
        transform: translateX(0);
    }
}
.sidebar-brand {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 1.3rem;
    color: var(--gray-400);
    text-decoration: none;
    margin: 4px 12px;
    border-radius: 12px;
    transition: all 0.2s ease;
    font-weight: 600;
}
.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}
.sidebar-link.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
}
.admin-main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}
@media (max-width: 991.98px) {
    .admin-main-content {
        margin-left: 0;
        padding-bottom: calc(70px + var(--safe-bottom));
    }
}
.top-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.stat-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.btn-action {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border: none;
    background: #f1f5f9;
    color: #64748b;
}
.btn-action:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}
.btn-action.btn-danger:hover {
    background: #ef4444;
}
.btn-action.btn-success:hover {
    background: #10b981;
}
.admin-table thead th {
    background: #f8fafc;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}
.admin-table tbody td {
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
    color: #1e293b;
}
.badge-pending { background: #fff7ed; color: #c2410c; }
.badge-confirmed { background: #f0fdf4; color: #15803d; }
.badge-completed { background: #f0f9ff; color: #0369a1; }
.badge-cancelled { background: #fef2f2; color: #b91c1c; }
.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 8px !important;
    padding: 0.5rem 1rem !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}
@keyframes borderShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.border-animated {
    position: relative;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(45deg, var(--primary), #FFB074, var(--primary)) border-box;
    border: 2px solid transparent;
    background-size: 200% 200%;
    animation: none;
}
.phone-field .iti {
    width: 100%;
    height: 100%;
}
.phone-field .iti__country-container {
    top: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    max-height: 100%;
    display: flex;
    align-items: center;
}
.phone-field .iti__selected-country {
    height: 100% !important;
    background-color: transparent !important;
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
}
.phone-field label {
    margin-left: 3%;
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.phone-field .form-control::placeholder {
    opacity: 1;
    color: var(--gray-400);
    margin-left: 3%;
}
.phone-field .form-control {
    padding-top: 0;
    padding-bottom: 1.3rem;
    margin-left: 3%;
}
.phone-field input.form-control {
    display: flex;
    align-items: center;
    line-height: normal;
    margin-left: 3%;
}
.iti {
    --iti-border-color: var(--gray-300);
    --iti-hover-color: var(--gray-100);
    --iti-text-color: var(--dark);
    --iti-bg-color: var(--white);
    --iti-dropdown-bg: var(--white);
    --iti-selected-country-bg: var(--gray-100);
    width: 100%;
    font-family: var(--bs-font-sans-serif);
}
.iti__country-list {
    z-index: 1060 !important;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: none;
    margin-top: 8px;
    overflow-x: hidden;
    white-space: normal;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
}
.iti__country-name {
    white-space: normal;
    margin-right: 6px;
    color: var(--dark);
}
.iti__divider {
    border-bottom-color: var(--gray-200);
}
#contactForm input:not([type="hidden"]),
#contactForm textarea,
#contactForm select,
#bookingForm input:not([type="hidden"]),
#bookingForm textarea,
#bookingForm select,
#whatsappForm input:not([type="hidden"]),
#whatsappForm textarea,
#whatsappForm select {
    border: 1px solid var(--primary) !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#contactForm input:not([type="hidden"]):focus:not(.field-valid):not(.field-invalid):not(.field-processing),
#contactForm textarea:focus:not(.field-valid):not(.field-invalid):not(.field-processing),
#contactForm select:focus:not(.field-valid):not(.field-invalid):not(.field-processing),
#bookingForm input:not([type="hidden"]):focus:not(.field-valid):not(.field-invalid):not(.field-processing),
#bookingForm textarea:focus:not(.field-valid):not(.field-invalid):not(.field-processing),
#bookingForm select:focus:not(.field-valid):not(.field-invalid):not(.field-processing),
#whatsappForm input:not([type="hidden"]):focus:not(.field-valid):not(.field-invalid):not(.field-processing),
#whatsappForm textarea:focus:not(.field-valid):not(.field-invalid):not(.field-processing),
#whatsappForm select:focus:not(.field-valid):not(.field-invalid):not(.field-processing) {
    box-shadow: 0 0 0 0.25rem rgba(246, 144, 68, 0.25) !important;
    border-color: var(--primary) !important;
}
#contactForm .field-valid,
#bookingForm .field-valid,
#whatsappForm .field-valid,
.iti input.valid-phone,
.iti__tel-input.valid-phone {
    border-color: var(--success) !important;
}
#contactForm .field-invalid,
#bookingForm .field-invalid,
#whatsappForm .field-invalid,
.iti input.invalid-phone,
.iti__tel-input.invalid-phone {
    border-color: var(--danger) !important;
}
#contactForm input.field-valid,
#contactForm textarea.field-valid,
#contactForm select.field-valid,
#bookingForm input.field-valid,
#bookingForm textarea.field-valid,
#bookingForm select.field-valid,
#whatsappForm input.field-valid,
#whatsappForm textarea.field-valid,
#whatsappForm select.field-valid,
.form-control.field-valid,
.email-verify-wrapper .form-control.field-valid {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='12' fill='%2334C759'/%3E%3Cpath d='M7 12.5l3 3 7-7' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 18px 18px !important;
    padding-right: 44px !important;
    border-color: var(--success) !important;
}
#contactForm input.field-invalid,
#contactForm textarea.field-invalid,
#contactForm select.field-invalid,
#bookingForm input.field-invalid,
#bookingForm textarea.field-invalid,
#bookingForm select.field-invalid,
#whatsappForm input.field-invalid,
#whatsappForm textarea.field-invalid,
#whatsappForm select.field-invalid {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23FF3B30'/%3E%3Cpath d='M8 8l8 8M16 8l-8 8' stroke='white' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px 18px;
    padding-right: 44px;
}
#contactForm select.field-valid,
#bookingForm select.field-valid,
#whatsappForm select.field-valid {
    background-image: var(--bs-form-select-bg-img), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='12' fill='%2334C759'/%3E%3Cpath d='M7 12.5l3 3 7-7' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 0.75rem center, right 2.5rem center;
    background-size: 16px 12px, 18px 18px;
    padding-right: 56px;
}
#contactForm select.field-invalid,
#bookingForm select.field-invalid,
#whatsappForm select.field-invalid {
    background-image: var(--bs-form-select-bg-img), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23FF3B30'/%3E%3Cpath d='M8 8l8 8M16 8l-8 8' stroke='white' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-position: right 0.75rem center, right 2.5rem center;
    background-size: 16px 12px, 18px 18px;
    padding-right: 56px;
}
#contactForm .field-processing,
#bookingForm .field-processing,
#whatsappForm .field-processing {
    border-color: var(--primary) !important;
    animation: fieldPulse 1.2s ease-in-out infinite;
    background-image: none !important;
}
.email-verify-wrapper.email-processing .email-verify-loader {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--primary);
    z-index: 6;
}
.email-verify-loader {
    display: none;
}
.email-verify-loader i {
    font-size: 18px;
    line-height: 1;
}
@keyframes fieldPulse {
    0% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.25); }
    50% { box-shadow: 0 0 0 6px rgba(var(--primary-rgb), 0.35); }
    100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.25); }
}
.form-floating label {
    z-index: 3 !important;
}
#bookingForm #bookingAdults {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    background-image: none !important;
    padding: 0 !important;
}
#bookingForm #bookingLocation {
    border: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
}
.booking-field-container {
    border: 1px solid var(--primary) !important;
    transition: all 0.3s ease;
}
.booking-field-container:focus-within {
    box-shadow: 0 0 0 0.25rem rgba(246, 144, 68, 0.25) !important;
    border-color: var(--primary) !important;
}
.booking-field-container:has(.field-valid) {
    border-color: var(--success) !important;
}
.booking-field-container:has(.field-invalid) {
    border-color: var(--danger) !important;
}
.btn-desert-animated {
    position: relative;
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 600;
    z-index: 1;
    overflow: visible;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px -10px rgba(246, 144, 68, 0.5);
}
.btn-desert-animated i,
.btn-desert-animated span {
    position: relative;
    z-index: 2;
}
.btn-desert-animated i {
    color: var(--primary);
    transition: color 0.3s ease;
}
.btn-desert-animated:hover i {
    color: var(--white);
}
.btn-desert-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50rem;
    padding: 2px;
    background: linear-gradient(90deg, #FF8C00, #FFD700, #FF4500, #FFD700, #FF8C00);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    will-change: background-position;
    animation: desertBorderFlow 8s linear infinite;
    filter: drop-shadow(0 0 2px rgba(255, 140, 0, 0.5));
}
.btn-desert-animated:hover {
    color: var(--white);
    background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(255, 69, 0, 0.6);
}
.btn-desert-animated:hover::before {
    opacity: 0;
}
@keyframes desertBorderFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.btn-desert-animated-dark {
    position: relative;
    background: var(--dark);
    color: #FFB074;
    font-weight: 600;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.5);
}
.btn-desert-animated-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50rem;
    padding: 2px;
    background: linear-gradient(90deg, #FF8C00, #FFD700, #FF4500, #FFD700, #FF8C00);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    will-change: background-position;
    animation: desertBorderFlow 8s linear infinite;
    filter: drop-shadow(0 0 2px rgba(255, 140, 0, 0.5));
}
.btn-desert-animated-dark:hover {
    color: #FFB074;
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(255, 140, 0, 0.3);
}
.btn-desert-animated-dark:hover::before {
    opacity: 0;
}
.btn-circle-desert {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: #FFB074;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.btn-circle-desert::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(90deg, #FF8C00, #FFD700, #FF4500, #FFD700, #FF8C00);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    will-change: background-position;
    animation: desertBorderFlow 8s linear infinite;
}
.btn-circle-desert:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
    color: #fff;
}
.btn-circle-desert i {
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}
.btn-circle-desert:hover i {
    animation: arrowPulse 1s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-circle-desert-light {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    overflow: visible;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(246, 144, 68, 0.2);
}
.btn-circle-desert-light::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(90deg, #FF8C00, #FFD700, #FF4500, #FFD700, #FF8C00);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    will-change: background-position;
    animation: desertBorderFlow 8s linear infinite;
}
.btn-circle-desert-light:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(246, 144, 68, 0.4);
    color: var(--primary-dark);
}
.btn-circle-desert-light:hover::before {
    opacity: 0;
}
.btn-circle-desert-light i {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}
.btn-circle-desert-light:hover i {
    animation: arrowPulse 1s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes arrowPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}
.btn-whatsapp-animated {
    position: relative;
    background: #fff;
    color: #25D366;
    font-weight: 600;
    z-index: 1;
    overflow: visible;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px -10px rgba(37, 211, 102, 0.5);
}
.btn-whatsapp-animated i,
@media (min-width: 992px) {
    .sidebar-sticky {
        position: sticky;
        top: 100px;
    }
}
@media (max-width: 991.98px) {
    .sidebar-sticky {
        position: static;
        top: auto;
    }
}

.tour-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: thin;
}
.tour-tabs::-webkit-scrollbar {
    height: 6px;
}
.tour-tabs::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 10px;
}
.tour-tabs .nav-link {
    color: var(--primary);
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-weight: 800;
    letter-spacing: .2px;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}
.tour-tabs .nav-link:hover {
    background: rgba(var(--primary-rgb), .06);
}
.tour-tabs .nav-link.active {
    color: #000000 !important;
    background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
    border-color: transparent;
    box-shadow: 0 8px 16px -8px rgba(255, 69, 0, 0.5);
}
.btn-whatsapp-animated i,
.btn-whatsapp-animated span {
    position: relative;
    z-index: 2;
}
.btn-whatsapp-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50rem;
    padding: 2px;
    background: linear-gradient(90deg, #25D366, #128C7E, #25D366, #128C7E, #25D366);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    will-change: background-position;
    animation: desertBorderFlow 4s linear infinite;
    filter: drop-shadow(0 0 2px rgba(37, 211, 102, 0.5));
}
.btn-whatsapp-animated:hover {
    color: #fff;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(37, 211, 102, 0.6);
}
.btn-whatsapp-animated:hover::before {
    opacity: 0;
}
.btn-desert-animated:disabled,
.btn-whatsapp-animated:disabled,
.btn-desert-animated-dark:disabled {
    opacity: 0.65;
    pointer-events: none;
    box-shadow: none;
    filter: grayscale(100%);
}
.btn-desert-animated:disabled::before,
.btn-whatsapp-animated:disabled::before,
.btn-desert-animated-dark:disabled::before {
    animation: none;
    opacity: 0.5;
}
.btn-circle-whatsapp {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #25D366;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    overflow: visible;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}
.btn-circle-whatsapp i {
    position: relative;
    z-index: 2;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}
.btn-circle-whatsapp::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(90deg, #25D366, #128C7E, #25D366, #128C7E, #25D366);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    will-change: background-position;
    animation: desertBorderFlow 8s linear infinite;
}
.btn-circle-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    background: #25D366;
    color: #fff;
}
.btn-circle-whatsapp:hover::before {
    opacity: 0;
}
.btn-circle-whatsapp i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}
.btn-circle-whatsapp:hover i {
    animation: whatsappPulse 1.5s infinite;
}
@keyframes whatsappPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.booking-scroll-area {
    scroll-behavior: smooth;
    overflow-y: auto;
    scrollbar-gutter: stable;
}
.booking-scroll-area::-webkit-scrollbar {
    width: 8px;
}
.booking-scroll-area::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.2);
    border-radius: 8px;
}
.booking-scroll-area::-webkit-scrollbar-track {
    background: transparent;
}
.payment-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.payment-option {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.payment-option:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.payment-option.selected {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 6px 16px rgba(var(--primary-rgb), 0.2);
}
.payment-option-title {
    font-weight: 600;
    color: var(--dark);
}
.payment-option-sub {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}
.payment-summary {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.date-nav .btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.tour-pills-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    margin: 0 -5px;
    padding: 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.tour-pills-wrapper::-webkit-scrollbar {
    display: none;
}
.tour-pill {
    white-space: nowrap;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 50rem;
    color: var(--gray-600);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.tour-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.tour-pill.selected {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}
.tour-pill i {
    font-size: 1.1em;
}
#tierCards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}
@media (max-width: 991.98px) {
    #tierCards {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        margin: 0 -10px;
        padding: 10px;
        gap: 15px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    #tierCards::-webkit-scrollbar {
        display: none;
    }
    .tier-card {
        min-width: 75%;
        scroll-snap-align: center;
        height: auto;
        min-height: 100%;
    }
    .tier-card.selected {
        transform: scale(1.02);
        box-shadow: 0 10px 25px -5px rgba(var(--primary-rgb), 0.25);
    }
}
@media (max-width: 576px) {
}
.tier-card {
    position: relative;
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    overflow: hidden;
}
.tier-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.tier-card.selected {
    border-color: var(--primary);
    background-color: var(--primary-light);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}
.tier-card-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}
.tier-card.selected .tier-card-check {
    opacity: 1;
    transform: scale(1);
}
.tier-popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-bottom-right-radius: 10px;
    text-transform: uppercase;
}
.tier-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 12px;
}
.tier-card-info {
    margin-top: 6px;
}
.tier-card-info h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--dark);
}
.tier-card-info p {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 8px;
    line-height: 1.4;
}
.tier-card-price {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.tier-card-price .current {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.tier-card-price .old {
    font-size: 12px;
    text-decoration: line-through;
    color: var(--gray-500);
}
.tier-placeholder {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray-500);
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 2px dashed var(--gray-200);
}
.date-cards-wrapper {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding-top: 2px;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.date-cards-wrapper::-webkit-scrollbar {
    display: none;
}
.date-card {
    min-width: 56px;
    height: 63px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.date-card:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
}
.date-card.selected {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.date-card .day {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}
.date-card .date {
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    margin: 2px 0;
}
.date-card .month {
    font-size: 7px;
    font-weight: 600;
    opacity: 0.8;
}
.date-cards-wrapper {
    padding-right: 6px;
}
.date-nav .btn {
    border-color: var(--gray-200);
}
.date-nav .btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.booking-scroll-area {
    padding-bottom: 20px;
}
.booking-scroll-area {
    scroll-behavior: smooth;
    overflow-y: auto;
    scrollbar-gutter: stable;
    max-height: calc(100vh - 220px);
}
.booking-modal .modal-content,
#bookingModal .modal-content {
    max-height: calc(100vh - 60px);
}
.booking-modal .modal-body,
#bookingModal .modal-body {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 140px);
}
.booking-modal .booking-scroll-area,
#bookingModal .booking-scroll-area {
    flex: 1 1 auto;
}
#bookingModal .form-control,
#bookingModal .form-select {
    background: #fff;
    border: 0;
    box-shadow: var(--shadow-sm);
    height: 60px;
}
#bookingModal .form-select {
    padding-right: 2.5rem;
}
#bookingModal .input-group {
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    background: #fff;
}
#bookingModal .input-group-text,
#bookingModal .input-group .btn {
    background: #fff;
    border: 0;
}
#bookingModal .input-group .form-control {
    box-shadow: none;
    height: 60px;
}
.modal-footer .row .col-12.col-sm-6 {
    display: flex;
    align-items: center;
}
.modal-footer #bookingTotal {
    font-size: 1.6rem;
}
.modal-footer #bookingPayNow {
    font-size: 1.1rem;
}
.payment-options {
    grid-template-columns: repeat(3, 1fr);
}
.payment-option {
    padding: 12px;
}
.payment-option-title {
    font-size: 13px;
}
.payment-option-sub {
    font-size: 11px;
}
.phone-field label {
    transform: translateY(-0.75rem) scale(0.85);
    opacity: 0.9;
}
.phone-field .form-control {
    padding-top: 1.25rem;
    height: 60px;
}
.booking-scroll-area .input-group,
.booking-scroll-area .input-group .form-control,
.booking-scroll-area .input-group .input-group-text,
.booking-scroll-area .input-group .btn {
    height: 60px;
}
.booking-guest-pickup-row .input-group {
    height: 60px;
    align-items: stretch;
}
.booking-guest-pickup-row .input-group .form-control {
    height: 60px;
    line-height: 60px;
    padding-top: 0;
    padding-bottom: 0;
}
.booking-guest-pickup-row .input-group-text,
.booking-guest-pickup-row .btn {
    height: 60px;
    display: flex;
    align-items: center;
}
.booking-guest-pickup-row .input-group-text {
    padding-top: 0;
    padding-bottom: 0;
}
.booking-guest-pickup-row .btn {
    padding-top: 0;
    padding-bottom: 0;
}
.booking-guest-pickup-row .input-group .form-control::placeholder {
    line-height: 1.2;
}
.booking-total-label {
    font-size: 12px;
    letter-spacing: 0.6px;
}
.booking-total-value {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.booking-total-value .currency {
    font-weight: 800;
}
@media (max-width: 576px) {
    .booking-total-label {
        font-size: 11px;
    }
    .booking-total-value {
        font-size: 1.2rem;
    }
}
.phone-field label,
.phone-field .form-control::placeholder,
.phone-field .form-control,
.phone-field input.form-control{
    margin-left: 0 !important;
}
.phone-field.form-floating > label{
    left: 0.75rem;
    transform: translateY(-0.75rem) scale(0.85);
    opacity: 0.9;
}
.phone-field .iti{
    display: block;
}
.phone-field .iti .iti__tel-input,
.phone-field .form-control{
    height: 60px !important;
    padding-top: 1.25rem !important;
}
.phone-field .iti--separate-dial-code .iti__selected-country{
    padding: 0 12px;
}
.phone-field .iti--separate-dial-code .iti__selected-dial-code{
    min-width: 52px;
}
.phone-field .iti--separate-dial-code input{
    padding-left: 88px !important;
}
.tier-popular-badge {
    top: 6px;
    left: 6px;
}
.tier-card-info {
    padding-top: 6px;
}
@media (max-width: 576px) {
    .modal-footer #bookingTotal {
        font-size: 1.3rem;
    }
    .modal-footer #bookingPayNow {
        font-size: 1rem;
    }
    .date-nav {
        gap: 4px;
    }
}
.addon-horizontal-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 5px;
    margin: 0 -5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.addon-horizontal-wrapper::-webkit-scrollbar {
    display: none;
}
.addon-card-horizontal {
    min-width: 220px;
    max-width: 220px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.addon-card-horizontal:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.addon-card-horizontal.selected {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 1px var(--primary);
}
.addon-card-horizontal input {
    display: none;
}
.addon-check-abs {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.2s ease;
    z-index: 2;
}
.addon-card-horizontal.selected .addon-check-abs {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.addon-h-info h5 {
    font-size: 15px;
    margin: 0 0 4px 0;
    font-weight: 700;
    padding-right: 25px;
}
.addon-h-info p {
    font-size: 11px;
    margin: 0 0 10px 0;
    color: var(--gray-500);
    line-height: 1.4;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.addon-h-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 15px;
    margin-top: auto;
}
.email-verify-wrapper {
    position: relative !important;
}
.email-verify-btn {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 5 !important;
    padding: 0.25rem 0.75rem !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    border-radius: 50rem !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    height: auto !important;
    min-height: unset !important;
}
.email-verify-wrapper .form-control {
    padding-right: 40px;
}
.shake-field {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}
.otp-field-wrapper {
    margin-top: 10px;
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.submit-tooltip-wrapper {
    cursor: not-allowed;
}
@media (max-width: 991.98px) {
    #mainOffcanvas.offcanvas {
        height: 100% !important;
        min-height: 100vh !important;
        background-color: #ffffff !important;
    }
    .offcanvas-backdrop {
        background-color: rgba(0, 0, 0, 0.5) !important;
        opacity: 1 !important;
    }
    #mainOffcanvas .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: transparent !important;
        border: none;
        box-shadow: none !important;
        padding: 0;
        transition: none;
        transform: none !important;
        border-radius: 0 !important;
    }
    #mainOffcanvas .dropdown-item {
        white-space: normal;
        padding-left: 1.5rem;
        padding-right: 1rem;
        color: var(--gray-700);
        font-size: 0.95rem;
    }
    #mainOffcanvas .dropdown-item:active,
    #mainOffcanvas .dropdown-item:focus,
    #mainOffcanvas .dropdown-item:hover {
        background-color: transparent;
        color: var(--primary);
    }
    #mainOffcanvas .dropdown-menu.show {
        display: block;
    }
}
.animated-divider-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.animated-divider-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}
.animated-divider-item:hover::after,
.animated-divider-item:focus::after {
    width: 100%;
}
.animated-divider-item:last-child {
    border-bottom: none;
}
:root {
    --sidebar-collapsed-width: 80px;
}
.admin-main-content {
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-modern .card-header {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}
@media (min-width: 992px) {
    .admin-sidebar {
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .admin-sidebar.collapsed {
        width: var(--sidebar-collapsed-width);
    }
    .admin-sidebar.collapsed .sidebar-brand .brand-text {
        display: none;
    }
    .admin-sidebar.collapsed .sidebar-brand {
        justify-content: center !important;
        padding: 1.5rem 0;
    }
    .admin-sidebar.collapsed .sidebar-link span {
        display: none;
    }
    .admin-sidebar.collapsed .sidebar-link {
        justify-content: center;
        padding: 12px 0;
        margin: 4px 10px;
    }
    .admin-sidebar.collapsed .sidebar-link i {
        font-size: 1.5rem;
        margin: 0;
    }
    .admin-sidebar.collapsed .sidebar-header {
        display: none;
    }
    .admin-main-content.collapsed {
        margin-left: var(--sidebar-collapsed-width);
    }
    .admin-sidebar.collapsed .sidebar-link:hover {
        position: relative;
        background: var(--primary);
        color: white;
    }
}
.sidebar-scroll {
    overflow-y: auto;
    height: calc(100vh - 100px);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.sidebar-scroll::-webkit-scrollbar {
    width: 4px;
}
.sidebar-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
}
.row-scrollable-mobile {
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 991.98px) {
    .row-scrollable-mobile {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        margin-right: -1rem;
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .row-scrollable-mobile::-webkit-scrollbar {
        display: none;
    }
    .row-scrollable-mobile > [class*="col-"] {
        flex: 0 0 85%;
        max-width: 85%;
    }
}
.admin-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
}
.dataTables_wrapper {
    padding: 0px 15px 0px 15px;
}
.booking-location-wrapper .pac-container {
    z-index: 1060 !important;
    border-radius: 16px;
    border: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: 5px;
    overflow: hidden;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    display: block !important;
}
.pac-force-hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    overflow: hidden !important;
}
.pac-container::after {
    display: none !important;
    background-image: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}
.pac-item {
    padding: 12px 16px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.4;
    color: #333;
}
.pac-item:first-child {
    border-top: 0;
}
.pac-item:hover, .pac-item-selected {
    background-color: #fff9f5;
}
.pac-item-query {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}
.pac-icon {
    margin-top: 2px;
}
.pac-matched {
    color: #F69044;
}
.trust-divider {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    display: inline-block;
}
