/* Premium Car Cards Styling */
.premium-car-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 500px;
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.premium-car-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(var(--primary-color-rgb), 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Car Image Container */
.car-image-container {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.car-image-link {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
    border-radius: 12px;
}

.premium-car-card:hover .car-image {
    transform: scale(1.1);
}

.car-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    color: #64748b;
    border-radius: 12px;
}

.car-image-placeholder i {
    font-size: 3.5rem;
    opacity: 0.6;
}

/* Car Overlay */
.car-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.2) 100%
    );
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    pointer-events: none;
}

.featured-tag {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 20px rgba(var(--secondary-color-rgb), 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(var(--primary-color-rgb), 0.3);
}

.price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 2px;
    display: block;
}

/* Car Details */
.car-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: calc(100% - 260px);
    min-height: 240px;
    flex: 1;
}

.car-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.car-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

.car-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.car-name a:hover {
    color: var(--primary-color);
}

.car-location {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-location i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Car Specifications */
.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.spec-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #475569;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
}

.spec-item:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.spec-item:hover i {
    color: var(--white);
}

.spec-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Car Bottom Section */
.car-bottom {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: var(--ratting-color);
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.btn-view-details {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-view-details:hover {
    background: var(--primary-color);
    color: var(--white);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.3);
}

.btn-view-details i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-view-details:hover i {
    transform: translateX(3px);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .premium-car-card {
        height: auto;
        min-height: 450px;
        margin: 10px; /* Increased margin for better spacing */
    }
    
    .car-image-container {
        height: 220px;
        padding: 10px;
    }
    
    .car-details {
        padding: 20px;
        gap: 16px;
    }
    
    .car-name {
        font-size: 1.2rem;
    }
    
    .spec-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .car-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .btn-view-details {
        text-align: center;
        justify-content: center;
    }
    
    /* Ensure overlay elements are not cut off on mobile */
    .car-overlay {
        padding: 15px; /* Reduced padding to fit better on smaller screens */
    }
    
    .featured-tag {
        padding: 6px 12px; /* Slightly smaller for mobile */
        font-size: 0.75rem;
    }
    
    .price-tag {
        padding: 10px 16px; /* Adjusted for mobile */
    }
    
    .price {
        font-size: 1.1rem; /* Slightly smaller for mobile */
    }
}

/* Swiper Adjustments for Mobile */
.cars-mobile-swiper .swiper-slide,
.bikes-mobile-swiper .swiper-slide {
    padding: 5px 15px 15px 15px; /* Minimal top padding for tighter spacing */
}

.cars-mobile-swiper .premium-car-card,
.bikes-mobile-swiper .premium-car-card {
    margin: 0;
    width: 100%;
}

/* Mobile Swiper Container Adjustments */
.cars-mobile-swiper,
.bikes-mobile-swiper {
    padding-top: 5px !important; /* Minimal top padding to close gap with title */
    overflow: visible !important; /* Ensure content is not clipped */
}

.cars-slider-wrapper,
.bikes-slider-wrapper {
    padding-top: 10px; /* Extra padding for the wrapper */
    margin-top: 20px; /* Additional margin for breathing room */
}

/* Mobile Section Adjustments */
@media (max-width: 768px) {
    .package-area.section-padding2 {
        padding-top: 60px !important; /* Increased top padding for mobile sections */
    }
    
    /* Reduce gap between title and cars on mobile */
    .package-area .section-title {
        margin-bottom: 10px !important; /* Further reduced margin */
    }
    
    .package-area .row.justify-content-center {
        margin-bottom: 5px !important; /* Minimal spacing after title row */
    }
    
    .cars-slider-wrapper,
    .bikes-slider-wrapper {
        margin-top: 15px; /* Reduced margin on mobile */
        padding-top: 5px; /* Minimal padding */
    }
}

/* Cars & Bikes Pagination Styling */
.cars-pagination,
.bikes-pagination {
    margin-top: 30px !important;
    position: relative !important;
}

.cars-pagination .swiper-pagination-bullet,
.bikes-pagination .swiper-pagination-bullet {
    background: #e2e8f0;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.cars-pagination .swiper-pagination-bullet-active,
.bikes-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Dark theme support */
[data-theme="dark"] .premium-car-card {
    background: #1e293b;
    border-color: #334155;
}

[data-theme="dark"] .car-name {
    color: #f1f5f9;
}

[data-theme="dark"] .car-location {
    color: #94a3b8;
}

[data-theme="dark"] .spec-item {
    background: #334155;
    border-color: #475569;
    color: #cbd5e1;
}

[data-theme="dark"] .spec-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

[data-theme="dark"] .car-bottom {
    border-color: #334155;
}

[data-theme="dark"] .rating-text {
    color: #94a3b8;
}

/* Boost Sale Price Tag - Clean Flashy Design */
.boost-price-tag {
    background: linear-gradient(135deg, #dc2626, #ef4444, #dc2626) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 3s ease-in-out infinite, pulse 2s ease-in-out infinite !important;
    border: 2px solid #fff !important;
    box-shadow: 
        0 0 20px rgba(220, 38, 38, 0.6),
        0 0 40px rgba(220, 38, 38, 0.4),
        0 8px 32px rgba(220, 38, 38, 0.3) !important;
    z-index: 10 !important;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(220, 38, 38, 0.6),
            0 0 40px rgba(220, 38, 38, 0.4),
            0 8px 32px rgba(220, 38, 38, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(220, 38, 38, 0.8),
            0 0 60px rgba(220, 38, 38, 0.6),
            0 12px 48px rgba(220, 38, 38, 0.5);
    }
}

.boost-price-tag:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #dc2626, #ef4444, #fca5a5, #dc2626);
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: rainbowBorder 4s ease-in-out infinite;
}

@keyframes rainbowBorder {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.boost-price-tag .price {
    animation: textGlow 2s ease-in-out infinite alternate !important;
    font-weight: 700 !important;
}

@keyframes textGlow {
    from { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6); }
}

.boost-price-tag .original-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.85em;
    margin-right: 5px;
}

/* Responsive adjustments for boost sale */
@media (max-width: 768px) {
    .boost-price-tag:before {
        animation-duration: 5s;
    }
    
    .boost-price-tag .price {
        font-size: 1.1rem;
    }
    
    .boost-price-tag .original-price {
        font-size: 0.75rem;
    }
}

/* ==================================
   BIKE INDEX PAGE SPECIFIC STYLES
   ================================== */

/* Premium Bike Card - Index Page Overrides */
.premium-bike-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 100%;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.premium-bike-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(var(--primary-color-rgb), 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Bike Image Container - Index Page */
.bike-image-container {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.bike-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
}

.premium-bike-card:hover .bike-image {
    transform: scale(1.1);
}

.bike-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    color: #64748b;
}

.bike-image-placeholder i {
    font-size: 3.5rem;
    opacity: 0.6;
}

/* Bike Overlay - Index Page */
.bike-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.2) 100%
    );
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    pointer-events: none;
}

