/* Layout custom styles - moved from _Layout.cshtml */
body {
    font-family: "Kedebideri", sans-serif !important;
}

h2, h1, h3, h4, h5, h6, a, p, li, span {
    font-family: "Kedebideri", sans-serif !important;
    letter-spacing: 0px !important;
}

.newsletter-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.newsletter-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Currency Toast Notification */
.currency-toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: #029b9b;
    color: white;
    padding: 18px 28px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(2, 155, 155, 0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid #01d4d4;
}

.currency-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.currency-toast-icon {
    font-size: 24px;
    animation: pulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.currency-toast strong {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-underline-offset: 3px;
}

/* Hide Google Translate UI */
#google_translate_element, .skiptranslate, .goog-te-banner-frame {
    display: none !important;
}
body {
    top: 0 !important;
}
.goog-tooltip, .goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

@media (max-width: 991px) {
    .main-header__right {
        display: flex !important;
        align-items: center;
        gap: 20px;
    }
    .main-header__call {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .main-header__call {
        display: flex !important;
    }
}

/* Mobile Currency Selector Styling */
.mobile-nav__currency {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.mobile-nav__currency .bootstrap-select {
    width: 100% !important;
}

.mobile-nav__currency .bootstrap-select .dropdown-toggle {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    height: 54px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    padding: 0 20px !important;
}

.mobile-nav__currency .bootstrap-select .dropdown-toggle:after {
    color: var(--gotur-primary) !important;
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 2px 5px 10px #777;
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Tour cards */
.listing-card-four__meta.list-unstyled {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.listing-card-four__meta.list-unstyled li {
    flex-shrink: 0;
}

/* Language popup & flag icons */
.language-option:hover, .language-option:focus {
    background: rgba(2, 155, 155, 0.12);
}
.language-option .flag-icon, .current-lang-label .flag-icon {
    width: 1.33em;
    height: 1em;
}
.cursor-pointer {
    cursor: pointer;
}

/* Tours mega menu */
.main-menu__list .mega-menu {
    position: relative;
}
.main-menu__list .mega-menu .mega-menu__content {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 900px;
    max-width: 1200px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 999;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}
.main-menu__list .mega-menu:hover .mega-menu__content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-menu__inner {
    display: flex;
    min-height: 320px;
}
.mega-menu__grid-col--left {
    flex: 0 0 320px;
    padding: 24px;
    border-right: 1px solid rgba(0,0,0,0.06);
}
.mega-menu__list-col {
    flex: 1;
    padding: 0;
    overflow: hidden;
    max-height: 400px;
    min-width: 0;
}
.mega-menu__slide-wrap {
    display: flex;
    width: 200%;
    transition: transform 0.3s ease;
    min-height: 360px;
}
.mega-menu__list-col.mega-menu__list-col--subs-open .mega-menu__slide-wrap {
    transform: translateX(-50%);
}
.mega-menu__panel {
    flex: 0 0 50%;
    width: 50%;
    padding: 24px 24px 24px 20px;
    overflow-y: auto;
    box-sizing: border-box;
}
.mega-menu__panel--parents {
    border-right: none;
}
.mega-menu__section-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #999;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mega-menu__parent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-menu__parent-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    margin-bottom: 4px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: border-color 0.2s, background 0.2s;
}
.mega-menu__parent-row:hover {
    border-color: rgba(2, 155, 155, 0.2);
    background: rgba(2, 155, 155, 0.04);
}
.mega-menu__parent-link {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    text-align: left;
    transition: color 0.15s;
}
.mega-menu__parent-link:hover {
    color: var(--gotur-primary, #029b9b);
}
.mega-menu__parent-open-subs {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(2, 155, 155, 0.12);
    border-radius: 8px;
    color: var(--gotur-primary, #029b9b);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: background 0.2s;
}
.mega-menu__parent-open-subs:hover {
    background: rgba(2, 155, 155, 0.25);
}
.mega-menu__panel--subs {
    position: relative;
    padding-top: 20px;
}
.mega-menu__sub-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 24px 24px 20px;
    overflow-y: auto;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s;
}
.mega-menu__sub-panel.mega-menu__sub-panel--active {
    position: relative;
    opacity: 1;
    visibility: visible;
}
.mega-menu__back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(2, 155, 155, 0.3);
    border-radius: 8px;
    background: rgba(2, 155, 155, 0.08);
    color: var(--gotur-primary, #029b9b);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.mega-menu__back-btn:hover {
    background: rgba(2, 155, 155, 0.15);
    border-color: var(--gotur-primary, #029b9b);
}
.mega-menu__sub-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mega-menu__panel--subs .mega-menu__links {
    padding: 0;
    list-style: none;
    margin: 0;
}
.mega-menu__list-col .mega-menu__links li {
    margin-bottom: 2px;
}
.mega-menu__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}
.mega-menu__link:hover {
    color: var(--gotur-primary, #029b9b);
    background: rgba(2, 155, 155, 0.08);
}
.mega-menu__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gotur-primary, #029b9b);
    font-size: 1.1rem;
}
.mega-menu__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mega-menu__label {
    flex: 1;
}
.mega-menu__grid-col {
    flex: 1;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-content: start;
}
.mega-menu__grid-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f5f5f5;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.mega-menu__grid-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.mega-menu__grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mega-menu__grid-item img.mega-menu__grid-logo {
    object-fit: contain;
    padding: 20px;
    background: linear-gradient(135deg, rgba(2, 155, 155, 0.08) 0%, rgba(2, 155, 155, 0.02) 100%);
}
.mega-menu__grid-item span {
    display: block;
    padding: 8px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    background: #fff;
}
.mega-menu__grid-placeholder {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    background: linear-gradient(135deg, rgba(2, 155, 155, 0.1) 0%, rgba(2, 155, 155, 0.04) 100%);
    color: var(--gotur-primary, #029b9b);
    font-size: 2rem;
    padding: 20px !important;
}
.mega-menu__grid-item--cta {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(2, 155, 155, 0.08) 0%, rgba(2, 155, 155, 0.04) 100%);
    text-decoration: none;
    color: var(--gotur-primary, #029b9b);
}
.mega-menu__grid-item--cta .mega-menu__grid-cta-text {
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 10px 4px;
    background: transparent;
}
.mega-menu__grid-item--cta span:last-child {
    font-size: 0.85rem;
    font-weight: 600;
    background: transparent;
}

/* ============================================
   REDESIGNED MEGA MENU - DESKTOP & MOBILE
   ============================================ */

/* Desktop Mega Menu - Hidden on Mobile */
@media (max-width: 991px) {
    .mega-menu--desktop {
        display: none !important;
    }
}

/* Mobile Menu Item - Hidden on Desktop */
@media (min-width: 992px) {
    .mega-menu--mobile {
        display: none !important;
    }
}

/* ============================================
   DESKTOP MEGA MENU STYLES
   ============================================ */
.mega-menu--desktop .mega-menu__content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    max-width: 95vw;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    z-index: 1000;
    padding: 0;
}

.mega-menu--desktop:hover .mega-menu__content,
.mega-menu--desktop.mega-menu--open .mega-menu__content {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.mega-menu__container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    max-height: 450px;
    overflow: hidden;
}

/* Featured Section with Images */
.mega-menu__featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 16px 0 0 16px;
    overflow-y: auto;
}

.mega-menu__featured-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gotur-primary);
}

.mega-menu__featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mega-menu__featured-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    aspect-ratio: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mega-menu__featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.mega-menu__featured-image {
    position: absolute;
    inset: 0;
}

.mega-menu__featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-menu__featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
}

