/*
Theme Name: Tabuk
Theme URI: https://example.com/tabuk
Author: Antigravity
Author URI: https://example.com
Description: A custom WordPress WooCommerce theme built from scratch with Elementor custom widgets and bilingual support.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tabuk
Domain Path: /languages
Tags: translation-ready, ecommerce, custom-colors, custom-menu, featured-images, full-width-template, rtl-language-support
*/

/* CSS Variables for design system */
:root {
    --primary-color: #0066cc;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --grey-color: #666666;
    --border-color: #eaeaea;
    --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Base Reset */
*, ::before, ::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: var(--dark-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #004fb2;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* -------------------------------------------------------------
 * HEADER STYLES
 * ------------------------------------------------------------- */
.site-header {
    width: 100%;
    transition: background-color 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: transparent;
}

/* Fix header position when WordPress admin bar is present */
.admin-bar .site-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 20px; /* Reduced vertical padding from 20px to 10px */
}

/* Logo */
.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-color);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.custom-logo-link-text .logo-icon {
    font-size: 28px;
}

.custom-logo-link-text .logo-text-sub {
    color: #dddddd;
    font-weight: 400;
}

/* Menu */
.main-navigation {
    display: flex;
    align-items: center;
}

.tabuk-header-menu ul,
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

.tabuk-header-menu a,
.main-navigation a {
    color: #000000 !important;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: block;
}

.tabuk-header-menu a:hover,
.main-navigation a:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.tabuk-header-menu li.current-menu-item a,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a {
    background-color: #ffffff !important;
    color: #000000 !important;
    font-weight: 700;
    border-radius: 30px;
}

/* Action Items (Right) */
.header-action-items {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-lang-switcher .lang-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000000 !important;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 30px;
}

.header-lang-switcher .lang-item:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.header-lang-switcher .lang-icon {
    font-size: 16px;
    color: #000000 !important;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000 !important;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.action-btn svg {
    stroke: #000000 !important;
}

.action-btn:hover {
    background-color: rgba(0, 0, 0, 0.08);
    color: #000000 !important;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--light-color);
    transition: all 0.3s ease;
}

/* ================================================================
   ULTRA-PREMIUM SEARCH POPUP MODAL STYLES
   ================================================================ */
.header-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    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);
}

.header-search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-card {
    position: relative;
    background: #ffffff !important;
    border-radius: 32px;
    padding: 40px 35px 35px;
    width: 90%;
    max-width: 620px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.header-search-modal.active .search-modal-card {
    transform: scale(1);
}

.close-search-btn {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #0f172a;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

html[dir="rtl"] .close-search-btn,
body.rtl .close-search-btn {
    right: auto;
    left: 20px;
}

.close-search-btn:hover {
    background: #e2e8f0;
    transform: scale(1.05);
}

.search-modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 24px 0;
    text-align: center;
}

.tabuk-search-form {
    width: 100%;
    margin-bottom: 24px;
}

.tabuk-search-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    transition: all 0.25s ease;
}

html[dir="rtl"] .tabuk-search-input-wrapper,
body.rtl .tabuk-search-input-wrapper {
    padding: 6px 20px 6px 6px;
}

.tabuk-search-input-wrapper:focus-within {
    border-color: #000000;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}

.tabuk-search-field {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.tabuk-search-submit-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.tabuk-search-submit-btn:hover {
    background: #1e293b;
    transform: scale(1.05);
}

.search-popular-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.search-popular-tags .tags-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
}

.search-popular-tags .tag-pill {
    background: #f1f5f9;
    color: #0f172a;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.search-popular-tags .tag-pill:hover {
    background: #000000;
    color: #ffffff !important;
}

/* -------------------------------------------------------------
 * HERO BANNER & SLIDER
 * ------------------------------------------------------------- */
.tabuk-hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    clear: both;
}

.tabuk-hero-swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.tabuk-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabuk-slide-overlay {
    display: none !important;
}

.tabuk-slide-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.tabuk-slide-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: var(--light-color);
    margin: 0 0 20px 0;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.tabuk-slide-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

.tabuk-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--light-color);
    color: var(--dark-color);
    padding: 14px 35px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tabuk-slide-btn:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