/* Bike Details - Index Page */
.bike-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: calc(100% - 260px);
    min-height: 240px;
}

.bike-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bike-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-title);
    margin: 0;
    line-height: 1.3;
}

.bike-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bike-name a:hover {
    color: var(--primary-color);
}

.bike-brand {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.bike-brand i {
    color: var(--primary-color);
    font-size: 1rem;
}

.bike-location {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bike-location i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Bike Specifications - Index Page */
.bike-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bike-specs .spec-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #475569;
    transition: all 0.3s ease;
}

.bike-specs .spec-item:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.bike-specs .spec-item i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.bike-specs .spec-item:hover i {
    color: var(--white);
}

/* Bike Bottom Section - Index Page */
.bike-bottom {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.book-now-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 16px rgba(var(--primary-color-rgb), 0.2);
}

.book-now-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.3);
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
}

.book-now-btn i {
    transition: transform 0.3s ease;
}

.book-now-btn:hover i {
    transform: translateX(4px);
}

/* Layout Improvements - Index Page */
.showing-result .title {
    color: var(--primary-title);
    font-weight: 600;
    margin: 0;
}

.sorting-dropdown select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

/* Pagination Styling - Index Page */
.pagination .page-link:hover {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 3;
}

/* Index Page Responsive Design */
@media (max-width: 768px) {
    .bike-image-container {
        height: 200px;
        padding: 15px;
    }
    
    .bike-details {
        padding: 20px;
        gap: 16px;
        min-height: 200px;
    }
    
    .bike-name {
        font-size: 1.1rem;
    }
    
    .bike-specs {
        gap: 8px;
    }
    
    .bike-specs .spec-item {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .bike-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .book-now-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 576px) {
    .premium-bike-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .bike-overlay {
        padding: 16px;
    }
    
    .bike-image-container {
        padding: 12px;
    }
}

/* ==================================
   CAR INDEX PAGE SPECIFIC STYLES
   ================================== */

/* Premium Car Card - Index Page Overrides */
.premium-car-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 100%;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.premium-car-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(var(--primary-color-rgb), 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Car Image Container - Index Page */
.car-image-container {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.car-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
}

.premium-car-card:hover .car-image {
    transform: scale(1.1);
}

.car-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    color: #64748b;
}

.car-image-placeholder i {
    font-size: 3.5rem;
    opacity: 0.6;
}

/* Car Overlay - Index Page */
.car-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.2) 100%
    );
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    pointer-events: none;
}