.mega-menu__featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    z-index: 1;
}

.mega-menu__featured-content h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 2px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.mega-menu__featured-count {
    color: rgba(255,255,255,0.9);
    font-size: 10px;
    font-weight: 500;
}

/* All Categories List */
.mega-menu__categories {
    padding: 20px;
    overflow-y: auto;
    background: #fff;
    border-radius: 0 16px 16px 0;
}

.mega-menu__categories-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gotur-primary);
}

.mega-menu__categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Desktop Categories Accordion List */
.mega-menu__categories-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-menu__category-item {
    border-radius: 8px;
    overflow: hidden;
}

.mega-menu__category-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-menu__category-parent {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.2s ease;
    text-decoration: none;
}

.mega-menu__category-parent i:first-child {
    font-size: 14px;
    width: 18px;
    color: var(--gotur-primary);
    flex-shrink: 0;
}

.mega-menu__category-parent span {
    flex: 1;
}

/* Parent with children - clickable to expand/collapse */
.mega-menu__category-parent--expandable {
    cursor: pointer;
    user-select: none;
}

.mega-menu__category-parent--expandable:hover {
    background: #e9ecef;
}

.mega-menu__category-chevron {
    font-size: 10px !important;
    width: auto !important;
    color: #999 !important;
    transition: transform 0.3s ease;
}