.tabuk-slide-btn .btn-arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-color);
    color: var(--light-color);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tabuk-slide-btn:hover .btn-arrow-icon {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.tabuk-hero-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #000000 !important;
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.tabuk-hero-pill-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.tabuk-hero-pill-btn .btn-arrow-icon {
    width: 28px;
    height: 28px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* Slider Controls */
.tabuk-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--light-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 18px;
}

.tabuk-slider-arrow:hover {
    border-color: var(--light-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.tabuk-slider-arrow.prev {
    left: 40px;
}

.tabuk-slider-arrow.next {
    right: 40px;
}

/* Slider Features Bar at bottom (Full Width - #FFFFFF 20%) */
.tabuk-slider-features {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.20); /* #FFFFFF 20% */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.tabuk-features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 18px 5%;
    gap: 30px;
    box-sizing: border-box;
}

.tabuk-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #ffffff;
    text-align: center;
}

.tabuk-feature-icon {
    font-size: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.tabuk-feature-icon i {
    font-size: 26px;
}

.tabuk-feature-text {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.35;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsiveness for Features Bar */
@media screen and (max-width: 768px) {
    .tabuk-features-container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px 20px;
    }
    
    .tabuk-feature-item {
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
    
    .tabuk-feature-text {
        font-size: 13px;
    }
}

/* Elementor Full Width Compatibility */
.elementor-page .site-main,
.elementor-template-full-width .site-main {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

/* Force parent containers of Tabuk Hero Slider & Banner to stretch full-width automatically */
.e-con:has(.tabuk-hero-slider),
.e-con:has(.tabuk-hero-banner),
.elementor-widget:has(.tabuk-hero-slider),
.elementor-widget:has(.tabuk-hero-banner),
.elementor-column:has(.tabuk-hero-slider),
.elementor-column:has(.tabuk-hero-banner),
.elementor-section:has(.tabuk-hero-slider),
.elementor-section:has(.tabuk-hero-banner),
.elementor-section:has(.tabuk-hero-slider) .elementor-container,
.elementor-section:has(.tabuk-hero-banner) .elementor-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

@media (max-width: 991px) {
    .tabuk-features-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .tabuk-slide-title {
        font-size: 40px;
    }

    .tabuk-slide-desc {
        font-size: 15px;
    }

    .tabuk-slider-arrow {
        width: 40px;
        height: 40px;
    }

    .tabuk-slider-arrow.prev {
        left: 15px;
    }

    .tabuk-slider-arrow.next {
        right: 15px;
    }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }

    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-navigation.toggled ul {
        display: flex;
    }

    .main-navigation a {
        border-radius: 0;
        padding: 10px 15px;
    }

    .main-navigation li.current-menu-item a {
        background: none;
        color: var(--primary-color);
        font-weight: 700;
    }
}

/* -------------------------------------------------------------
 * FULL WIDTH ELEMENTOR PAGE & CONTAINER ENFORCEMENT
 * ------------------------------------------------------------- */
.elementor-page #page,
.elementor-page .site-main,
.elementor-page .entry-content,
.elementor-page .site-content,
.elementor-editor-active .site-main,
.front-page-main {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    box-sizing: border-box !important;
}

/* Force full width on Elementor stretched & full-width sections/containers */
.elementor-section.elementor-section-full_width,
.elementor-section.elementor-section-stretched,
.elementor-widget-tabuk_hero_slider,
.elementor-widget-tabuk_hero,
.elementor-widget-tabuk_header,
.elementor-widget-tabuk_about,
.elementor-widget-tabuk_destinations,
.tabuk-slider-widget-wrapper {
    width: 100% !important;
    max-width: 100% !important;
}

.elementor-section.elementor-section-full_width > .elementor-container,
.elementor-section.elementor-section-stretched > .elementor-container {
    max-width: 100% !important;
    width: 100% !important;
}

/* AUTO-EXPAND PARENT ELEMENTOR CONTAINERS AUTOMATICALLY FOR ALL TABUK WIDGETS */
.elementor-section:has([class*="tabuk-"]),
.e-con:has([class*="tabuk-"]),
.elementor-column:has([class*="tabuk-"]),
.elementor-widget:has([class*="tabuk-"]) {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.elementor-section:has([class*="tabuk-"]) > .elementor-container,
.e-con:has([class*="tabuk-"]) > .elementor-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.home .site-main {
    padding-top: 0 !important;
}

.front-page-elementor-content {
    position: relative !important;
    display: block !important;
    clear: both !important;
    width: 100% !important;
    background-color: #ffffff !important;
    z-index: 20 !important;
    margin-top: 0 !important;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.tabuk-about-widget-wrapper {
    margin-top: 40px !important;
}

/* Push page content down on other pages so it doesn't get covered by the absolute header */
body:not(.home) .site-main {
    padding-top: 85px;
}

/* Ensure white logo turns dark black on white headers on non-home pages */
body:not(.home) .site-header .custom-logo-link-image img,
body:not(.home) .site-header .site-branding img {
    filter: brightness(0) !important;
}

/* Header flex ordering for RTL and LTR */
html[dir="rtl"] .header-container,
body.rtl .header-container {
    direction: rtl !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

html[dir="rtl"] .site-branding,
body.rtl .site-branding {
    order: 1 !important;
}

html[dir="rtl"] .main-navigation,
body.rtl .main-navigation {
    order: 2 !important;
}

html[dir="rtl"] .header-action-items,
body.rtl .header-action-items {
    order: 3 !important;
    direction: rtl !important;
}

html[dir="ltr"] .header-container,
body:not(.rtl) .header-container {
    direction: ltr !important;
}

/* Override header link colors to black on non-homepage pages */
body:not(.home) .site-header {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
}

body:not(.home) .tabuk-header-menu a,
body:not(.home) .main-navigation a,
body:not(.home) .header-action-items .action-btn,
body:not(.home) .header-action-items .lang-item {
    color: #000000 !important;
}

body:not(.home) .tabuk-header-menu a:hover,
body:not(.home) .main-navigation a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000000 !important;
}

body:not(.home) .tabuk-header-menu li.current-menu-item a,
body:not(.home) .main-navigation li.current-menu-item a,
body:not(.home) .main-navigation li.current_page_item a {
    background-color: #f1f5f9 !important;
    color: #000000 !important;
    font-weight: 700;
    border-radius: 30px;
}

.header-lang-switcher .lang-item i {
    color: inherit;
}

/* -------------------------------------------------------------
 * TABUK ABOUT & CULTURE WIDGET STYLES
 * ------------------------------------------------------------- */
.tabuk-about-widget-wrapper {
    width: 100%;
    box-sizing: border-box;
    padding: 60px 20px;
}

/* PART 1: ABOUT US */
.tabuk-about-part1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 90px;
}

.tabuk-about-images-grid {
    display: flex !important;
    gap: 15px !important;
    align-items: flex-start !important;
}

.about-img-tall {
    width: 316px !important;
    flex-shrink: 0 !important;
}

.about-img-tall img {
    width: 316px !important;
    height: 383px !important;
    object-fit: cover !important;
    border-radius: 28px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.about-img-stacked {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    flex-grow: 1 !important;
}

.about-img-top img,
.about-img-bottom img {
    width: 100% !important;
    height: 184px !important;
    object-fit: cover !important;
    border-radius: 28px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease;
}

.about-img-tall img:hover,
.about-img-top img:hover,
.about-img-bottom img:hover {
    transform: translateY(-5px);
}

.tabuk-about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tabuk-about-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: inline-block;
}

.tabuk-about-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.tabuk-about-desc {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.tabuk-about-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tabuk-about-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.tabuk-about-bullet-dot {
    width: 9px;
    height: 9px;
    background-color: #2563eb;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.tabuk-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background-color: #000000;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.tabuk-about-btn:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-btn-icon {
    width: 28px;
    height: 28px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* PART 2: CULTURE & TOURISM */
.tabuk-about-part2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tabuk-culture-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.culture-item-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.culture-item-desc {
    font-size: 15px;
    color: #555555;
    line-height: 1.65;
    margin: 0;
}

.tabuk-culture-images {
    position: relative;
    padding-bottom: 20px;
}

.culture-img-main img {
    width: 316px !important;
    height: 383px !important;
    object-fit: cover !important;
    border-radius: 28px !important;
    margin-left: auto;
    display: block;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.rtl .culture-img-main img {
    margin-left: 0;
    margin-right: auto;
}

.culture-img-overlay {
    position: absolute;
    bottom: 0;
    left: 20px;
    z-index: 5 !important; /* Layered ON TOP of the big image */
}

.rtl .culture-img-overlay {
    left: auto;
    right: 20px;
}

.culture-img-overlay img {
    width: 220px !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 28px !important;
    border: 5px solid #ffffff !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive for Mobile & Tablet */
@media (max-width: 991px) {
    .tabuk-about-part1,
    .tabuk-about-part2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .culture-img-main img {
        width: 100%;
        margin: 0;
    }

    .culture-img-overlay {
        width: 60%;
        bottom: -30px;
    }

    .tabuk-about-title {
        font-size: 28px;
    }

    .culture-item-title {
        font-size: 22px;
    }
}

/* -------------------------------------------------------------
 * MAIN THEME FOOTER STYLES
 * ------------------------------------------------------------- */
.main-theme-footer {
    background-color: #000000;
    color: #ffffff;
    padding-top: 60px;
    font-family: var(--font-body);
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-logo img {
    max-height: 55px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-about-text {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 380px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-socials a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: #2563eb;
    transform: translateY(-2px);
}

.footer-col-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 22px 0;
}

.footer-links-list,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a,
.footer-contact-list a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-list a:hover,
.footer-contact-list a:hover {
    color: #ffffff;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
}

.footer-contact-list i {
    font-size: 16px;
    color: #ffffff;
    width: 20px;
    text-align: center;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.12);
    margin-bottom: 30px;
}

.footer-payments {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-bottom: 40px;
}

.pay-img-item {
    background-color: #ffffff;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    padding: 0;
}

.pay-img-item img {
    max-height: 22px;
    max-width: 28px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-license-bar {
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    padding: 14px 20px;
}

.footer-license-bar p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

/* RTL Footer Adjustments */
.rtl .footer-grid {
    direction: rtl;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* -------------------------------------------------------------
 * TABUK MAIN DESTINATIONS WIDGET STYLES
 * ------------------------------------------------------------- */
.tabuk-destinations-wrapper {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.destinations-section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin: 0 0 40px 0;
    letter-spacing: -0.5px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.destination-card {
    display: flex;
    flex-direction: column;
}

.destination-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.destination-img-holder {
    width: 100%;
    height: 280px;
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    background-color: #f5f5f5;
}

.destination-img-holder img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 28px !important;
    transition: transform 0.4s ease;
    display: block;
}

.destination-card:hover .destination-img-holder img {
    transform: scale(1.06);
}

.destination-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 14px 0 0 0;
    text-align: left;
    transition: color 0.3s ease;
}

.rtl .destination-card-title {
    text-align: right;
}

.destination-card:hover .destination-card-title {
    color: #2563eb;
}

/* Responsive Destinations Grid */
@media (max-width: 991px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .destinations-section-title {
        font-size: 26px;
    }
}


/* ================================================================
   ABOUT US SECTION
   ================================================================ */
.tabuk-about-section {
    padding: 90px 0 80px;
    background: #ffffff;
    overflow: hidden;
}

.tabuk-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── TOP ROW ── */
.tabuk-about-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* Left: image mosaic */
.tabuk-about-images-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.tabuk-about-img-large {
    grid-row: 1 / 3;
    border-radius: 16px;
    overflow: hidden;
}

.tabuk-about-img-large img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.tabuk-about-img-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tabuk-about-img-sm {
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
}

.tabuk-about-img-sm img {
    width: 100%;
    height: 100%;
    min-height: 120px;
    object-fit: cover;
    display: block;
}

/* Right: text content */
.tabuk-about-text-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tabuk-about-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
    font-size: 15px;
}

.about-label-text {
    font-family: 'Dancing Script', 'Georgia', cursive;
    font-size: 20px;
    color: #333;
    font-style: italic;
}

.about-arrow {
    font-size: 14px;
    color: #555;
}

.tabuk-about-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #0b1c2e;
    line-height: 1.2;
    margin: 0;
}

.tabuk-about-desc {
    font-size: 14.5px;
    color: #555;
    line-height: 1.75;
    margin: 0;
}

.tabuk-about-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tabuk-about-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: #333;
    font-weight: 500;
}

.tabuk-about-bullets li::before {
    content: '';
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    background: #1a6dff;
    display: inline-block;
}

.tabuk-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0b1c2e;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
    align-self: flex-start;
    margin-top: 6px;
}

.tabuk-about-btn:hover {
    background: #1a3a5c;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.tabuk-about-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff;
    color: #0b1c2e;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.tabuk-about-btn:hover .tabuk-about-btn-arrow {
    transform: rotate(15deg);
}

/* ── BOTTOM ROW ── */
.tabuk-about-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left: text blocks */
.tabuk-about-text-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tabuk-about-text-block h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #0b1c2e;
    margin: 0 0 10px 0;
}

.tabuk-about-text-block p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Right: floating overlapping images */
.tabuk-about-float-images {
    position: relative;
    height: 360px;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
}

.tabuk-about-float-img {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.tabuk-about-float-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tall Card (Right) */
.tabuk-float-back {
    width: 260px;
    height: 340px;
    top: 0;
    right: 0;
    border-radius: 28px;
}

/* Overlapping Front Card (Bottom Left of Tall Card) */
.tabuk-float-front {
    width: 220px;
    height: 220px;
    bottom: 0;
    right: 160px;
    border-radius: 24px;
    z-index: 2;
    border: 5px solid #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

/* ── RTL SPECIFIC STYLES ── */
html[dir="rtl"] .tabuk-about-bullets li::before,
body.rtl .tabuk-about-bullets li::before {
    background: #000000;
}

html[dir="rtl"] .tabuk-about-float-images,
body.rtl .tabuk-about-float-images {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .tabuk-float-back,
body.rtl .tabuk-float-back {
    left: 0;
    right: auto;
}

html[dir="rtl"] .tabuk-float-front,
body.rtl .tabuk-float-front {
    left: 160px;
    right: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .tabuk-about-top-row,
    .tabuk-about-bottom-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tabuk-about-float-images {
        height: 260px;
    }

    .tabuk-float-back {
        width: 55%;
        height: 240px;
        right: 0;
        top: 10px;
    }

    .tabuk-float-front {
        width: 45%;
        height: 190px;
        right: 48%;
        bottom: 0;
    }
}


/* ================================================================
   MAIN DESTINATIONS SECTION
   ================================================================ */
.tabuk-destinations-section {
    padding: 80px 0 90px;
    background: #ffffff;
    overflow: hidden;
}

.tabuk-destinations-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header: Title + Controls */
.tabuk-destinations-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 40px;
}

.tabuk-destinations-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #0b1c2e;
    margin: 0;
    text-align: center;
}

/* Navigation Arrows (Black Circles with White Arrows) */
.tabuk-destinations-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

html[dir="rtl"] .tabuk-destinations-nav,
body.rtl .tabuk-destinations-nav {
    left: 0;
    right: auto;
}

html[dir="ltr"] .tabuk-destinations-nav,
body:not(.rtl) .tabuk-destinations-nav {
    right: 0;
    left: auto;
}

.dest-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dest-nav-btn:hover {
    background-color: #333333;
    transform: scale(1.08);
}

/* Grid Wrapper & Cards Carousel */
.tabuk-destinations-grid-wrapper {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
    padding: 10px 5px 20px 5px;
}

.tabuk-destinations-grid-wrapper::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.tabuk-destinations-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    width: max-content;
}

.tabuk-destination-card {
    flex: 0 0 220px;
    width: 220px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1200px) {
    .tabuk-destinations-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
        width: 100%;
    }
    .tabuk-destination-card {
        flex: initial;
        width: 100%;
    }
}

.dest-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.dest-card-image-box {
    width: 100%;
    height: 250px;
    border-radius: 28px;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.dest-card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28px;
    transition: transform 0.4s ease;
}

.dest-card-link:hover .dest-card-image-box {
    box-shadow: 0 16px 36px rgba(0,0,0,0.14);
    transform: translateY(-4px);
}

.dest-card-link:hover .dest-card-image-box img {
    transform: scale(1.06);
}

.dest-card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #0b1c2e;
    margin: 16px 0 0 0;
    text-align: center;
    transition: color 0.25s ease;
}

html[dir="rtl"] .dest-card-title,
body.rtl .dest-card-title {
    text-align: center;
}

.dest-card-link:hover .dest-card-title {
    color: #1a6dff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tabuk-destinations-header {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .tabuk-destinations-nav {
        position: relative;
        top: auto;
        transform: none;
        left: auto !important;
        right: auto !important;
    }
    .tabuk-destination-card {
        flex: 0 0 200px;
        width: 200px;
    }
    .tabuk-about-title {
        font-size: 24px;
    }
    .tabuk-about-float-images {
        height: 220px;
    }
}


/* ================================================================
   HERITAGE & EXPERIENCES SECTION
   ================================================================ */
.tabuk-heritage-section {
    position: relative;
    padding: 100px 0 110px;
    background-color: #000000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.tabuk-heritage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    z-index: 1;
}

.tabuk-heritage-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.tabuk-heritage-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    max-width: 860px;
    margin: 0 auto 55px;
    line-height: 1.45;
    letter-spacing: -0.3px;
}