/* Car Details - Index Page */
.car-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: calc(100% - 260px);
    min-height: 240px;
}

.car-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.car-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-title);
    margin: 0;
    line-height: 1.3;
}

.car-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.car-name a:hover {
    color: var(--primary-color);
}

.car-location {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-location i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Car Specifications - Index Page */
.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.car-specs .spec-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #475569;
    transition: all 0.3s ease;
}

.car-specs .spec-item:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.car-specs .spec-item i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.car-specs .spec-item:hover i {
    color: var(--white);
}

/* Car Bottom Section - Index Page */
.car-bottom {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* Layout Improvements - Car Index Page */
.all-tour-list {
    margin-top: 40px;
}

.showing-result {
    background: #f8fafc;
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.showing-result .title {
    color: var(--primary-title);
    font-weight: 600;
    margin: 0;
}

.sorting-dropdown select {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 500;
    color: #475569;
    min-width: 200px;
}

.sorting-dropdown select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

/* Car Index Page Responsive Design */
@media (max-width: 768px) {
    .car-image-container {
        height: 200px;
        padding: 15px;
    }
    
    .car-details {
        padding: 20px;
        gap: 16px;
        min-height: 200px;
    }
    
    .car-name {
        font-size: 1.1rem;
    }
    
    .car-specs {
        gap: 8px;
    }
    
    .car-specs .spec-item {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .car-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
}

@media (max-width: 576px) {
    .premium-car-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .car-overlay {
        padding: 16px;
    }
    
    .car-image-container {
        padding: 12px;
    }
}

/* ==================================
   DESTINATIONS PAGE STYLES
   ================================== */

/* Destination Index Page Styles */
.destination-offer-three {
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.destination-content-offer .highlights {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 1rem;
}

.destination-content-offer .title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.h-calc {
    height: 300px;
    min-height: 300px;
}

@media (min-width: 768px) {
    .h-calc {
        height: 350px;
        min-height: 350px;
    }
}

/* Destination Show Page Styles */
.destination-details-banner {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.swiper.destinationSwiper-active {
    height: 100%;
}

.destinationSwiper-active .swiper-slide {
    height: 400px;
    width: 100%;
}

.destinationSwiper-active .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.single-image {
    height: 400px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.destinationSwiper-active .swiper-button-next,
.destinationSwiper-active .swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.destinationSwiper-active .swiper-button-next:after,
.destinationSwiper-active .swiper-button-prev:after {
    font-size: 16px;
    color: var(--primary-title);
    font-weight: bold;
}

.destinationSwiper-active .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
}

.destinationSwiper-active .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.destination-details-banner .single-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.destination-details-banner .single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-details-content {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.destination-details-info {
    margin-bottom: 2rem;
}

.info-table table th {
    background-color: var(--section-bg-two);
    font-weight: 600;
    width: 30%;
}

.what-to-expect-content ul {
    padding-left: 1.5rem;
}

.what-to-expect-content ul li {
    margin-bottom: 0.5rem;
}

.tour-list-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.package-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-listing .list {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--tertiary-border);
}

.tour-listing .list:last-child {
    border-bottom: none;
}

.package-content {
    flex: 1;
}

.area-name {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.area-name a {
    text-decoration: none;
    color: inherit;
}

.area-name a:hover {
    color: var(--primary-color);
}

.location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--secondary-title);
}

.price-review {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--ratting-color);
}

/* Enhanced Destination Hero Content */
.destination-hero-content {
    margin-bottom: 3rem;
}

.destination-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-title);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.destination-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-title);
    font-size: 0.95rem;
    font-weight: 500;
}