.mega-menu__category-item--expanded .mega-menu__category-chevron {
    transform: rotate(180deg);
    color: var(--gotur-primary) !important;
}

.mega-menu__category-item--expanded .mega-menu__category-parent--expandable {
    background: rgba(2, 155, 155, 0.1);
    color: var(--gotur-primary);
}

.mega-menu__category-item--expanded .mega-menu__category-parent--expandable i:first-child {
    color: var(--gotur-primary);
}

/* Parent without children - clickable link */
.mega-menu__category-parent--link:hover {
    background: var(--gotur-primary);
    color: #fff;
}

.mega-menu__category-parent--link:hover i {
    color: #fff !important;
}

.mega-menu__category-arrow {
    font-size: 10px !important;
    width: auto !important;
    color: #ccc !important;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega-menu__category-parent--link:hover .mega-menu__category-arrow {
    opacity: 1;
    transform: translateX(3px);
}

ul.mega-menu__category-children,
.mega-menu__categories .mega-menu__category-children,
.mega-menu__category-item .mega-menu__category-children,
[data-desktop-accordion-body] {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: none !important;
    background: #fafafa !important;
    border-radius: 0 0 8px 8px !important;
}

/* Hide accordion bodies by default */
[data-desktop-accordion-body] {
    display: none !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Show accordion body when expanded */
.mega-menu__category-item--expanded > [data-desktop-accordion-body],
.mega-menu__category-item--expanded [data-desktop-accordion-body],
.mega-menu__category-item--expanded > ul.mega-menu__category-children[data-desktop-accordion-body] {
    display: block !important;
    padding: 8px 12px 8px 28px !important;
    background: #fafafa !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Legacy support for old class names */
.mega-menu__category-item--expanded > ul.mega-menu__category-children,
.mega-menu__category-item--expanded > .mega-menu__category-children,
.mega-menu__category-item--expanded .mega-menu__category-children {
    display: block !important;
    padding: 8px 12px 8px 28px !important;
    max-height: none !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mega-menu__category-children li a {
    display: block;
    font-size: 12px;
    color: #666;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.mega-menu__category-children li a:hover {
    color: var(--gotur-primary);
    background: rgba(2, 155, 155, 0.08);
    padding-left: 14px;
}

.mega-menu__view-more a {
    font-weight: 600;
    color: var(--gotur-primary) !important;
    font-style: italic;
}

/* Scrollbar Styling */
.mega-menu__featured::-webkit-scrollbar,
.mega-menu__categories::-webkit-scrollbar {
    width: 6px;
}

.mega-menu__featured::-webkit-scrollbar-track,
.mega-menu__categories::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 3px;
}

.mega-menu__featured::-webkit-scrollbar-thumb,
.mega-menu__categories::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 3px;
}

.mega-menu__featured::-webkit-scrollbar-thumb:hover,
.mega-menu__categories::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.3);
}

/* ============================================
   MOBILE POPUP MODAL STYLES
   ============================================ */