.tabuk-heritage-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.tabuk-heritage-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

html[dir="rtl"] .tabuk-heritage-card,
body.rtl .tabuk-heritage-card {
    align-items: flex-start;
}

.tabuk-heritage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.tabuk-heritage-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.tabuk-heritage-card-text {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.65;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .tabuk-heritage-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .tabuk-heritage-title {
        font-size: 24px;
    }
    .tabuk-heritage-section {
        padding: 70px 0 80px;
    }
}


/* ================================================================
   FULL PACKAGE PROGRAMS SECTION
   ================================================================ */
.tabuk-packages-section {
    padding: 85px 0;
    background-color: #ffffff;
}

.tabuk-packages-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
}

.tabuk-packages-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin: 0 0 50px 0;
}

.tabuk-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.tabuk-package-card {
    background: #000000;
    border-radius: 24px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.tabuk-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.package-card-image-box {
    width: 100%;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
}

.package-card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    transition: transform 0.4s ease;
}

.tabuk-package-card:hover .package-card-image-box img {
    transform: scale(1.05);
}

.package-card-content {
    padding: 16px 8px 6px 8px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: 14px;
}

.package-card-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px;
}

.package-card-price {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.package-card-price .price-unit {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.package-card-footer {
    margin-top: 8px;
}

.package-pill-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    color: #000000 !important;
    padding: 10px 16px;
    border-radius: 35px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.package-pill-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.package-pill-btn .btn-arrow-icon {
    width: 28px;
    height: 28px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .tabuk-packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .tabuk-packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* ================================================================
   FEATURED PROMO BANNER SECTION
   ================================================================ */
.tabuk-promo-banner-section {
    position: relative;
    padding: 120px 0 130px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.tabuk-promo-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
    z-index: 1;
}

.tabuk-promo-banner-container {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tabuk-promo-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 24px 0;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tabuk-promo-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 16px 0;
    line-height: 1.6;
    max-width: 820px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.tabuk-promo-price {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    margin: 24px 0 30px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.tabuk-promo-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #000000 !important;
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.tabuk-promo-pill-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.tabuk-promo-pill-btn .btn-arrow-icon {
    width: 28px;
    height: 28px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .tabuk-promo-title {
        font-size: 28px;
    }
    .tabuk-promo-desc {
        font-size: 14px;
    }
    .tabuk-promo-price {
        font-size: 24px;
    }
    .tabuk-promo-banner-section {
        padding: 80px 0;
    }
}


/* ================================================================
   GALLERY OF BEAUTIFUL MEMORIES SECTION
   ================================================================ */
.tabuk-gallery-section {
    padding: 90px 0 100px;
    background-color: #ffffff;
    overflow: hidden;
}

.tabuk-gallery-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tabuk-gallery-badge {
    font-family: 'Dancing Script', cursive, var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.tabuk-gallery-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #0b1c2e;
    max-width: 900px;
    margin: 0 0 28px 0;
    line-height: 1.4;
}

.tabuk-gallery-btn-box {
    margin-bottom: 50px;
}

.gallery-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #000000;
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.gallery-pill-btn:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.gallery-pill-btn .btn-arrow-icon {
    width: 26px;
    height: 26px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.tabuk-gallery-carousel-wrapper {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 15px 0 25px 0;
}

.tabuk-gallery-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.tabuk-gallery-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 0 20px;
    width: max-content;
}

html[dir="rtl"] .tabuk-gallery-carousel-wrapper,
body.rtl .tabuk-gallery-carousel-wrapper {
    direction: rtl;
}

html[dir="rtl"] .tabuk-gallery-carousel,
body.rtl .tabuk-gallery-carousel {
    direction: rtl;
    justify-content: flex-start;
}

html[dir="ltr"] .tabuk-gallery-carousel-wrapper,
body:not(.rtl) .tabuk-gallery-carousel-wrapper {
    direction: ltr;
}

.tabuk-gallery-card {
    flex: 0 0 210px;
    width: 210px;
    height: 310px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tabuk-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.tabuk-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28px;
    transition: transform 0.4s ease;
}

.tabuk-gallery-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .tabuk-gallery-title {
        font-size: 20px;
    }
    .tabuk-gallery-badge {
        font-size: 22px;
    }
    .tabuk-gallery-card {
        flex: 0 0 170px;
        width: 170px;
        height: 250px;
        border-radius: 20px;
    }
    .tabuk-gallery-card img {
        border-radius: 20px;
    }
}


/* ================================================================
   EXPLORE MORE DESTINATIONS SECTION (RANDOM PRODUCTS)
   ================================================================ */
.tabuk-more-dest-section {
    padding: 90px 0 100px;
    background-color: #ffffff;
}

.tabuk-more-dest-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.tabuk-more-dest-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    position: relative;
}

.tabuk-more-dest-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #0b1c2e;
    margin: 0;
}

.tabuk-more-dest-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.more-dest-nav-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.more-dest-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-dest-nav-btn:hover {
    background-color: #333333;
    transform: scale(1.08);
}

.more-dest-header-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #0b1c2e;
    text-decoration: underline;
    transition: color 0.25s ease;
}

.more-dest-header-link:hover {
    color: #1a6dff;
}

/* Grid & Cards (Black Background, 24px Radius) */
.tabuk-more-dest-grid-wrapper {
    width: 100%;
}

.tabuk-more-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.tabuk-more-dest-card {
    width: 100%;
    background-color: #000000;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.tabuk-more-dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.more-dest-card-link {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.more-dest-image-box {
    width: 100%;
    height: 200px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 16px;
    background-color: #1a1a1a;
}

.more-dest-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    transition: transform 0.4s ease;
}