.meta-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.destination-excerpt {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--section-bg-two) 0%, var(--tertiary-border) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.lead-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--primary-paragraph);
    margin: 0;
    font-weight: 400;
}

/* Key Information Grid */
.destination-key-info {
    margin-bottom: 2.5rem;
}

.key-info-item {
    background: var(--white);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid var(--tertiary-border);
    transition: all 0.3s ease;
    height: 100%;
}

.key-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.1);
}

.key-info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.info-label {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary-title);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    color: var(--primary-title);
    font-weight: 700;
}

/* Enhanced Sidebar Styles */
.destination-stats-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--tertiary-border);
}

.stats-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-title);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--section-bg-two);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--section-bg-two);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: var(--tertiary-border);
}

.stat-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.stat-content {
    flex: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--secondary-title);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    font-weight: 600;
}

.stat-value {
    font-size: 0.9rem;
    color: var(--primary-title);
    font-weight: 600;
}

/* Services Available Card */
.services-available-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--tertiary-border);
}

.services-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-title);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--section-bg-two);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--section-bg-two);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: var(--tertiary-border);
    transform: translateX(3px);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trips-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
}

.cars-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-content h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-title);
    margin-bottom: 0.25rem;
}

.service-content p {
    font-size: 0.875rem;
    color: var(--secondary-title);
    margin-bottom: 0.5rem;
}

.service-link {
    font-size: 0.875rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color);
    text-decoration: none;
    transform: translateX(2px);
    opacity: 0.8;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(2px);
}

/* Mobile Responsive - Destinations */
@media (max-width: 768px) {
    .destination-details-banner {
        height: 300px;
    }
    
    .destinationSwiper-active .swiper-slide {
        height: 300px;
    }
    
    .single-image {
        height: 300px;
    }
    
    .destination-main-title {
        font-size: 2rem;
    }

    .destination-meta {
        gap: 1rem;
    }

    .meta-item {
        font-size: 0.875rem;
    }

    .destination-excerpt {
        padding: 1rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .key-info-item {
        padding: 1rem;
    }

    .key-info-item i {
        font-size: 1.5rem;
    }

    .service-item {
        padding: 0.75rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

    .service-icon i {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .destination-details-banner {
        height: 250px;
    }
    
    .destinationSwiper-active .swiper-slide {
        height: 250px;
    }
    
    .single-image {
        height: 250px;
    }
    
    .destination-main-title {
        font-size: 1.75rem;
    }

    .destination-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .key-info-item i {
        font-size: 1.25rem;
    }

    .info-value {
        font-size: 0.9rem;
    }
}

/* ==================================
   PLACES PAGE STYLES
   ================================== */

/* Places Index Page Styles */
.filter-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.results-info {
    background: var(--section-bg-two);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.place-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.15);
}

.place-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.place-card:hover .place-image img {
    transform: scale(1.05);
}

.place-image .featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(var(--secondary-color-rgb), 0.3);
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 8px rgba(var(--primary-color-rgb), 0.3);
}

.rating-badge.rating-empty {
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.place-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.place-header {
    margin-bottom: 1rem;
}

.place-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.place-title a {
    color: inherit;
    text-decoration: none;
}

.place-title a:hover {
    color: var(--primary-color);
}

.category-badge {
    background: var(--section-bg-three);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.place-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-title);
    font-size: 0.9rem;
}

.place-excerpt {
    color: var(--secondary-title);
    margin-bottom: 1rem;
    line-height: 1.5;
    flex: 1;
}

.place-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--tertiary-border);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.place-info {
    flex: 1;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price .label {
    font-size: 0.8rem;
    color: var(--secondary-title);
}

.price .amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.hours {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--secondary-title);
}

.reviews-info {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--primary-title);
    font-weight: 500;
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-icon {
    font-size: 4rem;
    color: var(--tertiary-border);
    margin-bottom: 1rem;
}