.mega-menu--mobile a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mega-menu--mobile a i {
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.tours-mobile-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tours-mobile-modal.active {
    opacity: 1;
    visibility: visible;
}

.tours-mobile-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.tours-mobile-modal__content {
    position: relative;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tours-mobile-modal.active .tours-mobile-modal__content {
    transform: scale(1) translateY(0);
}

.tours-mobile-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    flex-shrink: 0;
}

.tours-mobile-modal__header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.tours-mobile-modal__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fa;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tours-mobile-modal__close:hover {
    background: var(--gotur-primary);
    color: #fff;
    transform: rotate(90deg);
}

.tours-mobile-modal__body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.tours-mobile-modal__footer {
    padding: 20px 24px;
    border-top: 1px solid #e9ecef;
    flex-shrink: 0;
}

.tours-mobile-modal__view-all {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

/* Mobile Accordion */
.tours-mobile-accordion__item {
    border-bottom: 1px solid #e9ecef;
}

.tours-mobile-accordion__item:last-child {
    border-bottom: none;
}

.tours-mobile-accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    user-select: none;
}

.tours-mobile-accordion__title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    padding: 16px;
    margin: -16px;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.tours-mobile-accordion__title i:first-child {
    font-size: 16px;
    color: var(--gotur-primary);
    width: 24px;
    flex-shrink: 0;
}

.tours-mobile-accordion__title span {
    flex: 1;
}

/* Expandable parent (with children) - NOT clickable, just expands */
.tours-mobile-accordion__title--expandable {
    cursor: pointer;
    user-select: none;
}

.tours-mobile-accordion__title--expandable:hover {
    background: rgba(2, 155, 155, 0.05);
}

.tours-mobile-accordion__title--expandable:active {
    background: rgba(2, 155, 155, 0.1);
}

.tours-mobile-accordion__chevron {
    font-size: 12px !important;
    color: #999 !important;
    width: auto !important;
    transition: transform 0.3s ease;
}

.tours-mobile-accordion__item--expanded .tours-mobile-accordion__chevron {
    transform: rotate(180deg);
    color: var(--gotur-primary) !important;
}

/* Clickable link (no children) */
.tours-mobile-accordion__title--link:hover {
    background: rgba(2, 155, 155, 0.05);
}

.tours-mobile-accordion__arrow {
    font-size: 12px !important;
    color: var(--gotur-primary) !important;
    width: auto !important;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tours-mobile-accordion__title--link:hover .tours-mobile-accordion__arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Remove old toggle button styles - no longer using separate button */
.tours-mobile-accordion__toggle {
    display: none;
}

.tours-mobile-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tours-mobile-accordion__body[aria-hidden="false"] {
    max-height: 1000px;
}

.tours-mobile-accordion__list {
    list-style: none;
    padding: 0 0 16px 32px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tours-mobile-accordion__list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tours-mobile-accordion__list li a:hover {
    background: rgba(2, 155, 155, 0.05);
    color: var(--gotur-primary);
}

.tours-mobile-accordion__list li a i {
    font-size: 10px;
    color: var(--gotur-primary);
}

/* Scrollbar for modal body */
.tours-mobile-modal__body::-webkit-scrollbar {
    width: 6px;
}

.tours-mobile-modal__body::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 3px;
}

.tours-mobile-modal__body::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 3px;
}

.tours-mobile-modal__body::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.3);
}

/* Body scroll lock when modal is open */
body.tours-modal-open {
    overflow: hidden;
}

/* Remove "Day" prefix from tour plan accordion titles */
.tour-listing-details__ture-plan .accordion-title__text::before {
    content: none !important;
    display: none !important;
}

/* Tour Features Styling - Redesigned */
.tour-feature-group {
    border: none;
    border-radius: 8px;
    padding: 0;
    background: transparent;
}

.booking-feature-toggle:hover {
    background: #eef6f6 !important;
}

.booking-feature-chevron.rotated {
    transform: rotate(180deg);
}

/* Day Features Section */
.day-features-section {
    border: 1px solid #d0e8e8;
    border-radius: 8px;
    padding: 15px;
    background: #f0f8f8;
}

.day-features-header {
    font-size: 14px;
    margin-bottom: 12px;
}

.tour-feature-label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px !important;
}

.tour-feature-option-label {
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tour-feature-option-label:hover {
    border-color: #029b9b !important;
    background: rgba(2, 155, 155, 0.02) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tour-feature-option:checked + span,
.tour-feature-option-label:has(.tour-feature-option:checked) {
    border-color: #029b9b !important;
    background: rgba(2, 155, 155, 0.08) !important;
}

.tour-feature-radio,
.tour-feature-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Plan Day Features Styling */
.day-feature-item {
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.day-feature-item:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.day-feature-options {
    padding: 8px 0;
}

/* Required field indicator */
.tour-feature-group[data-required="true"] .tour-feature-label::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #dc3545;
    border-radius: 50%;
    margin-left: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tour-feature-group {
        padding: 12px;
    }
    
    .tour-feature-option-label {
        padding: 10px !important;
    }
}

/* ============================================
   Home banner form tabs (Tours | Transfers)
   ============================================ */
.banner-form-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.banner-form-tab {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 700;
    color: #666;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.banner-form-tab:hover {
    color: var(--gotur-primary);
}

.banner-form-tab--active {
    color: var(--gotur-primary);
    border-bottom-color: var(--gotur-primary);
}

/* Transfers form row: 4 columns */
.banner-form--transfers .banner-form__col-transfers--1,
.banner-form--transfers .banner-form__col-transfers--2 {
    flex: 1;
    min-width: 0;
}

.banner-form--transfers .banner-form__col-transfers--3 {
    width: 180px;
    min-width: 140px;
}

.banner-form--transfers .banner-form__col-transfers--4 {
    width: auto;
    align-self: flex-end;
}

@media (max-width: 991px) {
    .banner-form--transfers .banner-form__col-transfers--1,
    .banner-form--transfers .banner-form__col-transfers--2,
    .banner-form--transfers .banner-form__col-transfers--3 {
        width: 100%;
        min-width: 0;
    }
}
