/* :root {
    --bzx-primary-red: red;
    --bzx-dark-navy: #000000;
    --bzx-light-gray: #f8f9fa;
    --bzx-white: #ffffff;
    --bzx-gradient: linear-gradient(135deg, var(--bzx-primary-red), var(--bzx-dark-navy));
} */

* {
    font-family: 'Cairo', sans-serif;
}

.bzx-body {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    min-height: 100vh;
}

/* Navigation */
.bzx-navbar {
    background: var(--bzx-white) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.bzx-navbar-brand {
    font-weight: 700;
    font-size: 24px;
    background: var(--bzx-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bzx-nav-link {
    color: var(--bzx-dark-navy) !important;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.bzx-nav-link:hover {
    color: var(--bzx-primary-red) !important;
    transform: translateY(-2px);
}

.bzx-btn-custom {
    background: var(--bzx-gradient);
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    color: var(--bzx-white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.bzx-btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(178, 34, 34, 0.3);
    color: var(--bzx-white);
}

/* Hero Section */
.bzx-hero-section {
    background: var(--bzx-gradient);
    color: var(--bzx-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.bzx-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.bzx-hero-content {
    position: relative;
    z-index: 2;
}

.bzx-search-container {
    background: var(--bzx-white);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 30px auto;
}

.bzx-search-input {
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    border-radius: 50px;
}

.bzx-search-btn {
    background: var(--bzx-gradient);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    color: var(--bzx-white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.bzx-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(178, 34, 34, 0.3);
}

/* Stats Section */
.bzx-stats-card {
    background: var(--bzx-white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.bzx-stats-card:hover {
    transform: translateY(-5px);
}

.bzx-stats-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--bzx-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Categories Section */
.bzx-section-title {
    color: var(--bzx-dark-navy);
    font-weight: 700;
    position: relative;
    margin-bottom: 50px;
}

.bzx-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--bzx-gradient);
    border-radius: 2px;
}

.bzx-category-card {
    background: var(--bzx-white);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bzx-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.bzx-category-card:hover::before {
    left: 100%;
}

.bzx-category-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--bzx-primary-red);
    box-shadow: 0 20px 40px rgba(178, 34, 34, 0.2);
}

.bzx-category-icon {
    width: 80px;
    height: 80px;
    background: var(--bzx-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: var(--bzx-white);
    transition: all 0.3s ease;
}

.bzx-category-card:hover .bzx-category-icon {
    transform: rotate(360deg) scale(1.1);
}

/* Ads Section */
.bzx-filter-btn {
    background: var(--bzx-white);
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 8px 20px;
    margin: 5px;
    transition: all 0.3s ease;
    color: var(--bzx-dark-navy);
    font-weight: 500;
}

.bzx-filter-btn:hover, .bzx-filter-btn.bzx-active {
    background: var(--bzx-gradient);
    color: var(--bzx-white);
    border-color: var(--bzx-primary-red);
    transform: translateY(-2px);
}

.bzx-ad-card {
    background: var(--bzx-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.bzx-ad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--bzx-primary-red);
}

.bzx-ad-image {
    height: 200px;
    background: linear-gradient(45deg, #ddd, #f0f0f0);
    position: relative;
    overflow: hidden;
}

.bzx-ad-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bzx-primary-red);
    color: var(--bzx-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.bzx-featured-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: var(--bzx-dark-navy);
    font-weight: 700;
}

.bzx-ad-price {
    color: var(--bzx-primary-red);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bzx-ad-title {
    color: var(--bzx-dark-navy);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.bzx-ad-meta {
    color: #6c757d;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Testimonials Section */
.bzx-testimonial-card {
    background: var(--bzx-white);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
}

.bzx-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--bzx-primary-red);
}

.bzx-testimonial-rating {
    color: #ffc107;
}

/* How It Works Section */
.bzx-how-it-works-card {
    background: var(--bzx-white);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
    text-align: center;
}

.bzx-how-it-works-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--bzx-primary-red);
}

.bzx-step-number {
    width: 40px;
    height: 40px;
    background: var(--bzx-gradient);
    color: var(--bzx-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 20px;
}

.bzx-step-icon {
    color: var(--bzx-primary-red);
    font-size: 40px;
    margin-bottom: 15px;
}

/* Premium Features Section */
.bzx-premium-card {
    background: var(--bzx-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa, #e4e8eb);
}

.bzx-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.bzx-price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.bzx-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--bzx-primary-red);
}

.bzx-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--bzx-dark-navy);
}

.bzx-period {
    color: #6c757d;
    align-self: flex-end;
}

.bzx-feature-item {
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.bzx-feature-item:hover {
    background: rgba(178, 34, 34, 0.05);
}

.bzx-feature-icon {
    font-size: 24px;
    margin-left: 15px;
    color: var(--bzx-primary-red);
}

/* Mobile App Section */
.bzx-app-section {
    position: relative;
    overflow: hidden;
}

.bzx-app-image-container {
    position: relative;
    z-index: 1;
}

.bzx-app-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--bzx-gradient);
    z-index: -1;
    border-radius: 30px;
    opacity: 0.7;
}

.bzx-app-image {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    max-width: 100%;
    height: auto;
}

.bzx-app-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.bzx-app-feature-icon {
    font-size: 24px;
    margin-left: 15px;
    color: var(--bzx-primary-red);
}

.bzx-app-download-btn {
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: 600;
    margin: 10px;
}

/* Cities Section */
.bzx-city-card {
    transition: all 0.3s ease;
    text-align: center;
}

.bzx-city-card:hover {
    transform: scale(1.05);
}

.bzx-city-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--bzx-white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
.bzx-footer {
    background: var(--bzx-dark-navy);
    color: var(--bzx-white);
    padding: 60px 0 30px;
}

.bzx-footer-links {
    list-style: none;
    padding: 0;
}

.bzx-footer-links li {
    margin-bottom: 10px;
}

.bzx-footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.bzx-footer-links a:hover {
    color: var(--bzx-white);
    padding-right: 5px;
}

.bzx-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.bzx-social-icon:hover {
    background: var(--bzx-primary-red);
    transform: translateY(-3px);
}

/* Floating Buttons */
.bzx-floating-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.bzx-floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bzx-gradient);
    color: var(--bzx-white);
    border: none;
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(178, 34, 34, 0.3);
}

.bzx-floating-btn:hover {
    transform: scale(1.1);
    color: var(--bzx-white);
}

/* Animations */
@keyframes bzx-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bzx-fade-in-up {
    opacity: 0;
    animation: bzx-fadeInUp 0.6s ease forwards;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bzx-hero-section {
        padding: 50px 0;
    }
    
    .bzx-category-card {
        margin-bottom: 20px;
    }
    
    .bzx-floating-container {
        bottom: 20px;
        left: 20px;
    }
    
    .bzx-app-image-container::before {
        top: -10px;
        right: -10px;
    }
}

    /* Enhanced Features Section Styles */
    .bzx-features-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
    }
    
    .bzx-features-section::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: var(--bzx-primary-red);
        opacity: 0.1;
        border-radius: 50%;
        z-index: 0;
    }
    
    .bzx-features-section::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: var(--bzx-dark-navy);
        opacity: 0.1;
        border-radius: 50%;
        z-index: 0;
    }
    
    .bzx-feature-card {
        background: white;
        border-radius: 12px;
        padding: 30px 25px;
        height: 100%;
        position: relative;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(178, 34, 34, 0.05);
        z-index: 1;
    }
    
    .bzx-feature-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 25px rgba(178, 34, 34, 0.08);
        border-color: rgba(178, 34, 34, 0.2);
    }
    
    .bzx-feature-icon-container {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        position: relative;
    }
    
    .bzx-feature-icon {
        width: 100%;
        height: 100%;
        background: var(--bzx-gradient);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 28px;
        transition: all 0.3s ease;
        transform: rotate(0deg);
    }
    
    .bzx-feature-card:hover .bzx-feature-icon {
        transform: rotate(10deg) scale(1.1);
        border-radius: 12px;
    }
    
    .bzx-feature-title {
        color: var(--bzx-dark-navy);
        font-weight: 700;
        margin-bottom: 15px;
        text-align: center;
        font-size: 1.25rem;
    }
    
    .bzx-feature-desc {
        color: #6c757d;
        text-align: center;
        margin-bottom: 20px;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .bzx-feature-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--bzx-primary-red);
        color: white;
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 11px;
        font-weight: 600;
        z-index: 2;
    }
    
    .bzx-wave-shape {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--bzx-primary-red), var(--bzx-dark-navy));
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .bzx-feature-card:hover .bzx-wave-shape {
        opacity: 1;
        height: 4px;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .bzx-feature-card {
            padding: 25px 20px;
        }
        
        .bzx-feature-icon-container {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
        }
        
        .bzx-feature-title {
            font-size: 1.15rem;
        }
    }
    
    @media (max-width: 768px) {
        .bzx-features-section::before,
        .bzx-features-section::after {
            display: none;
        }
        
        .bzx-feature-card {
            padding: 20px 15px;
        }
    }

    /* Naiosh Hero Custom Styles with Gradient */
    .bzx-naiosh-hero {
        position: relative;
        overflow: hidden;
        padding: 120px 0 80px;
        background: var(--bzx-dark-navy); /* Fallback color */
    }
    
    .bzx-hero-gradient {
        position: absolute;
        top: 0;
        right: 0; /* Start from right (RTL) */
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            var(--bzx-primary-red) 0%, 
            var(--bzx-dark-navy) 70%);
        z-index: 0;
        opacity: 0.9;
    }
    
    .bzx-hero-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    .bzx-naiosh-hero .container {
        position: relative;
        z-index: 2;
    }
    
    .bzx-highlight-word {
        background: linear-gradient(90deg, #ffffff, #f10606);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        padding: 0 5px;
    }
    
    .bzx-hero-image-container {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        transform: perspective(1000px) rotateY(-5deg);
        transition: all 0.5s ease;
        border: 2px solid rgba(255,255,255,0.1);
    }
    
    .bzx-hero-image-container:hover {
        transform: perspective(1000px) rotateY(0deg);
        box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    }
    
    .bzx-hero-image {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }
    
    .bzx-image-badge {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: rgba(255,255,255,0.9);
        color: var(--bzx-dark-navy);
        padding: 10px 15px;
        border-radius: 30px;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .bzx-image-badge i {
        color: var(--bzx-primary-red);
        margin-left: 5px;
    }
    
    .bzx-stats-row {
        display: flex;
        gap: 30px;
        margin-top: 30px;
    }
    
    .bzx-stat-item {
        text-align: center;
    }
    
    .bzx-stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        line-height: 1;
        margin-bottom: 5px;
        text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    
    .bzx-stat-label {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.9);
    }
    
    .bzx-scroll-down {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }
    
    .bzx-scroll-link {
        display: block;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        color: white;
        text-align: center;
        line-height: 50px;
        font-size: 1.2rem;
        animation: bounce 2s infinite;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255,255,255,0.3);
    }
    
    .bzx-scroll-link:hover {
        background: var(--bzx-primary-red);
        color: white;
        transform: translateY(-5px);
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-15px);
        }
        60% {
            transform: translateY(-7px);
        }
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .bzx-naiosh-hero {
            padding: 100px 0 60px;
            background: linear-gradient(135deg, var(--bzx-primary-red), var(--bzx-dark-navy));
        }
        
        .bzx-hero-gradient {
            display: none;
        }
        
        .bzx-hero-image-container {
            margin-top: 40px;
            transform: none;
        }
        
        .bzx-stats-row {
            justify-content: center;
            gap: 20px;
        }
        
        /* .bzx-highlight-word {
            background: white;
            -webkit-text-fill-color: initial;
            background-clip: initial;
        } */
    }


        /* أنماط قسم احجز جولة */
    .bzx-book-tour {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
    }
    
    .bzx-tour-image-container {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        height: 100%;
    }
    
    .bzx-tour-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .bzx-image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(27, 41, 81, 0.8) 0%, transparent 50%);
    }
    
    .bzx-tour-features {
        position: absolute;
        bottom: 30px;
        right: 30px;
        left: 30px;
        z-index: 2;
    }
    
    .bzx-tour-feature {
        color: white;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        font-size: 1.05rem;
    }
    
    .bzx-tour-feature i {
        margin-left: 10px;
        font-size: 1.2rem;
        color: var(--bzx-primary-red);
    }
    
    .bzx-tour-form-container {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    
    .bzx-tour-form .form-floating {
        margin-bottom: 20px;
    }
    
    .bzx-tour-form .form-control,
    .bzx-tour-form .form-select {
        border-radius: 12px;
        padding: 16px 20px;
        border: 1px solid rgba(178, 34, 34, 0.2);
        transition: all 0.3s ease;
    }
    
    .bzx-tour-form .form-control:focus,
    .bzx-tour-form .form-select:focus {
        border-color: var(--bzx-primary-red);
        box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.1);
    }
    
    /* التكيف مع الأجهزة المحمولة */
    @media (max-width: 992px) {
        .bzx-tour-form-container {
            padding: 30px;
        }
        
        .bzx-tour-features {
            bottom: 20px;
            right: 20px;
            left: 20px;
        }
    }
    
    @media (max-width: 768px) {
        .bzx-tour-form-container {
            padding: 25px 20px;
        }
        
        .bzx-tour-feature {
            font-size: 0.9rem;
        }
    }

    /* أنماط قسم المساحات */
    .bzx-spaces-section {
        background-color: #ffffff;
        position: relative;
        overflow: hidden;
    }
    
    .bzx-spaces-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .bzx-space-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: all 0.4s ease;
        height: 100%;
        border: 1px solid rgba(178, 34, 34, 0.1);
    }
    
    .bzx-space-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(178, 34, 34, 0.1);
        border-color: rgba(178, 34, 34, 0.3);
    }
    
    .bzx-space-img-container {
        position: relative;
        height: 220px;
        overflow: hidden;
    }
    
    .bzx-space-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .bzx-space-card:hover .bzx-space-img {
        transform: scale(1.05);
    }
    
    .bzx-space-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--bzx-primary-red);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        z-index: 2;
    }
    
    .bzx-space-content {
        padding: 25px;
    }
    
    .bzx-space-title {
        color: var(--bzx-dark-navy);
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 1.3rem;
    }
    
    .bzx-space-desc {
        color: #6c757d;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }
    
    .bzx-space-features {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .bzx-feature {
        display: flex;
        align-items: center;
        font-size: 0.9rem;
        color: #555;
    }
    
    .bzx-feature i {
        color: var(--bzx-primary-red);
        margin-left: 5px;
        font-size: 0.9rem;
    }
    
    .bzx-space-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px dashed #eee;
    }
    
    .bzx-space-price {
        font-weight: 700;
        color: var(--bzx-primary-red);
        font-size: 1.1rem;
    }
    
    .bzx-space-btn {
        background: var(--bzx-gradient);
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .bzx-space-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(178, 34, 34, 0.3);
    }
    
    .bzx-btn-outline {
        border: 2px solid var(--bzx-primary-red);
        color: var(--bzx-primary-red);
        background: transparent;
        padding: 10px 30px;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .bzx-btn-outline:hover {
        background: var(--bzx-primary-red);
        color: white;
    }
    
    /* فلتر المساحات */
    .bzx-filter-btn {
        background: white;
        border: 2px solid #eee;
        border-radius: 30px;
        padding: 8px 20px;
        font-weight: 600;
        color: #555;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .bzx-filter-btn.active, 
    .bzx-filter-btn:hover {
        background: var(--bzx-gradient);
        color: white;
        border-color: var(--bzx-primary-red);
    }
    
    /* التكيف مع الأجهزة المحمولة */
    @media (max-width: 768px) {
        .bzx-space-img-container {
            height: 180px;
        }
        
        .bzx-space-content {
            padding: 20px;
        }
        
        .bzx-spaces-filter {
            gap: 8px;
        }
        
        .bzx-filter-btn {
            padding: 6px 15px;
            font-size: 0.9rem;
        }
    }

    /* أنماط قسم المدونة */
    .bzx-blog-section {
        background-color: #f8f9fa;
        position: relative;
        overflow: hidden;
    }
    
    .bzx-blog-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.4s ease;
        height: 100%;
        border: 1px solid rgba(178, 34, 34, 0.05);
    }
    
    .bzx-blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(178, 34, 34, 0.1);
    }
    
    .bzx-blog-img-container {
        position: relative;
        height: 220px;
        overflow: hidden;
    }
    
    .bzx-blog-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .bzx-blog-card:hover .bzx-blog-img {
        transform: scale(1.05);
    }
    
    .bzx-blog-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--bzx-primary-red);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        z-index: 2;
    }
    
    .bzx-blog-content {
        padding: 25px;
    }
    
    .bzx-blog-meta {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        font-size: 0.85rem;
    }
    
    .bzx-blog-category {
        color: var(--bzx-primary-red);
        font-weight: 600;
    }
    
    .bzx-blog-date {
        color: #6c757d;
    }
    
    .bzx-blog-title {
        color: var(--bzx-dark-navy);
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    .bzx-blog-excerpt {
        color: #6c757d;
        margin-bottom: 20px;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .bzx-blog-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px dashed #eee;
    }
    
    .bzx-blog-link {
        color: var(--bzx-primary-red);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .bzx-blog-link:hover {
        color: var(--bzx-dark-navy);
        padding-right: 5px;
    }
    
    .bzx-blog-duration {
        color: #6c757d;
        font-size: 0.85rem;
    }
    
    /* ترقيم الصفحات */
    .bzx-pagination {
        display: flex;
        gap: 5px;
    }
    
    .bzx-page-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .bzx-page-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        color: #555;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .bzx-page-item.active .bzx-page-link,
    .bzx-page-link:hover {
        background: var(--bzx-gradient);
        color: white;
    }
    
    .bzx-page-item.disabled .bzx-page-link {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    /* التكيف مع الأجهزة المحمولة */
    @media (max-width: 768px) {
        .bzx-blog-img-container {
            height: 180px;
        }
        
        .bzx-blog-content {
            padding: 20px;
        }
        
        .bzx-blog-title {
            font-size: 1.1rem;
        }
        
        .bzx-blog-excerpt {
            font-size: 0.9rem;
        }
    }
    /* أنماط حالة عدم وجود مقالات */
    .bzx-empty-state {
        background: rgba(248, 249, 250, 0.5);
        border-radius: 20px;
        padding: 50px 20px;
        margin-top: 30px;
        border: 2px dashed rgba(178, 34, 34, 0.2);
    }
    
    .bzx-empty-icon {
        color: rgba(178, 34, 34, 0.3);
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-15px);
        }
        60% {
            transform: translateY(-7px);
        }
    }

    /* أنماط صفحة المقال الواحد */
    .breadcrumb {
        padding: 0.75rem 1rem;
        margin-bottom: 0;
        background-color: transparent;
    }
    
    .breadcrumb-item a {
        color: var(--bzx-primary-red);
        text-decoration: none;
    }
    
    .breadcrumb-item.active {
        color: var(--bzx-dark-navy);
    }
    
    .bzx-article-title {
        font-size: 2.5rem;
        color: var(--bzx-dark-navy);
        line-height: 1.3;
    }
    
    .bzx-article-meta {
        font-size: 0.9rem;
    }
    
    .bzx-article-content {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #444;
    }
    
    .bzx-article-content h3 {
        color: var(--bzx-dark-navy);
        margin-top: 2rem;
        font-weight: 700;
    }
    
    .bzx-blockquote {
        font-style: italic;
        font-size: 1.2rem;
    }
    
    .bzx-key-points {
        border-right: 4px solid var(--bzx-primary-red);
    }
    
    .bzx-key-points ul {
        padding-right: 1rem;
    }
    
    .bzx-key-points li {
        padding-right: 0.5rem;
    }
    
    .bzx-author-bio {
        border: 1px solid rgba(178, 34, 34, 0.1);
    }
    
    .bzx-comment {
        padding: 1.5rem;
        background-color: #f9f9f9;
        border-radius: 0.5rem;
    }
    
    @media (max-width: 768px) {
        .bzx-article-title {
            font-size: 1.8rem;
        }
        
        .bzx-article-content {
            font-size: 1rem;
        }
        
        .bzx-article-actions {
            flex-direction: column;
            gap: 1rem;
        }
        
        .bzx-author-bio .d-flex {
            flex-direction: column;
            text-align: center;
        }
        
        .bzx-author-bio .me-4 {
            margin-right: 0 !important;
            margin-bottom: 1rem;
        }
    }
    /* أنماط قسم الفروع */
    .bzx-branches-section {
        background-color: #f8f9fa;
    }
    
    .bzx-branches-filter-container {
        background: white;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .bzx-search-box {
        position: relative;
    }
    
    .bzx-search-box i {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #6c757d;
    }
    
    .bzx-search-box .form-control {
        padding-right: 45px;
        border-radius: 10px;
        border: 1px solid rgba(178, 34, 34, 0.2);
    }
    
    .bzx-search-box .form-control:focus {
        border-color: var(--bzx-primary-red);
        box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.1);
    }
    
    .bzx-sort-filter {
        border-radius: 10px;
        border: 1px solid rgba(178, 34, 34, 0.2);
    }
    
    .bzx-sort-filter:focus {
        border-color: var(--bzx-primary-red);
        box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.1);
    }
    
    .bzx-branch-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: all 0.4s ease;
        height: 100%;
        border: 1px solid rgba(178, 34, 34, 0.1);
    }
    
    .bzx-branch-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(178, 34, 34, 0.1);
        border-color: rgba(178, 34, 34, 0.3);
    }
    
    .bzx-branch-header {
        position: relative;
        padding: 25px 25px 15px;
        text-align: center;
        background: linear-gradient(135deg, #f5f7fa, #e4e8eb);
    }
    
    .bzx-country-flag {
        position: relative;
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border: 3px solid white;
    }
    
    .bzx-flag-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 2;
    }
    
    .bzx-flag-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: blur(5px) opacity(0.2);
        z-index: 1;
    }
    
    .bzx-branch-country {
        color: var(--bzx-dark-navy);
        font-weight: 700;
        margin-bottom: 0;
        font-size: 1.3rem;
    }
    
    .bzx-branch-content {
        padding: 25px;
    }
    
    .bzx-branch-info {
        margin-bottom: 20px;
    }
    
    .bzx-branch-detail {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        font-size: 0.95rem;
        color: #555;
    }
    
    .bzx-branch-detail i {
        color: var(--bzx-primary-red);
        margin-left: 10px;
        width: 20px;
        text-align: center;
    }
    
    .bzx-branch-features {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .bzx-feature-badge {
        background: rgba(178, 34, 34, 0.1);
        color: var(--bzx-primary-red);
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .bzx-branch-footer {
        display: flex;
        gap: 10px;
    }
    
    .bzx-branch-btn {
        flex: 1;
        background: var(--bzx-gradient);
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 30px;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
    
    .bzx-branch-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(178, 34, 34, 0.3);
        color: white;
    }
    
    .bzx-no-results {
        display: none;
    }
    
    /* التكيف مع الأجهزة المحمولة */
    @media (max-width: 768px) {
        .bzx-branches-filter-container {
            padding: 15px;
        }
        
        .bzx-branch-header {
            padding: 20px 20px 10px;
        }
        
        .bzx-country-flag {
            width: 70px;
            height: 70px;
        }
        
        .bzx-branch-content {
            padding: 20px;
        }
        
        .bzx-branch-footer {
            flex-direction: column;
        }
    }