/* Places pagination styling */
.section-button {
    margin: 30px 0;
    clear: both;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 5px;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    display: block;
    color: var(--primary-title);
    background-color: var(--white);
    border: 1px solid var(--secondary-border);
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.pagination .page-link:hover {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    text-decoration: none;
}

.pagination .page-item.active .page-link {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 3;
}

.pagination .page-item.disabled .page-link {
    color: var(--secondary-title);
    background-color: var(--white);
    border-color: var(--tertiary-border);
    cursor: not-allowed;
}

.pagination .page-item.disabled .page-link:hover {
    color: var(--secondary-title);
    background-color: var(--white);
    border-color: var(--tertiary-border);
}

/* Hide pagination info text that might be causing overlap */
.pagination-info {
    display: none;
}

/* Places Show Page Styles */
.place-header-info {
    margin-bottom: 1.5rem;
}

.place-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.place-meta .category-badge {
    background: var(--section-bg-three);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.place-meta .featured-badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 8px rgba(var(--secondary-color-rgb), 0.3);
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--ratting-color);
    font-weight: 600;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-title);
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--primary-paragraph);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.place-description {
    margin-bottom: 2rem;
}

.price-highlight {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.place-info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.info-header h5 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--tertiary-border);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: var(--secondary-title);
}

.info-value {
    font-weight: 600;
}

.info-value.price {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.info-value.rating {
    color: var(--ratting-color);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.info-value a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-value a:hover {
    text-decoration: underline;
}

.info-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--tertiary-border);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.place-map-section {
    margin-top: 2rem;
}

.map-container {
    margin-top: 1rem;
}

.tour-list-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.package-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-listing .list {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--tertiary-border);
}

.tour-listing .list:last-child {
    border-bottom: none;
}

.package-content {
    flex: 1;
}

.area-name {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.area-name a {
    text-decoration: none;
    color: inherit;
}

.area-name a:hover {
    color: var(--primary-color);
}

.location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--secondary-title);
}

.price-review {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--ratting-color);
}

/* Reviews Section Styling */
.reviews-summary {
    transition: all 0.3s ease;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ratting-color);
    line-height: 1;
}

.rating-summary .stars {
    gap: 2px;
    font-size: 16px;
}

.review-count {
    font-size: 14px;
    margin-top: 5px;
}

.review-breakdown {
    min-width: 200px;
}

.rating-bar {
    font-size: 12px;
    align-items: center;
}

.rating-label {
    width: 15px;
    font-weight: 600;
    color: var(--secondary-title);
}

.progress {
    height: 8px !important;
    background-color: var(--tertiary-border);
    border-radius: 4px;
}

.progress-bar {
    background-color: var(--ratting-color) !important;
    border-radius: 4px;
}

.percentage {
    width: 35px;
    text-align: right;
    font-size: 11px;
}

.reviews-container {
    overflow: hidden;
    transition: all 0.4s ease;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        max-height: 2000px;
        transform: translateY(0);
    }
}

#reviewsArrow {
    transition: transform 0.3s ease;
}

#reviewsArrow.rotated {
    transform: rotate(180deg);
}

.star-rating {
    cursor: pointer;
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.star-rating input {
    display: none;
}

.star-rating i {
    font-size: 24px;
    color: var(--tertiary-border);
    transition: color 0.2s ease;
}

.star-rating:hover i,
.star-rating input:checked ~ i,
.star-rating input:checked + i {
    color: var(--ratting-color);
}

.rating-text {
    font-size: 14px;
    color: var(--secondary-title);
    font-weight: 500;
}

/* Review date styling */
.review-date {
    flex-shrink: 0;
    min-width: 80px;
}

.review-date small {
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
}

/* User initial circle styling */
.user-initial-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--secondary-color) 100%);
    flex-shrink: 0;
}

/* Random colors for different initials */
.user-initial-circle:nth-of-type(1) { background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--secondary-color) 100%); }
.user-initial-circle:nth-of-type(2) { background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%); }
.user-initial-circle:nth-of-type(3) { background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%); }
.user-initial-circle:nth-of-type(4) { background: linear-gradient(135deg, var(--secondary-btn) 0%, var(--ratting-color) 100%); }
.user-initial-circle:nth-of-type(5) { background: linear-gradient(135deg, var(--ratting-color) 0%, var(--secondary-color) 100%); }
.user-initial-circle:nth-of-type(6) { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-btn) 100%); }
.user-initial-circle:nth-of-type(7) { background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--primary-color) 100%); }
.user-initial-circle:nth-of-type(8) { background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%); }