.tabuk-more-dest-card:hover .more-dest-image-box img {
    transform: scale(1.06);
}

.more-dest-card-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.4;
    min-height: 42px;
}

.more-dest-card-price {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.more-dest-card-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ffffff;
    color: #000000;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.tabuk-more-dest-card:hover .more-dest-card-btn {
    background-color: #f1f5f9;
}

.more-dest-card-btn .btn-arrow-icon {
    width: 24px;
    height: 24px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

/* Bottom Outline View More Button */
.tabuk-more-dest-bottom {
    margin-top: 40px;
    text-align: center;
}

.tabuk-more-dest-outline-btn {
    display: inline-block;
    padding: 12px 40px;
    border: 1.5px solid #000000;
    border-radius: 40px;
    background: transparent;
    color: #000000 !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tabuk-more-dest-outline-btn:hover {
    background-color: #000000;
    color: #ffffff !important;
}

@media (max-width: 1100px) {
    .tabuk-more-dest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .tabuk-more-dest-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tabuk-more-dest-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .tabuk-more-dest-title {
        font-size: 20px;
    }
}
/* ================================================================
   BOOKING PROCESS SECTION (4 EASY STEPS)
   ================================================================ */
.tabuk-booking-process-section {
    padding: 90px 0 100px;
    background-color: #ffffff;
}

.tabuk-booking-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.tabuk-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Image Card Column */
.tabuk-booking-image-col {
    width: 100%;
}

.tabuk-booking-image-card {
    width: 100%;
    min-height: 520px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tabuk-booking-card-overlay {
    width: 100%;
    padding: 30px 25px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.85) 100%);
    backdrop-filter: blur(4px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tabuk-booking-card-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tabuk-booking-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #000000 !important;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.tabuk-booking-pill-btn:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tabuk-booking-pill-btn .btn-arrow-icon {
    width: 26px;
    height: 26px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

/* Steps Column */
.tabuk-booking-steps-col {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tabuk-booking-badge {
    font-family: 'Dancing Script', cursive, var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

html[dir="rtl"] .tabuk-booking-badge,
body.rtl .tabuk-booking-badge {
    text-align: right;
}

html[dir="ltr"] .tabuk-booking-badge,
body:not(.rtl) .tabuk-booking-badge {
    text-align: left;
}

.tabuk-booking-steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tabuk-booking-step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 24px;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.tabuk-booking-step-item.is-active,
.tabuk-booking-step-item:hover {
    background-color: #f8fafc;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.step-number-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #0b1c2e;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tabuk-booking-step-item.is-active .step-number-box {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-content-box {
    flex: 1;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: #0b1c2e;
    margin: 0 0 6px 0;
}

.step-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .tabuk-booking-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .tabuk-booking-image-card {
        min-height: 400px;
    }
    .tabuk-booking-card-title {
        font-size: 22px;
    }
}


/* ================================================================
   EXPLORE THE MAGIC OF TABUK TODAY BANNER SECTION
   ================================================================ */
.tabuk-magic-banner-section {
    position: relative;
    padding: 130px 0 140px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.tabuk-magic-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.tabuk-magic-banner-container {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tabuk-magic-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.35;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.tabuk-magic-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #f1f5f9;
    max-width: 820px;
    margin: 0 0 35px 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.tabuk-magic-btn-box {
    margin-top: 10px;
}

.tabuk-magic-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #000000 !important;
    padding: 14px 34px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.tabuk-magic-pill-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    background-color: #f8fafc;
}

.tabuk-magic-pill-btn .btn-arrow-icon {
    width: 28px;
    height: 28px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .tabuk-magic-title {
        font-size: 26px;
    }
    .tabuk-magic-desc {
        font-size: 14px;
    }
    .tabuk-magic-banner-section {
        padding: 85px 0 95px;
    }
}


/* ================================================================
   TABUK TOURS NEWS & STORIES SECTION (BLOG POSTS)
   ================================================================ */
.tabuk-news-stories-section {
    padding: 90px 0 100px;
    background-color: #ffffff;
}

.tabuk-news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.tabuk-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.tabuk-news-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #0b1c2e;
    margin: 0;
}

.tabuk-news-header-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #0b1c2e;
    text-decoration: underline;
    transition: color 0.25s ease;
}

.tabuk-news-header-link:hover {
    color: #1a6dff;
}

/* Featured Main Post Card */
.tabuk-news-featured-card {
    background-color: #000000;
    border-radius: 28px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.news-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.news-featured-image-box {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.news-featured-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.tabuk-news-featured-card:hover .news-featured-image-box img {
    transform: scale(1.04);
}

.news-featured-content {
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.news-post-date {
    font-family: var(--font-body);
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 12px;
    display: block;
}

.news-featured-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.news-featured-excerpt {
    font-family: var(--font-body);
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0 0 28px 0;
}

.news-btn-box {
    display: flex;
}

.news-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #000000 !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-pill-btn:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

.news-pill-btn .btn-arrow-icon {
    width: 24px;
    height: 24px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

/* 3 Secondary Cards Grid */
.tabuk-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tabuk-news-card {
    background-color: #000000;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.tabuk-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.news-card-link {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card-image-box {
    width: 100%;
    height: 210px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 14px;
    background-color: #1a1a1a;
}

.news-card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    transition: transform 0.4s ease;
}

.tabuk-news-card:hover .news-card-image-box img {
    transform: scale(1.06);
}

.news-card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 4px 0 20px 0;
    line-height: 1.45;
    min-height: 46px;
}

.news-card-btn-box {
    margin-top: auto;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .news-featured-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .news-featured-image-box {
        height: 280px;
    }
    .tabuk-news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tabuk-news-title {
        font-size: 24px;
    }
}


/* ================================================================
   FREQUENTLY ASKED QUESTIONS (FAQ) SECTION
   ================================================================ */
.tabuk-faq-section {
    padding: 95px 0 110px;
    background-color: #fafafa;
    background-position: center;
    background-repeat: repeat;
    background-size: auto;
    position: relative;
}

.tabuk-faq-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.tabuk-faq-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin: 0 0 45px 0;
    letter-spacing: 0.5px;
}

.tabuk-faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tabuk-faq-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.tabuk-faq-item.is-open {
    border-radius: 28px;
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.tabuk-faq-header {
    width: 100%;
    background: none;
    border: none;
    padding: 10px 10px 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: inherit;
    font-family: inherit;
    transition: background-color 0.25s ease;
}

html[dir="rtl"] .tabuk-faq-header,
body.rtl .tabuk-faq-header {
    padding: 10px 30px 10px 10px;
}

.tabuk-faq-question {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: #0b1c2e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tabuk-faq-question .faq-num {
    font-weight: 800;
    color: #0b1c2e;
}

.tabuk-faq-toggle-btn {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.tabuk-faq-item.is-open .tabuk-faq-toggle-btn {
    border-radius: 20px;
}

.tabuk-faq-body {
    padding: 0 35px 24px 35px;
}

html[dir="rtl"] .tabuk-faq-body,
body.rtl .tabuk-faq-body {
    padding: 0 35px 24px 35px;
}

.tabuk-faq-answer {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

@media (max-width: 768px) {
    .tabuk-faq-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .tabuk-faq-question {
        font-size: 15px;
    }
    .tabuk-faq-toggle-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px;
    }
    .tabuk-faq-header {
        padding: 8px 8px 8px 20px;
    }
    html[dir="rtl"] .tabuk-faq-header,
    body.rtl .tabuk-faq-header {
        padding: 8px 20px 8px 8px;
    }
}


/* ================================================================
   TRAVEL FEATURES & EXPERIENCE CARDS SECTION
   ================================================================ */
.tabuk-travel-exp-section {
    padding: 95px 0 110px;
    background-color: #ffffff;
    background-image: none;
    position: relative;
}

.tabuk-exp-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.tabuk-exp-main-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: #0b1c2e;
    text-align: center;
    max-width: 960px;
    margin: 0 auto 50px auto;
    line-height: 1.45;
}

.tabuk-exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tabuk-exp-card {
    background-color: #000000;
    border-radius: 28px;
    padding: 32px 28px;
    color: #ffffff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

html[dir="rtl"] .tabuk-exp-card,
body.rtl .tabuk-exp-card {
    align-items: flex-start;
    text-align: right;
}

html[dir="ltr"] .tabuk-exp-card,
body:not(.rtl) .tabuk-exp-card {
    align-items: flex-start;
    text-align: left;
}

.tabuk-exp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.exp-card-icon-box {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

.exp-card-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #e2e8f0;
    margin: 0;
}

@media (max-width: 992px) {
    .tabuk-exp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tabuk-exp-main-title {
        font-size: 22px;
        margin-bottom: 35px;
    }
}


/* ================================================================
   CUSTOMER TESTIMONIALS / REVIEWS SECTION
   ================================================================ */
.tabuk-testimonials-section {
    padding: 95px 0 110px;
    background-color: #ffffff;
}

.tabuk-testi-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
}

.tabuk-testi-main-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #0b1c2e;
    text-align: center;
    margin: 0 0 50px 0;
}

.tabuk-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tabuk-testi-card {
    background: rgba(245, 245, 245, 1);
    border-radius: 24px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tabuk-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    background: rgba(238, 238, 238, 1);
}

.testi-card-quote {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
    margin: 0 0 28px 0;
}

.testi-card-author {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

html[dir="ltr"] .testi-card-author,
body:not(.rtl) .testi-card-author {
    justify-content: flex-start;
}

.author-info {
    display: flex;
    flex-direction: column;
}

html[dir="rtl"] .author-info,
body.rtl .author-info {
    text-align: right;
}

html[dir="ltr"] .author-info,
body:not(.rtl) .author-info {
    text-align: left;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.author-location {
    font-family: var(--font-body);
    font-size: 12px;
    color: #64748b;
}

.author-avatar-box {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #cbd5e1;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT US PAGE GALLERY ROW STYLES
   ═══════════════════════════════════════════════════════════ */
.about-page-gallery-row {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
    align-items: center !important;
    margin-top: 40px !important;
}

.about-gallery-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-gallery-item.gallery-item-1 { height: 330px; }
.about-gallery-item.gallery-item-2 { height: 230px; }
.about-gallery-item.gallery-item-3 { height: 350px; }
.about-gallery-item.gallery-item-4 { height: 230px; }
.about-gallery-item.gallery-item-5 { height: 350px; }

@media screen and (max-width: 992px) {
    .about-page-gallery-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    .about-gallery-item.gallery-item-1,
    .about-gallery-item.gallery-item-2,
    .about-gallery-item.gallery-item-3,
    .about-gallery-item.gallery-item-4,
    .about-gallery-item.gallery-item-5 {
        height: 250px;
    }
}

@media screen and (max-width: 600px) {
    .about-page-gallery-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .about-page-main-title {
        font-size: 24px !important;
    }
    .about-page-content {
        font-size: 15px !important;
    }
}


.author-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

@media (max-width: 992px) {
    .tabuk-testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tabuk-testi-grid {
        grid-template-columns: 1fr;
    }
    .tabuk-testi-main-title {
        font-size: 24px;
        margin-bottom: 35px;
    }
}

/* ═════════════════════════════════════════════════════════════
   EXPLORE PAGE HERO SECTION STYLES
   ═════════════════════════════════════════════════════════════ */
.tabuk-explore-hero-section {
    position: relative;
    width: 100%;
    min-height: 580px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 170px 20px 140px;
    box-sizing: border-box;
    overflow: hidden;
}

.tabuk-explore-hero-overlay {
    display: none !important;
}

.tabuk-explore-hero-container {
    position: relative;
    z-index: 2;
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.tabuk-explore-hero-title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.35;
    margin: 0 0 16px 0;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
    font-family: var(--font-heading, inherit);
}

.tabuk-explore-hero-desc {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff !important;
    line-height: 1.65;
    max-width: 780px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.9);
}

@media screen and (max-width: 768px) {
    .tabuk-explore-hero-section {
        padding: 120px 15px 90px;
        min-height: 420px;
    }
    .tabuk-explore-hero-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    .tabuk-explore-hero-desc {
        font-size: 14.5px;
        line-height: 1.55;
    }
}

/* ═════════════════════════════════════════════════════════════
   EXPLORE PAGE MAIN LAYOUT & CARDS (MATCHING REFERENCE DESIGN)
   ═════════════════════════════════════════════════════════════ */
.explore-page-layout-wrapper {
    padding: 55px 0 85px;
    background-color: #ffffff;
}

.explore-main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 275px 1fr;
    gap: 35px;
    align-items: start;
}

/* RTL Layout Flip */
html[dir="rtl"] .explore-main-container,
body.rtl .explore-main-container {
    grid-template-columns: 275px 1fr;
    direction: rtl;
}

/* ── SIDEBAR FILTERS (LIGHT GRAY CARDS) ─────────────────────── */
.explore-sidebar-filters {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.explore-filter-card {
    background: #f4f4f6;
    border-radius: 18px;
    padding: 18px 20px;
    border: none;
    box-sizing: border-box;
}

.explore-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 15px;
    color: #1e293b;
    cursor: pointer;
}

.explore-filter-header i {
    font-size: 13px;
    color: #475569;
}

.explore-filter-body {
    margin-top: 14px;
}

.explore-filter-input-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e2e8f0;
}

.explore-filter-input-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 13.5px;
    color: #334155;
}

.explore-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 11px;
    font-size: 14px;
    color: #334155;
    cursor: pointer;
    user-select: none;
}

.explore-checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    accent-color: #0f172a;
    cursor: pointer;
}

.explore-show-more {
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 4px;
    display: inline-block;
}

.explore-delete-filter {
    font-size: 12px;
    color: #ef4444;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.explore-price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.explore-price-inputs input {
    width: 65px;
    padding: 7px 10px;
    border-radius: 20px;
    border: 1px solid #cbd5e1;
    font-size: 13px;
    text-align: center;
}

.explore-apply-price {
    background: transparent;
    color: #2563eb;
    border: none;
    font-weight: 600;
    font-size: 12.5px;
    cursor: pointer;
}

/* ── MAIN PRODUCTS AREA (TOPBAR + GRID + DISCOVER MORE) ─────── */
.explore-products-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.explore-area-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.explore-sort-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

/* 3-COLUMN PRODUCTS GRID (6 CARDS PER PAGE) */
.explore-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 45px;
}

/* DARK ROUNDED PRODUCT CARD (FIGMA SPEC: RADIUS 28px, HEIGHT 449px) */
.explore-product-card {
    background: #000000;
    border-radius: 28px;
    padding: 18px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 449px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.explore-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.explore-card-img-link {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 14px;
}

.explore-card-img-box {
    width: 100%;
    height: 245px;
    overflow: hidden;
}

.explore-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.explore-product-card:hover .explore-card-img-box img {
    transform: scale(1.05);
}

.explore-card-title {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 12px 0;
    color: #ffffff;
    min-height: 40px;
}

.explore-card-title a {
    color: #ffffff;
    text-decoration: none;
}

.explore-card-price {
    font-size: 15.5px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.explore-card-pill-btn {
    background: #ffffff;
    color: #000000;
    border-radius: 30px;
    padding: 8px 10px 8px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.25s ease;
}

html[dir="rtl"] .explore-card-pill-btn,
body.rtl .explore-card-pill-btn {
    padding: 8px 18px 8px 10px;
}

.explore-card-pill-btn:hover {
    background-color: #f1f5f9;
}

.btn-arrow-circle {
    width: 32px;
    height: 32px;
    background: #000000;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1;
    flex-shrink: 0;
}

/* DISCOVER MORE BUTTON */
.explore-discover-more-box {
    text-align: center;
    margin-top: 20px;
}

.explore-discover-more-btn {
    background: #000000;
    color: #ffffff;
    border-radius: 30px;
    padding: 13px 45px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.explore-discover-more-btn:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
}

/* RESPONSIVE LAYOUT & RTL FIXES FOR EXPLORE PAGE */
html[dir="rtl"] .explore-main-container,
body.rtl .explore-main-container {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .explore-card-content,
body.rtl .explore-card-content {
    text-align: right;
}

html[dir="rtl"] .explore-card-pill-btn,
body.rtl .explore-card-pill-btn {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px 10px 12px;
}

html[dir="rtl"] .explore-checkbox-item,
body.rtl .explore-checkbox-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    direction: rtl;
    text-align: right;
    cursor: pointer;
}

html[dir="rtl"] .explore-checkbox-item input[type="checkbox"],
body.rtl .explore-checkbox-item input[type="checkbox"] {
    margin: 0 0 0 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

html[dir="rtl"] .explore-price-inputs,
body.rtl .explore-price-inputs {
    direction: rtl;
}

@media screen and (max-width: 1024px) {
    .explore-main-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 16px;
    }
    .explore-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .tabuk-explore-hero-section {
        padding: 60px 16px 80px;
    }

    .tabuk-explore-hero-title {
        font-size: 24px;
        line-height: 1.35;
    }

    .tabuk-explore-hero-desc {
        font-size: 13.5px;
        line-height: 1.6;
    }

    .explore-products-topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .explore-area-title {
        font-size: 19px;
        text-align: center;
    }

    .explore-sort-select {
        width: 100%;
        text-align: center;
    }

    .explore-price-inputs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .explore-price-inputs input[type="number"] {
        flex: 1;
        min-width: 80px;
    }

    .explore-apply-price {
        width: 100%;
        margin-top: 6px;
        text-align: center;
        padding: 10px 0;
    }
}

@media screen and (max-width: 640px) {
    .explore-main-container {
        grid-template-columns: 1fr !important;
        padding: 0 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .explore-sidebar-filters,
    .explore-products-area {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .explore-products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .explore-product-card {
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 18px !important;
        border-radius: 28px !important;
        height: 449px !important;
    }

    .explore-card-img-box {
        height: 245px !important;
    }

    .single-product-gallery-grid {
        grid-template-columns: 1fr !important;
    }
}

/* CITY LIVE AUTOCOMPLETE SUGGESTIONS POPUP */
.explore-city-suggestions-box {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    z-index: 99;
    max-height: 200px;
    overflow-y: auto;
}

.city-suggestion-item {
    padding: 10px 14px;
    font-size: 13.5px;
    color: #334155;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.city-suggestion-item:hover {
    background-color: #f1f5f9;
    color: #0f172a;
    font-weight: 600;
}

/* SINGLE PRODUCT PAGE STYLES */
@media screen and (max-width: 992px) {
    .single-product-main-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }
    .single-product-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .single-product-floating-card {
        width: 95% !important;
        padding: 25px 20px !important;
    }
}

@media screen and (max-width: 640px) {
    .single-product-gallery-grid {
        grid-template-columns: 1fr !important;
    }
}

@media screen and (max-width: 991px) {
    .header-container {
        padding: 12px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .site-branding img {
        max-height: 44px !important;
    }

    /* Show hamburger toggle button */
    .menu-toggle {
        display: flex !important;
        background: none;
        border: none;
        padding: 6px;
        cursor: pointer;
        outline: none;
        z-index: 1001;
        flex-direction: column;
        gap: 4px;
    }

    .menu-toggle .icon-bar {
        display: block;
        width: 22px;
        height: 2.5px;
        background-color: #0f172a;
        margin: 2px 0;
        border-radius: 4px;
    }

    /* Hide desktop navigation list on mobile */
    .main-navigation ul {
        display: none !important;
    }

    /* Action items spacing */
    .header-action-items {
        gap: 8px;
    }

    .header-lang-switcher .lang-item {
        padding: 6px 10px;
        font-size: 13px;
        font-weight: 700;
        color: #0f172a !important;
    }
}

/* ================================================================
   MOBILE OFF-CANVAS SLIDE-OUT DRAWER (PURE LIGHT DESIGN)
   ================================================================ */
.tabuk-mobile-drawer {
    position: fixed;
    top: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff !important;
    z-index: 99999;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* LTR Default: slide from left */
html[dir="ltr"] .tabuk-mobile-drawer,
body:not(.rtl) .tabuk-mobile-drawer {
    left: 0;
    transform: translateX(-100%);
}
html[dir="ltr"] .tabuk-mobile-drawer.active,
body:not(.rtl) .tabuk-mobile-drawer.active {
    transform: translateX(0);
}

/* RTL (Arabic): slide from right */
html[dir="rtl"] .tabuk-mobile-drawer,
body.rtl .tabuk-mobile-drawer {
    right: 0;
    transform: translateX(100%);
}
html[dir="rtl"] .tabuk-mobile-drawer.active,
body.rtl .tabuk-mobile-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
}

.mobile-drawer-close {
    background: #f1f5f9;
    color: #0f172a;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.mobile-drawer-close:hover {
    background: #e2e8f0;
}

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

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

.tabuk-mobile-menu-list li a {
    color: #1e293b !important;
    font-size: 15.5px;
    font-weight: 700;
    padding: 12px 20px;
    display: block;
    border-radius: 12px;
    background: #f8fafc;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tabuk-mobile-menu-list li a:hover,
.tabuk-mobile-menu-list li.current-menu-item a,
.tabuk-mobile-menu-list li.current_page_item a {
    background: #000000 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* Backdrop Overlay */
.tabuk-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(3px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tabuk-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================================================================
   BLOG PAGE & PAGINATION STYLES
   ================================================================ */
.tabuk-blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

.tabuk-blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 50px;
    background: #ffffff;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

.tabuk-blog-pagination .page-numbers:hover,
.tabuk-blog-pagination .page-numbers.current {
    background: #000000;
    color: #ffffff !important;
    border-color: #000000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

@media screen and (max-width: 991px) {
    .tabuk-blog-featured-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .blog-featured-img-box {
        height: 240px !important;
    }
    .tabuk-blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 640px) {
    .tabuk-blog-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ================================================================
   SINGLE BLOG POST CONTENT STYLES (FIGMA SPEC)
   ================================================================ */
.single-post-body img,
.single-post-body .wp-block-image img,
.single-post-article .entry-content img {
    border-radius: 28px !important;
    width: 100% !important;
    height: auto !important;
    max-height: 580px !important;
    object-fit: cover !important;
    display: block !important;
    margin: 35px 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.single-post-body h2,
.single-post-body h3,
.single-post-body h4 {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-top: 40px !important;
    margin-bottom: 18px !important;
    line-height: 1.35 !important;
}

.single-post-body,
.single-post-body p,
.single-post-body h1,
.single-post-body h2,
.single-post-body h3,
.single-post-body h4,
.single-post-body div,
.entry-content,
.news-featured-content,
.news-featured-title,
.news-featured-excerpt,
.tabuk-news-card,
.news-card-title {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.single-post-body p {
    font-size: 16px !important;
    color: #334155 !important;
    line-height: 1.85 !important;
    margin-bottom: 24px !important;
}

@media screen and (max-width: 768px) {
    .single-post-hero-card {
        height: 320px !important;
    }
/* ================================================================
   LOGIN PAGE STYLES (FIGMA SPEC)
   ================================================================ */
.woocommerce-account,
.woocommerce-account #page,
.woocommerce-account main,
.woocommerce-account .site-main,
.tabuk-login-page-wrapper {
    background-color: #ffffff !important;
}

html[dir="rtl"] .close-login-btn,
body.rtl .close-login-btn {
    right: auto !important;
    left: 25px !important;
}

html[dir="rtl"] .login-pill-input-box,
body.rtl .login-pill-input-box {
    padding: 4px 20px 4px 6px !important;
}

html[dir="rtl"] .woocommerce-form-login,
body.rtl .woocommerce-form-login {
    text-align: right !important;
}

.tabuk-login-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tabuk-login-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12) !important;
}

.tabuk-login-submit-btn:hover {
    background: #1e293b !important;
}