/* Mobile Responsive - Places */
@media (max-width: 768px) {
    .place-card {
        margin-bottom: 1rem;
    }
    
    .filter-card .row > div {
        margin-bottom: 1rem;
    }
    
    .place-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .place-info {
        text-align: center;
    }
    
    .place-meta {
        gap: 0.5rem;
    }
    
    .info-actions {
        flex-direction: column;
    }
    
    .info-actions .btn {
        width: 100%;
    }
    
    .reviews-summary {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .reviews-summary .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .review-breakdown {
        min-width: auto;
        width: 100%;
    }
}

/* ===== BLOG SECTION STYLES ===== */

/* Blog Section Styles */
.blog-section {
    background: #fff;
}

.single-blog {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.single-blog:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Blog Badges Container */
.blog-badges {
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.blog-badge {
    border-radius: 8px;
    padding: 8px 15px;
    display: inline-block;
    width: fit-content;
}

.blog-badge.category-badge {
    background: var(--secondary-color, #ff6b35);
}

.blog-badge.featured-badge-overlay {
    background: #ffc107;
    font-size: 11px;
    padding: 6px 12px;
}

.blog-badge .subtitle {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.blog-meta .meta-items {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.blog-meta .meta-item {
    font-size: 14px;
    color: #666;
}

.blog-title .title {
    color: var(--title-color, #1a1a1a);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title .title:hover {
    color: var(--primary-color, #007bff);
}

.featured-badge {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #ffc107;
    font-weight: 500;
}

/* Sidebar Styles */
.blog-sidebar .sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #f0f0f0;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--title-color, #1a1a1a);
    position: relative;
    padding-bottom: 10px;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color, #007bff);
    border-radius: 2px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 15px;
}

.category-link {
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: var(--title-color, #1a1a1a);
    transition: all 0.3s ease;
    display: flex;
}

.category-link:hover {
    background: var(--primary-color, #007bff);
    color: #fff;
}

.category-link:hover .category-count {
    background: #fff !important;
    color: var(--primary-color, #007bff) !important;
}

/* No Posts Message */
.no-posts-message {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 60px 30px;
}

/* Post Thumbnail Styling */
.post-thumb-link {
    display: block;
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-thumb-image {
    transition: transform 0.3s ease;
}

.post-thumb-link:hover .post-thumb-image {
    transform: scale(1.1);
}

.post-thumb-link:hover .post-thumb-placeholder {
    transform: scale(1.05);
}

.post-thumb-placeholder {
    transition: transform 0.3s ease;
}

/* Enhanced post content styling */
.recent-post-content,
.featured-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recent-post-title,
.featured-post-title,
.related-post-title {
    line-height: 1.3;
    margin-bottom: 8px !important;
}

.recent-post-meta,
.featured-post-meta,
.related-post-meta {
    margin-top: auto;
}

.meta-date {
    font-size: 12px !important;
    color: #999 !important;
}

.title-link {
    color: var(--title-color, #1a1a1a);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.title-link:hover {
    color: var(--primary-color, #007bff);
}

/* Related and Recent Post Items */
.recent-post-item,
.featured-post-item,
.related-post-item {
    padding: 15px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 15px;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.recent-post-item:hover,
.featured-post-item:hover,
.related-post-item:hover {
    border-color: var(--primary-color, #007bff);
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.15);
    transform: translateY(-2px);
}

.recent-post-item:last-child,
.featured-post-item:last-child,
.related-post-item:last-child {
    margin-bottom: 0;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-meta .meta-items {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px !important;
        justify-content: flex-start;
    }
    
    .blog-meta .meta-item {
        font-size: 12px;
        color: #666;
        white-space: nowrap;
    }
    
    .blog-meta .meta-item i {
        font-size: 12px;
    }
    
    .blog-meta .meta-text {
        font-size: 12px;
    }
    
    .blog-footer {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }
    
    .blog-sidebar .sidebar-widget {
        padding: 20px;
        margin-bottom: 30px;
    }
}
