.venues-hero-ultra {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--trevent-gray-900, #0F172A) 0%, #1a1a2e 50%, var(--trevent-red-dark, #B91C1C) 100%);
    overflow: hidden;
}

.venues-hero-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(220, 38, 38, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 80% 30%, rgba(185, 28, 28, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.venues-hero-ultra::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
}

.venues-hero-ultra .container {
    position: relative;
    z-index: 10;
}

.venues-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.venues-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.venues-hero-badge i {
    color: #dc2626;
}

.venues-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.venues-hero-title .text-gradient {
    background: linear-gradient(135deg, #dc2626 0%, #DC2626 50%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.venues-hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.venues-hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.venues-content-ultra {
    padding: 50px 0 80px;
    background: linear-gradient(180deg, #F8FAFC 0%, #fff 100%);
    min-height: 60vh;
}

.venues-toolbar-ultra {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #E2E8F0;
}

.filter-form-ultra {
    width: 100%;
}

.filter-row-ultra {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.filter-group-ultra {
    flex: 1;
    min-width: 200px;
}

.filter-label-ultra {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.filter-select-ultra {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1E293B;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 45px;
}

.filter-select-ultra:focus {
    outline: none;
    border-color: #DC2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.filter-input-ultra {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1E293B;
    background: #fff;
    transition: all 0.3s ease;
}

.filter-input-ultra:focus {
    outline: none;
    border-color: #DC2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.filter-input-ultra::placeholder {
    color: #94A3B8;
    font-weight: 400;
}

.filter-group-search {
    flex: 1.5;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #DC2626;
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
}

.filter-results-info {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E2E8F0;
}

#VenueResultsCount {
    font-size: 14px;
    font-weight: 600;
    color: #64748B;
}

.filter-actions-ultra {
    display: flex;
    gap: 12px;
}

.btn-filter-apply {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn-filter-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

.btn-filter-reset {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #F1F5F9;
    color: #64748B;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter-reset:hover {
    background: #E2E8F0;
    border-color: #CBD5E1;
    color: #475569;
}

/* =====================================================
   VENUES GRID - Premium Cards
   ===================================================== */
.venues-grid-ultra {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

a.venue-card-ultra {
    display: block;
    text-decoration: none;
    color: inherit;
}

.venue-card-ultra {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--te-color-border, #E5E7EB);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    height: 100%;
}

.venue-card-ultra:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Card Image */
.venue-image-ultra {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
}

.venue-image-ultra img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.venue-card-ultra:hover .venue-image-ultra img {
    transform: scale(1.05);
}

/* Favorite Button */
.venue-favorite-ultra {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.venue-favorite-ultra:hover {
    background: #DC2626;
    transform: scale(1.15);
}

.venue-favorite-ultra i {
    font-size: 18px;
    color: #DC2626;
    transition: color 0.3s ease;
}

.venue-favorite-ultra:hover i {
    color: #fff;
}

/* Bottom Row Container */
.venue-image-bottom-row {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
}

/* Rating Badge */
.venue-rating-ultra {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    color: #1E293B;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.venue-rating-ultra:empty {
    display: none;
}

.venue-rating-ultra i {
    color: #FBBF24;
    font-size: 14px;
}

/* 360 Tour Badge */
.venue-360-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.venue-360-badge i {
    font-size: 13px;
}

.venue-card-ultra:hover .venue-360-badge {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    transform: scale(1.05);
}

/* Premium Badge (legacy) */
.venue-premium-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

/* Venue Type Badge System */
.venue-type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.venue-badge-verified {
    background: #059669;
}

.venue-badge-premium {
    background: #1E293B;
}

.venue-badge-congress {
    background: #2563EB;
}

.venue-badge-luxury {
    background: #B45309;
}

/* Card Body */
.venue-body-ultra {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.venue-title-ultra {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 6px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.venue-card-ultra:hover .venue-title-ultra {
    color: #DC2626;
}

.venue-location-ultra {
    font-size: 13px;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.venue-location-ultra i {
    color: #DC2626;
    font-size: 12px;
}

/* Specs Pills */
.venue-specs-ultra {
    display: flex;
    gap: 8px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.venue-spec-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #F3F4F6;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.venue-spec-pill i {
    color: #DC2626;
    font-size: 12px;
}

/* Rating Row */
.venue-rating-row {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 8px 0;
}

.venue-star-active {
    color: #F59E0B;
    font-size: 13px;
}

.venue-star-muted {
    color: #D1D5DB;
    font-size: 13px;
}

.venue-rating-text {
    font-size: 13px;
    color: #6B7280;
    margin-left: 6px;
}

/* Price Row */
.venue-price-row {
    margin: 8px 0;
}

.venue-price-label {
    font-size: 12px;
    color: #6B7280;
}

.venue-price-value {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-left: 4px;
}

/* FitBadge — hidden per Banani design, data attributes preserved */
.venue-fit-badge {
    display: none;
}

/* Tags */
.venue-tags-ultra {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.venue-tag-ultra {
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(220, 38, 38, 0.04) 100%);
    color: #DC2626;
    font-size: 12px;
    font-weight: 600;
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

/* CTA Button */
.venue-cta-ultra {
    margin-top: auto;
}

.btn-venue-view {
    display: block;
    text-align: center;
    background: #DC2626;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    font-family: 'Poppins', sans-serif;
    margin-top: 12px;
}

.btn-venue-view:hover {
    background: #B91C1C;
    color: #fff;
}

/* =====================================================
   EMPTY STATE
   ===================================================== */
.empty-state-ultra {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 40px;
    background: #fff;
    border-radius: 16px;
    border: 2px dashed #E2E8F0;
}

.empty-state-icon-ultra {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state-icon-ultra i {
    font-size: 50px;
    color: #DC2626;
}

.empty-state-title-ultra {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
}

.empty-state-text-ultra {
    font-size: 16px;
    color: #64748B;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-empty-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.btn-empty-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.4);
    color: #fff;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1400px) {
    .venues-grid-ultra {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .venues-hero-title {
        font-size: 2.75rem;
    }

    .venues-grid-ultra {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 991px) {
    .venues-hero-ultra {
        padding: 120px 0 80px;
    }

    .venues-hero-title {
        font-size: 2.25rem;
    }

    .venues-hero-desc {
        font-size: 1.1rem;
    }

    .venues-hero-stats {
        gap: 30px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .filter-row-ultra {
        flex-direction: column;
    }

    .filter-group-ultra {
        width: 100%;
    }

    .filter-actions-ultra {
        width: 100%;
    }

    .filter-actions-ultra .btn-filter-apply,
    .filter-actions-ultra .btn-filter-reset {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .venues-hero-ultra {
        padding: 100px 0 60px;
    }

    .venues-hero-title {
        font-size: 1.875rem;
    }

    .venues-hero-desc {
        font-size: 1rem;
    }

    .venues-hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-stat-item {
        flex: 0 0 calc(50% - 10px);
    }

    .hero-stat-number {
        font-size: 1.75rem;
    }

    .venues-content-ultra {
        padding: 30px 0 60px;
    }

    .venues-toolbar-ultra {
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 24px;
    }

    .filter-row-ultra {
        gap: 12px;
    }

    .filter-label-ultra {
        margin-bottom: 6px;
        font-size: 11px;
    }

    .filter-group-ultra {
        min-width: unset;
    }

    .filter-select-ultra {
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 10px;
        border-width: 1.5px;
        padding-right: 38px;
        background-size: 16px;
        background-position: right 12px center;
    }

    .filter-input-ultra {
        padding: 10px 14px 10px 40px;
        font-size: 14px;
        border-radius: 10px;
        border-width: 1.5px;
    }

    .search-input-wrapper .search-icon {
        left: 14px;
        font-size: 14px;
    }

    .btn-filter-apply {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-filter-reset {
        padding: 10px 16px;
        font-size: 13px;
    }

    .btn-venue-view {
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 10px;
    }

    .venues-grid-ultra {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .venue-card-ultra {
        border-radius: 16px;
    }

    .venue-body-ultra {
        padding: 14px;
    }

    .venue-title-ultra {
        font-size: 15px;
    }

    .venue-specs-ultra {
        gap: 6px;
    }

    .venue-spec-pill {
        padding: 4px 10px;
        font-size: 12px;
    }

    .venue-price-value {
        font-size: 16px;
    }

    .btn-venue-view {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .venues-hero-ultra {
        padding: 70px 0 40px;
    }

    .venues-hero-title {
        font-size: 1.375rem;
    }

    .venues-hero-desc {
        font-size: 0.85rem;
    }

    .venues-hero-badge {
        font-size: 12px;
        padding: 10px 18px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 12px;
    }

    .venues-toolbar-ultra {
        padding: 12px;
        margin-bottom: 16px;
        border-radius: 10px;
    }

    .filter-row-ultra {
        gap: 8px;
    }

    .filter-label-ultra {
        margin-bottom: 4px;
    }

    .filter-select-ultra {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 8px;
        padding-right: 34px;
    }

    .filter-input-ultra {
        padding: 8px 12px 8px 36px;
        font-size: 13px;
        border-radius: 8px;
    }

    .btn-filter-apply {
        padding: 8px 16px;
        font-size: 13px;
    }

    .btn-filter-reset {
        padding: 8px 14px;
        font-size: 12px;
    }

    .btn-venue-view {
        padding: 8px 14px;
        font-size: 13px;
    }

    .venue-specs-ultra {
        gap: 6px;
    }

    .venue-body-ultra {
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .venues-hero-ultra {
        padding: 100px 0 60px;
    }

    .venues-hero-title {
        font-size: 1.75rem;
    }

    .venues-hero-desc {
        font-size: 1rem;
    }

    .venue-spec-pill {
        padding: 4px 10px;
        font-size: 12px;
    }

    .venue-price-value {
        font-size: 16px;
    }

    .btn-venue-view {
        padding: 8px 14px;
        font-size: 13px;
    }

    .filter-row-ultra {
        flex-direction: column;
        gap: 8px;
    }

    .filter-group-ultra {
        width: 100%;
    }

    .filter-group-search {
        width: 100%;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.venue-card-ultra {
    animation: cardFadeIn 0.6s ease forwards;
    opacity: 0;
}

.venue-card-ultra:nth-child(1) {
    animation-delay: 0.1s;
}

.venue-card-ultra:nth-child(2) {
    animation-delay: 0.15s;
}

.venue-card-ultra:nth-child(3) {
    animation-delay: 0.2s;
}

.venue-card-ultra:nth-child(4) {
    animation-delay: 0.25s;
}

.venue-card-ultra:nth-child(5) {
    animation-delay: 0.3s;
}

.venue-card-ultra:nth-child(6) {
    animation-delay: 0.35s;
}

.venue-card-ultra:nth-child(7) {
    animation-delay: 0.4s;
}

.venue-card-ultra:nth-child(8) {
    animation-delay: 0.45s;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   VENUE DETAIL PAGE - Ultra Modern Design
   ===================================================== */

/* Hero Section */
.venue-detail-hero-ultra {
    position: relative;
    padding: 80px 0 80px;
    background: linear-gradient(135deg, #0F172A 0%, #1a1a2e 50%, #B91C1C 100%);
    overflow: hidden;
}

.venue-detail-hero-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(220, 38, 38, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 80% 30%, rgba(185, 28, 28, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.venue-detail-hero-ultra::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
}

.venue-detail-hero-ultra .container {
    position: relative;
    z-index: 10;
}

.venue-detail-hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.venue-detail-hero-info {
    flex: 1;
}

.venue-detail-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
    animation: fadeInDown 0.8s ease;
}

.venue-detail-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.venue-detail-location {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.venue-detail-location i {
    color: #dc2626;
    font-size: 20px;
}

.venue-detail-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.venue-detail-stat {
    text-align: center;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-width: 110px;
}

.venue-detail-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.venue-detail-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.venue-detail-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.venue-detail-stars i {
    color: #FBBF24;
    font-size: 20px;
}

.venue-detail-rating-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.venue-detail-rating-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Quick Quote Card */
.venue-detail-quote-card {
    flex-shrink: 0;
    width: 380px;
    background: linear-gradient(135deg, #fff 0%, #F8FAFC 100%);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.venue-detail-quote-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid #F1F5F9;
}

.venue-detail-quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.venue-detail-quote-icon i {
    color: #fff;
    font-size: 22px;
}

.venue-detail-quote-title {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 4px 0;
}

.venue-detail-quote-subtitle {
    font-size: 13px;
    color: #64748B;
    margin: 0;
}

.venue-detail-quote-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.venue-detail-quote-field label {
    font-size: 12px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.venue-detail-quote-field select,
.venue-detail-quote-field input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1E293B;
    background: #fff;
    transition: all 0.3s ease;
}

.venue-detail-quote-field select:focus,
.venue-detail-quote-field input:focus {
    outline: none;
    border-color: #DC2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.venue-detail-quote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.35);
    margin-top: 10px;
}

.venue-detail-quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.45);
}

/* Wave Separator */
.venue-detail-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 10;
}

.venue-detail-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Content Section */
.venue-detail-content-ultra {
    background: linear-gradient(180deg, #F8FAFC 0%, #fff 100%);
}

.venue-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.venue-detail-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.venue-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Content Cards */
.venue-detail-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #E2E8F0;
    margin-top: 50px;
}

.venue-detail-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(220, 38, 38, 0.15);
}

.venue-detail-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1E293B;
    border-radius: 12px 12px 0 0;
    padding: 16px 20px;
    position: relative;
    overflow: hidden;
}

.venue-detail-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.venue-detail-card-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.venue-detail-card-icon {
    width: 36px;
    height: 36px;
    background: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.venue-detail-card-icon i {
    color: #fff;
    font-size: 14px;
}

.venue-detail-card-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.venue-detail-card-badge {
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.venue-detail-card-body {
    padding: 20px;
}
.venue-detail-gallery .venue-detail-card-body,
.venue-detail-card-body:has(.vd-gallery-grid),
.venue-detail-card-body:has(.dj-iframe-container) {
    padding: 0;
}

/* Gallery */
.venue-detail-gallery {
    position: relative;
    overflow: hidden;
}

.dj-gallery-split {
    display: flex;
    gap: 16px;
    height: 520px;
}

.dj-gallery-main-wrap {
    flex: 1;
    min-width: 0;
    position: relative;
}

.dj-gallery-thumbs-wrap {
    width: 380px;
    flex-shrink: 0;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 12px;
    background: #F8FAFC;
    padding: 10px;
}

.dj-gallery-thumbs-wrap::-webkit-scrollbar {
    width: 6px;
}

.dj-gallery-thumbs-wrap::-webkit-scrollbar-track {
    background: transparent;
}

.dj-gallery-thumbs-wrap::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 3px;
}

.dj-gallery-thumbs-wrap::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

.venue-detail-gallery-main {
    height: 100%;
    background: #0F172A;
    overflow: hidden;
}

.venue-detail-gallery-main .carousel-item {
    height: 520px;
    text-align: center;
}

.venue-detail-gallery-main .carousel-item.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-detail-gallery-main picture {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 520px;
}

.venue-detail-gallery-main img {
    max-width: 100%;
    max-height: 520px;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.venue-detail-gallery:hover .venue-detail-gallery-main img {
    transform: scale(1.02);
}

.venue-detail-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.venue-detail-gallery-nav:hover {
    background: #DC2626;
}

.venue-detail-gallery-nav.prev {
    left: 20px;
}

.venue-detail-gallery-nav.next {
    right: 20px;
}

.venue-detail-gallery-nav i {
    font-size: 18px;
    color: #1E293B;
    transition: color 0.3s ease;
}

.venue-detail-gallery-nav:hover i {
    color: #fff;
}

.venue-detail-gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.venue-detail-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.venue-detail-gallery-thumb {
    aspect-ratio: 16/10;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: #E2E8F0;
}

.venue-detail-gallery-thumb:hover,
.venue-detail-gallery-thumb.active {
    border-color: #DC2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.venue-detail-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue-detail-gallery-thumb:hover img {
    transform: scale(1.05);
}

/* Features Grid */
.venue-detail-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 20px;
    text-align: center;
}

.venue-detail-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: #F8FAFC;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.venue-detail-feature:hover {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border-color: rgba(220, 38, 38, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.1);
}

.venue-detail-feature-icon {
    width: 56px;
    height: 56px;
    background: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.venue-detail-feature-icon i {
    color: #fff;
    font-size: 22px;
}

.venue-detail-feature-icon.cyan {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
}

.venue-detail-feature span,
.venue-detail-feature-name {
    font-size: 13px;
    font-weight: 600;
    color: #1E293B;
}

/* Rooms Table */
.venue-detail-rooms-table {
    overflow: visible;
}

.venue-detail-rooms-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.venue-detail-rooms-scroll #roomsTable {
    min-width: 960px;
}

.venue-detail-rooms-table table {
    width: 100%;
    border-collapse: collapse;
}

.venue-detail-rooms-table thead th {
    background: #0F172A;
    padding: 16px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    border: none;
}

.venue-detail-rooms-table thead th:first-child {
    text-align: left;
    padding-left: 20px;
}

.venue-detail-rooms-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #F1F5F9;
}

.venue-detail-rooms-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.04) 0%, rgba(220, 38, 38, 0.02) 100%);
}

.venue-detail-rooms-table tbody tr:last-child {
    border-bottom: none;
}

.venue-detail-rooms-table tbody td {
    padding: 16px 14px;
    font-size: 14px;
    color: #475569;
    text-align: center;
    vertical-align: middle;
}

.venue-detail-rooms-table tbody td:first-child {
    text-align: left;
}

.venue-detail-room-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.venue-detail-room-icon {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.venue-detail-room-icon i {
    color: #DC2626;
    font-size: 16px;
}

.venue-detail-room-title {
    font-weight: 700;
    color: #1E293B;
    font-size: 14px;
}

.venue-detail-room-floor {
    font-size: 12px;
    color: #64748B;
    margin-top: 2px;
}

.venue-detail-capacity-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(220, 38, 38, 0.04) 100%);
    color: #DC2626;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.venue-detail-room-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.venue-detail-room-btn:hover {
    transform: translateY(-2px);
}

/* =====================================================
   MOBILE ROOMS CARDS
   ===================================================== */
.venue-rooms-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.venue-room-card-mobile {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.venue-room-card-mobile:hover {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.venue-room-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.venue-room-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.venue-room-card-icon i {
    color: #DC2626;
    font-size: 18px;
}

.venue-room-card-info {
    flex: 1;
    min-width: 0;
}

.venue-room-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.venue-room-card-floor {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
    display: block;
}

.venue-room-card-view-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.venue-room-card-view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.venue-room-card-specs {
    display: flex;
    gap: 16px;
    padding: 12px 16px;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.venue-room-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #475569;
    font-weight: 600;
}

.venue-room-spec i {
    color: #DC2626;
    font-size: 12px;
}

.venue-room-card-capacities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #E2E8F0;
}

.venue-room-capacity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #ffffff;
}

.venue-room-capacity-item i {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DC2626;
    font-size: 12px;
    flex-shrink: 0;
}

.venue-room-capacity-label {
    flex: 1;
    font-size: 12px;
    color: #64748B;
    font-weight: 500;
}

.venue-room-capacity-value {
    font-size: 14px;
    font-weight: 700;
    color: #1E293B;
}

/* Facilities Info */
.venue-detail-facilities-info {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.15);
    margin-top: 24px;
    margin-bottom: 24px;
}

.venue-detail-facilities-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.venue-detail-facilities-icon i {
    color: #fff;
    font-size: 20px;
}

.venue-detail-facilities-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 8px 0;
}

.venue-detail-facilities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.venue-detail-facilities-list span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #475569;
}

.venue-detail-facilities-list span i {
    color: #059669;
    font-size: 12px;
}

/* Facilities Info Mobile */
@media (max-width: 576px) {
    .venue-detail-facilities-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px;
        gap: 12px;
    }

    .venue-detail-facilities-content h4 {
        font-size: 14px;
    }

    .venue-detail-facilities-list {
        justify-content: center;
    }

    .venue-detail-facilities-list span {
        font-size: 12px;
    }
}

/* Sidebar Cards */
.venue-detail-sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #E2E8F0;
}

.venue-detail-sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #F1F5F9;
}

.venue-detail-sidebar-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-detail-sidebar-icon i {
    color: #fff;
    font-size: 16px;
}

.venue-detail-sidebar-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
}

/* Quick Info List */
.venue-detail-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.venue-detail-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
}

.venue-detail-info-item:last-child {
    border-bottom: none;
}

.venue-detail-info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #64748B;
}

.venue-detail-info-label i {
    color: #DC2626;
    width: 20px;
}

.venue-detail-info-value {
    font-size: 14px;
    font-weight: 700;
    color: #1E293B;
}

/* Contact List */
.venue-detail-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.venue-detail-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #F8FAFC;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.venue-detail-contact-item:hover {
    background: #FEF2F2;
}

.venue-detail-contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.venue-detail-contact-icon i {
    color: #DC2626;
    font-size: 16px;
}

.venue-detail-contact-info {
    flex: 1;
    min-width: 0;
}

.venue-detail-contact-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.venue-detail-contact-value {
    font-size: 14px;
    font-weight: 600;
    color: #1E293B;
    word-break: break-word;
}

.venue-detail-contact-value a {
    color: #DC2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

.venue-detail-contact-value a:hover {
    color: #B91C1C;
}

/* CTA Card */
.venue-detail-cta-card {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.venue-detail-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.venue-detail-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.venue-detail-cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.venue-detail-cta-icon i {
    color: #fff;
    font-size: 26px;
}

.venue-detail-cta-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.venue-detail-cta-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px 0;
}

.venue-detail-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: #fff;
    color: #DC2626;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.venue-detail-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: #DC2626;
}

/* Map Section */
.venue-detail-map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.venue-detail-map-container #venueMap {
    height: 450px;
    width: 100%;
}

.venue-detail-address-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.venue-detail-address-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.venue-detail-address-item i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DC2626;
    font-size: 14px;
    flex-shrink: 0;
}

.venue-detail-address-item span {
    font-size: 15px;
    color: #475569;
    line-height: 36px;
}

.venue-detail-map-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.venue-detail-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.venue-detail-map-btn.primary {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.venue-detail-map-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    color: #fff;
}

.venue-detail-map-btn.secondary {
    background: #F1F5F9;
    color: #475569;
    border: 2px solid #E2E8F0;
}

.venue-detail-map-btn.secondary:hover {
    background: #E2E8F0;
    color: #1E293B;
}

/* Responsive */
@media (max-width: 1200px) {
    .venue-detail-grid {
        grid-template-columns: 1fr;
    }

    .venue-detail-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .venue-detail-hero-content {
        flex-direction: column;
    }

    .venue-detail-quote-card {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .venue-detail-hero-ultra {
        padding: 120px 0 60px;
    }

    .venue-detail-title {
        font-size: 2.25rem;
    }

    .venue-detail-stats {
        gap: 12px;
    }

    .venue-detail-stat {
        flex: 1 1 calc(50% - 10px);
        min-width: auto;
        padding: 16px 20px;
    }

    .venue-detail-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dj-gallery-split {
        height: 420px;
    }

    .dj-gallery-thumbs-wrap {
        width: 300px;
    }

    .venue-detail-gallery-main .carousel-item {
        height: 420px;
    }

    .venue-detail-gallery-main img {
        max-height: 420px;
    }
}

@media (max-width: 767px) {
    .venue-detail-hero-ultra {
        padding: 100px 0 50px;
    }

    .venue-detail-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .venue-detail-hero-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .venue-detail-location {
        justify-content: center;
    }

    .venue-detail-rating {
        justify-content: center;
    }

    .venue-detail-stars {
        justify-content: center;
    }

    .venue-detail-title {
        font-size: 1.75rem;
    }

    .venue-detail-content-ultra {
        padding: 40px 0 60px;
    }

    .venue-detail-card-body {
        padding: 20px;
    }

    .venue-detail-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dj-gallery-split {
        flex-direction: column;
        height: auto;
    }

    .dj-gallery-main-wrap {
        height: 300px;
    }

    .dj-gallery-thumbs-wrap {
        width: 100%;
        height: 140px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 8px;
    }

    .venue-detail-gallery-thumbs {
        display: flex;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .venue-detail-gallery-thumb {
        width: 100px;
        flex-shrink: 0;
        aspect-ratio: 16/10;
    }

    .venue-detail-gallery-main .carousel-item {
        height: 300px;
    }

    .venue-detail-gallery-main img {
        max-height: 300px;
    }

    .venue-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .venue-detail-map-actions {
        flex-direction: column;
    }

    .venue-detail-map-btn {
        width: 100%;
        justify-content: center;
    }

    .dj-venue-description-paragraph {
        font-size: 14px;
        line-height: 1.6;
        text-align: left !important;
        word-spacing: normal !important;
        letter-spacing: normal !important;
    }
}

/* =====================================================
   VENUE STICKY QUOTE BAR
   ===================================================== */
.venue-sticky-quote-bar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #F8FAFC 100%);
    border-bottom: 3px solid #DC2626;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 16px 0;
    z-index: 1020;
    transition: all 0.3s ease;
}

.venue-sticky-quote-bar.is-sticky {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.venue-sticky-quote-form {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

/* Venue Info */
.venue-sticky-info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 24px;
    border-right: 2px solid #E2E8F0;
    flex-shrink: 0;
}

.venue-sticky-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.venue-sticky-icon i {
    color: #fff;
    font-size: 20px;
}

.venue-sticky-name {
    display: flex;
    flex-direction: column;
}

.venue-sticky-name strong {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.venue-sticky-name span {
    font-size: 12px;
    color: #64748B;
    font-weight: 500;
}

/* Fields Container */
.venue-sticky-fields {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

/* Individual Field */
.venue-sticky-field {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    background: #fff;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 0 14px;
    height: 48px;
    transition: all 0.3s ease;
}

.venue-sticky-field:hover {
    border-color: #DC2626;
}

.venue-sticky-field:focus-within {
    border-color: #DC2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.venue-sticky-field i {
    color: #DC2626;
    font-size: 16px;
    flex-shrink: 0;
}

.venue-sticky-field select,
.venue-sticky-field input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #1E293B;
    cursor: pointer;
    outline: none;
    padding: 0;
    height: 100%;
    min-width: 0;
}

.venue-sticky-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 16px;
}

.venue-sticky-field input[type="date"] {
    cursor: pointer;
}

.venue-sticky-field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.6;
    cursor: pointer;
}

/* Submit Button */
.venue-sticky-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    height: 48px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
    flex-shrink: 0;
}

.venue-sticky-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.45);
}

.venue-sticky-submit i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1400px) {
    .venue-sticky-field {
        min-width: 140px;
    }

    .venue-sticky-name strong {
        max-width: 150px;
    }
}

@media (max-width: 1200px) {
    .venue-sticky-quote-form {
        flex-wrap: wrap;
        gap: 14px;
    }

    .venue-sticky-info {
        border-right: none;
        padding-right: 0;
        width: 100%;
        justify-content: center;
    }

    .venue-sticky-fields {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .venue-sticky-field {
        flex: 1 1 calc(50% - 7px);
        min-width: 140px;
    }

    .venue-sticky-submit {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .venue-sticky-quote-bar {
        padding: 12px 0;
    }

    .venue-sticky-icon {
        width: 40px;
        height: 40px;
    }

    .venue-sticky-icon i {
        font-size: 16px;
    }

    .venue-sticky-name strong {
        font-size: 14px;
        max-width: 120px;
    }

    .venue-sticky-name span {
        display: none;
    }

    .venue-sticky-field {
        flex: 1 1 100%;
        height: 44px;
        min-width: auto;
    }

    .venue-sticky-submit {
        height: 44px;
    }
}

@media (max-width: 480px) {
    .venue-sticky-info {
        display: none;
    }

    .venue-sticky-quote-bar {
        padding: 10px 0;
    }

    .venue-sticky-field {
        padding: 0 12px;
        height: 42px;
    }

    .venue-sticky-field select,
    .venue-sticky-field input {
        font-size: 13px;
    }

    .venue-sticky-submit {
        height: 42px;
        font-size: 14px;
        padding: 0 20px;
    }
}

.dj-favorite-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.dj-favorite-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.dj-favorite-btn i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.dj-favorite-btn.is-favorite {
    background: #dc2626;
    border-color: #dc2626;
}

.dj-favorite-btn.is-favorite:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

.dj-favorite-btn.is-favorite i {
    color: white;
    animation: heartPulse 0.3s ease;
}

@keyframes heartPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.custom-venue-marker {
    background: transparent !important;
    border: none !important;
}

.dj-map-marker {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    width: 50px;
    height: 50px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dj-map-marker-icon {
    color: white;
    font-size: 20px;
    transform: rotate(45deg);
}

.dj-map-popup {
    min-width: 220px;
    padding: 8px;
}

.dj-map-popup-title {
    font-weight: 700;
    color: #DC2626;
    margin-bottom: 8px;
}

.dj-map-popup-address {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 12px;
}

.dj-map-popup-btn {
    display: block;
    padding: 10px 16px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.dj-map-popup-btn:hover {
    color: white;
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
}

.venue-custom-popup .leaflet-popup-content-wrapper {
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.2) !important;
    border: 2px solid #DC2626 !important;
}

.venue-custom-popup .leaflet-popup-content {
    margin: 12px !important;
}

.venue-custom-popup .leaflet-popup-tip {
    background: white !important;
    border: 2px solid #DC2626 !important;
    border-top: none !important;
    border-right: none !important;
}

#venueMap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 450px;
}

.leaflet-control-zoom a {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%) !important;
    color: white !important;
    border: none !important;
}

.leaflet-control-zoom a:hover {
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%) !important;
}

.room-tour360-toggle:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12) 0%, rgba(220, 38, 38, 0.06) 100%) !important;
    border-color: rgba(220, 38, 38, 0.25) !important;
}

.room-tour360-toggle:hover .tour360-toggle-icon {
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

/* Hero Section Centered */
.dj-hero-centered {
    justify-content: center;
}

.dj-hero-info-centered {
    text-align: center;
    max-width: 900px;
}

/* Technical Section */
.dj-technical-section {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 2px solid #F1F5F9;
}

.dj-technical-title {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dj-icon-cyan {
    color: #06B6D4;
}

.dj-icon-red {
    color: #DC2626;
}

/* Venue Description */
.dj-venue-about-content {
    padding: 24px 28px;
}

.dj-venue-description-paragraph {
    font-size: 15px;
    line-height: 1.85;
    color: #475569;
    margin: 0 0 20px 0;
    text-align: justify;
    text-justify: inter-word;
}

.dj-venue-description-paragraph:last-child {
    margin-bottom: 0;
}

.dj-venue-description-paragraph:first-child::first-letter {
    font-size: 2.2em;
    font-weight: 700;
    color: #1e3a5f;
    float: left;
    line-height: 1;
    margin-right: 8px;
    margin-top: 4px;
}

.dj-venue-description {
    font-size: 16px;
    line-height: 1.5;
    color: #475569;
    padding: 20px;
    margin: 0;
}

.dj-iframe-container {
    overflow: hidden;
}

/* Table Styles */
.dj-table-dash {
    color: #94A3B8;
}

.dj-table-height {
    font-weight: 600;
    color: #059669;
}

/* Sortable Table Headers */
.dj-sortable {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.dj-sort-icon {
    margin-left: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.dj-sort-icon.dj-sort-active {
    color: #fff;
}

#roomsTable thead th {
    position: relative;
}

/* Gallery Modal */
.dj-gallery-modal {
    background: #0F172A;
    border: none;
    border-radius: 16px;
}

.dj-gallery-modal-header {
    padding: 20px 24px;
}

.dj-gallery-modal-title {
    color: #fff;
    font-weight: 700;
}

.dj-gallery-image {
    max-height: 80vh;
    object-fit: contain;
}

/* Room Modal — base; sits below fixed navbar; v*.css overrides further */
.dj-room-modal-dialog {
    max-width: 640px;
    max-height: calc(100vh - var(--navbar-height, 80px) - 40px);
    margin: calc(var(--navbar-height, 80px) + 16px) auto 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-dialog-centered.dj-room-modal-dialog {
    min-height: 0;
}

.dj-room-modal {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    max-height: calc(100vh - var(--navbar-height, 80px) - 40px);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.dj-room-modal-header {
    position: relative;
    height: 220px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.dj-room-modal-image {
    object-fit: cover;
}

.dj-room-modal-title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.dj-room-modal-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.dj-room-modal-title-only {
    padding: 24px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.dj-room-modal-body {
    padding: 20px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    flex: 1 1 auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

.dj-room-modal-body::-webkit-scrollbar {
    width: 8px;
}

.dj-room-modal-body::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 8px;
}

/* Room Stats Grid */
.dj-room-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 24px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
}

.dj-room-stat {
    text-align: center;
    padding: 20px;
    border-radius: 0;
    position: relative;
}

.dj-room-stat:first-child {
    border-right: 1px solid #E2E8F0;
}

.dj-room-stat-red {
    background: #fff;
}

.dj-room-stat-cyan {
    background: #fff;
}

.dj-room-stat-amber {
    background: #fff;
}

.dj-room-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: #1E293B;
    line-height: 1;
}

.dj-room-stat-label {
    font-size: 12px;
    color: #94A3B8;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.dj-color-cyan {
    color: #06B6D4;
}

.dj-color-amber {
    color: #F59E0B;
}

/* Room Seating Section */
.dj-room-seating-section {
    margin-bottom: 24px;
}

.dj-room-seating-title {
    font-size: 15px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dj-room-seating-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dj-room-seating-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    transition: border-color 0.2s;
}

.dj-room-seating-item:hover {
    border-color: #CBD5E1;
}

.dj-room-seating-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dj-room-seating-icon i {
    color: #fff;
    font-size: 14px;
}

.dj-room-seating-value {
    font-size: 20px;
    font-weight: 800;
    color: #1E293B;
    line-height: 1.2;
}

.dj-room-seating-label {
    font-size: 12px;
    color: #64748B;
    font-weight: 500;
}

.dj-bg-red {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
}

.dj-bg-green {
    background: linear-gradient(135deg, #059669 0%, #059669 100%);
}

.dj-bg-amber {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.dj-bg-violet {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.dj-bg-cyan {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
}

.dj-bg-pink {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
}

/* Room Description Section */
.dj-room-description-section {
    margin-bottom: 24px;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 14px;
    border: 1px solid #E2E8F0;
}

.dj-room-description-text {
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.dj-icon-cyan {
    color: #0ea5e9;
}

/* Room 360 Tour Section */
.dj-room-tour-section {
    margin-bottom: 24px;
}

.dj-tour360-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(220, 38, 38, 0.04) 100%);
    border-radius: 12px;
    border: 2px solid rgba(220, 38, 38, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dj-tour360-toggle-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dj-tour360-toggle-icon-wrap {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.dj-tour360-toggle-icon-wrap i {
    color: #fff;
    font-size: 18px;
}

.dj-tour360-toggle-title {
    font-size: 15px;
    font-weight: 700;
    color: #1E293B;
}

.dj-tour360-toggle-subtitle {
    font-size: 12px;
    color: #64748B;
    margin-top: 2px;
}

.dj-tour360-chevron {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.dj-tour360-chevron i {
    color: #DC2626;
    font-size: 14px;
}

.dj-tour360-content {
    display: none;
    margin-top: 16px;
}

.dj-tour360-content.dj-tour360-open {
    display: block;
}

.dj-tour360-chevron-open {
    transform: rotate(180deg);
}

.dj-tour360-iframe-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.dj-tour360-iframe-ratio {
    position: relative;
    padding-top: 56.25%;
}

.dj-tour360-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.dj-tour360-badge-wrap {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
}

.dj-tour360-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.dj-tour360-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(220, 38, 38, 0.04) 100%);
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.dj-tour360-hint-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dj-tour360-hint-icon i {
    color: #fff;
    font-size: 16px;
}

.dj-tour360-hint-title {
    font-size: 13px;
    font-weight: 700;
    color: #1E293B;
}

.dj-tour360-hint-subtitle {
    font-size: 12px;
    color: #64748B;
}

/* Room Modal Close Button */
.dj-room-modal-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    border: none;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: background 0.2s;
}

.dj-room-modal-close-btn i {
    color: #fff;
    font-size: 16px;
}

.dj-room-modal-close-btn:hover {
    background: rgba(0,0,0,0.7);
}

/* Room Modal Actions — pinned below scrollable body */
.dj-room-modal-actions {
    padding: 16px 24px;
    border-top: 1px solid #F1F5F9;
    flex-shrink: 0;
    background: #fff;
}

.dj-room-btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #DC2626;
    color: #fff;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: background 0.2s;
}

.dj-room-btn-book:hover {
    background: #B91C1C;
    color: #fff;
}

.dj-room-modal-capacity-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    padding: 10px 24px;
    background: #F8FAFC;
    border-top: 1px solid #F1F5F9;
    border-radius: 0 0 16px 16px;
    flex-shrink: 0;
}

.dj-room-modal-capacity-bar span {
    font-size: 12px;
    color: #64748B;
    font-weight: 500;
    white-space: nowrap;
}

.dj-room-modal-capacity-bar span i {
    color: #94A3B8;
    margin-right: 4px;
    font-size: 11px;
}

/* Spinner Brand */
.dj-spinner-brand { color: var(--te-color-primary, #DC2626); }

/* Sticky Quote Bar */
.dj-quote-bar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #F8FAFC 100%);
    border-bottom: 3px solid #DC2626;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 14px 0;
    z-index: 1020;
}

.dj-quote-form {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    width: 100%;
}

.dj-quote-venue-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 20px;
    border-right: 2px solid #E2E8F0;
    flex-shrink: 0;
}

.dj-quote-venue-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.dj-quote-venue-icon i {
    color: #fff;
    font-size: 18px;
}

.dj-quote-venue-text {
    display: flex;
    flex-direction: column;
}

.dj-quote-venue-name {
    font-size: 17px;
    font-weight: 700;
    color: #1E293B;
    white-space: nowrap;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dj-quote-venue-subtitle {
    font-size: 13px;
    color: #64748B;
    font-weight: 500;
}

.dj-quote-field {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    padding: 0 14px;
    height: 48px;
    flex: 1;
    min-width: 0;
    transition: all 0.3s ease;
}

.dj-quote-field-hall {
    flex: 1;
}

.dj-quote-field:hover,
.dj-quote-field:focus-within {
    border-color: #DC2626;
}

.dj-quote-field-icon {
    color: #DC2626;
    font-size: 16px;
    flex-shrink: 0;
}

.dj-quote-select,
.dj-quote-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: #1E293B;
    cursor: pointer;
    outline: none;
    padding: 0;
    height: 100%;
    min-width: 0;
}

.dj-quote-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 32px;
    height: 48px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
    flex-shrink: 0;
}

.dj-quote-submit:hover {
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.45);
    transform: translateY(-1px);
}

/* =====================================================
   CMD-MOBILE-FIX-1 — Mobile responsive fixes
   Page-level overflow guard + quote bar + capacity +
   coffee break + font scaling. Desktop untouched.
   ===================================================== */

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    .dj-quote-bar {
        padding: 8px 0;
    }

    .dj-quote-bar .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .dj-quote-form {
        flex-wrap: wrap;
        gap: 6px;
    }

    .dj-quote-venue-info {
        border-right: none;
        padding-right: 0;
        width: 100%;
        gap: 8px;
        margin-bottom: 2px;
    }

    .dj-quote-venue-icon {
        width: 32px;
        height: 32px;
    }

    .dj-quote-venue-icon i {
        font-size: 14px;
    }

    .dj-quote-venue-name {
        font-size: 13px;
        max-width: none;
    }

    .dj-quote-venue-subtitle {
        font-size: 10px;
    }

    .dj-quote-field {
        flex: 1 1 calc(50% - 3px);
        min-width: 0;
        height: 38px;
        padding: 0 8px;
        gap: 5px;
    }

    .dj-quote-select,
    .dj-quote-input {
        font-size: 12px;
    }

    .dj-quote-field-icon {
        font-size: 12px;
    }

    .dj-quote-submit {
        width: 100%;
        height: 40px;
        padding: 0 16px;
        font-size: 13px;
        gap: 6px;
    }

    /* BUG B — capacity row: badge + value overlap fix */
    .venue-room-capacity-item {
        gap: 6px;
        padding: 10px 10px;
    }

    .venue-room-capacity-value {
        flex-shrink: 0;
        min-width: 0;
        text-align: right;
    }

    /* BUG B — studio source badge row wrap */
    .te-studio-source {
        flex-wrap: wrap;
        gap: 6px;
    }

    .te-studio-badge {
        flex: none;
    }

    /* BUG C — features grid: labels don't overlap */
    .venue-detail-feature {
        gap: 10px;
    }

    .venue-detail-feature span {
        font-size: 13px;
        word-break: break-word;
    }

    /* FONT — mobile font size reduction (~1 step smaller) */
    .venue-detail-title {
        font-size: 1.5rem;
    }

    .venue-detail-card-body {
        font-size: 14px;
    }

    .venue-detail-card-header h3 {
        font-size: 16px;
    }

    .venue-room-card-title {
        font-size: 15px;
    }

    .venue-room-capacity-label {
        font-size: 11px;
    }

    .venue-room-capacity-value {
        font-size: 13px;
    }

    .venue-detail-facilities-list span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .dj-quote-field {
        flex: 1 1 100%;
        min-height: 38px;
    }

    .dj-quote-form {
        gap: 6px;
    }

    .dj-quote-venue-name {
        font-size: 12px;
        max-width: 100px;
    }

    .dj-quote-select,
    .dj-quote-input {
        padding: 8px 8px 8px 32px;
        font-size: 13px;
    }

    .dj-quote-field-icon {
        left: 10px;
        font-size: 12px;
    }

    .dj-quote-submit {
        padding: 10px 12px;
        font-size: 13px;
    }

    .venue-room-card-capacities {
        grid-template-columns: 1fr;
    }

    .venue-detail-title {
        font-size: 1.35rem;
    }

    .te-studio-dims {
        grid-template-columns: repeat(2, 1fr);
    }

    .te-studio-dim-num {
        font-size: 24px;
    }

    .te-studio-cap-name {
        min-width: 90px;
        font-size: 13px;
    }

    .te-studio-cap-people {
        font-size: 13px;
    }

    .venue-detail-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .venue-detail-feature-icon {
        width: 48px;
        height: 48px;
    }

    .venue-detail-feature-icon i {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .dj-room-seating-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dj-room-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dj-room-stat {
        padding: 16px 12px;
    }

    .dj-room-stat-value {
        font-size: 28px;
    }
}

/* =====================================================
   SIMILAR VENUES SECTION
   ===================================================== */
.similar-venues-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
}

.similar-venues-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.similar-venues-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.similar-venues-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.similar-venues-icon i {
    color: #fff;
    font-size: 22px;
}

.similar-venues-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1E293B;
    margin: 0 0 4px 0;
}

.similar-venues-subtitle {
    font-size: 14px;
    color: #64748B;
    margin: 0;
}

.similar-venues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.similar-venues-grid .venue-card-ultra {
    animation: none;
    opacity: 1;
}

@media (max-width: 1200px) {
    .similar-venues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 991px) {
    .similar-venues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .similar-venues-section {
        padding: 40px 0 60px;
    }
}

/* =====================================================
   VENUE COMPARISON SYSTEM
   ===================================================== */
.venue-compare-checkbox {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.venue-compare-checkbox:hover {
    border-color: #DC2626;
    background: #fff;
    transform: scale(1.1);
}

.venue-compare-checkbox.is-selected {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-color: #DC2626;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.venue-compare-checkbox i {
    font-size: 16px;
    color: #94A3B8;
    transition: color 0.3s ease;
}

.venue-compare-checkbox.is-selected i {
    color: #fff;
}

.venue-compare-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 16px 0;
    z-index: 1050;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.2);
    border-top: 3px solid #DC2626;
}

.venue-compare-bar.is-visible {
    bottom: 0;
}

.venue-compare-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.venue-compare-bar-items {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    overflow-x: auto;
}

.venue-compare-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    flex-shrink: 0;
}

.venue-compare-bar-item img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.venue-compare-bar-item span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.venue-compare-bar-item-remove {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.venue-compare-bar-item-remove:hover {
    background: #DC2626;
}

.venue-compare-bar-item-remove i {
    color: #fff;
    font-size: 10px;
}

.venue-compare-bar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.venue-compare-bar-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.btn-compare-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    white-space: nowrap;
}

.btn-compare-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.5);
}

.btn-compare-clear {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-compare-clear:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Compare Modal */
.compare-modal-dialog {
    max-width: 1100px;
}

.compare-modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.compare-modal-header {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 20px 28px;
    border: none;
}

.compare-modal-header .modal-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare-modal-header .modal-title i {
    color: #DC2626;
}

.compare-modal-body {
    padding: 0;
    max-height: 75vh;
    overflow-y: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 16px 20px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #F1F5F9;
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: #475569;
    background: #F8FAFC;
    width: 180px;
    min-width: 180px;
    position: sticky;
    left: 0;
    z-index: 2;
}

.compare-table thead th {
    background: #F8FAFC;
    font-size: 14px;
    font-weight: 700;
    color: #1E293B;
    border-bottom: 2px solid #E2E8F0;
}

.compare-table thead th:first-child {
    background: #F1F5F9;
}

.compare-venue-photo {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.compare-venue-name {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    margin-top: 10px;
}

.compare-table td {
    font-size: 14px;
    color: #475569;
}

.compare-rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.compare-rating-stars i {
    color: #FBBF24;
    font-size: 14px;
}

.compare-label-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare-label-cell i {
    color: #DC2626;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.dj-capacity-empty {
    color: #94a3b8;
    font-weight: 500;
}

@media (max-width: 767px) {
    .venue-compare-bar-inner {
        flex-direction: column;
        gap: 12px;
    }
    
    .venue-compare-bar-actions {
        width: 100%;
        justify-content: center;
    }
    
    .compare-modal-dialog {
        max-width: 100%;
        margin: 10px;
    }
    
    .compare-modal-body {
        overflow-x: auto;
    }
    
    .compare-table {
        min-width: 600px;
    }
}
.btn-venue-view:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(220, 38, 38, .35)}

/* =====================================================
   CMD-PUBLIC-REDESIGN-03 — Venue Detail Banani Redesign
   ===================================================== */

/* ===== Breadcrumb ===== */
.vd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0 8px;
    font-size: 14px;
    color: #64748B;
}
.vd-breadcrumb a { color: #2563EB; text-decoration: none; }
.vd-breadcrumb a:hover { text-decoration: underline; }
.vd-breadcrumb-sep { color: #CBD5E1; }
.vd-breadcrumb-current { color: #1E293B; font-weight: 500; }

/* ===== Sidebar ===== */
.vd-sidebar-col { position: sticky; top: 100px; align-self: flex-start; }
.vd-sidebar-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    padding: 24px;
    margin-bottom: 20px;
}

/* Venue Info Card */
.vd-venue-info-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.vd-venue-info-avatar {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: #DC2626;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 20px;
    overflow: hidden; flex-shrink: 0;
}
.vd-venue-info-avatar img { width: 100%; height: 100%; object-fit: cover; }
.vd-venue-info-name { font-size: 16px; font-weight: 700; color: #1E293B; margin: 0; }
.vd-venue-verified-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: #16A34A; font-weight: 500; }
.vd-venue-info-details { border-top: 1px solid #F1F5F9; padding-top: 16px; }
.vd-venue-info-row { padding: 10px 0; border-bottom: 1px solid #F8FAFC; }
.vd-venue-info-label { display: block; font-size: 12px; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.vd-venue-info-value { font-size: 14px; color: #1E293B; font-weight: 500; word-break: break-word; overflow-wrap: break-word; }
.vd-venue-info-link {
    display: inline-block;
    color: #2563EB;
    text-decoration: none;
    cursor: pointer;
}
.vd-venue-info-link:hover { color: #1D4ED8; text-decoration: underline; }
.vd-venue-info-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.vd-btn-primary {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #DC2626; color: #fff; border: none; border-radius: 8px;
    padding: 14px 24px; font-weight: 700; font-size: 16px;
    width: 100%; text-align: center; text-decoration: none; cursor: pointer; transition: background 0.2s;
}
.vd-btn-primary:hover { background: #B91C1C; color: #fff; }
.vd-btn-secondary {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #fff; color: #1E293B; border: 2px solid #E2E8F0; border-radius: 8px;
    padding: 14px 24px; font-weight: 700; font-size: 16px;
    width: 100%; text-align: center; cursor: pointer; transition: all 0.2s;
}
.vd-btn-secondary:hover { border-color: #DC2626; color: #DC2626; }

/* Price Range Card */
.vd-price-range-card {
    background: #fff; border-radius: 12px; border: 1px solid #E2E8F0;
    border-left: 4px solid #DC2626; padding: 20px; margin-bottom: 16px;
}
.vd-price-range-title { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #64748B; font-weight: 700; margin: 0 0 8px; }
.vd-price-range-value { font-size: 28px; font-weight: 800; color: #1E293B; margin: 0 0 6px; }
.vd-price-range-note { font-size: 13px; color: #64748B; margin: 0 0 12px; }
.vd-price-range-disclaimer {
    font-size: 12px; color: #94A3B8; background: #F8FAFC;
    border: 1px solid #E2E8F0; border-radius: 8px; padding: 10px 12px; line-height: 1.4;
}

/* Evidence Sidebar Card */
.vd-evidence-sidebar-card { border-left: none; }
.vd-evidence-sidebar-title { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #64748B; font-weight: 600; margin-bottom: 16px; }
.vd-evidence-sidebar-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0; padding-left: 12px; border-bottom: 1px solid #F1F5F9;
    border-left: 3px solid transparent;
}
.vd-evidence-sidebar-row:nth-child(1) { border-left-color: #DC2626; }
.vd-evidence-sidebar-row:nth-child(2) { border-left-color: #F59E0B; }
.vd-evidence-sidebar-row:nth-child(3) { border-left-color: #2563EB; }
.vd-evidence-sidebar-row span { font-size: 14px; color: #64748B; }
.vd-evidence-sidebar-row strong { font-size: 16px; color: #1E293B; }

/* ===== Hero Rating ===== */
.vd-hero-rating-score { color: #fff; font-weight: 700; font-size: 16px; margin-left: 8px; }
.vd-hero-rating-count { color: rgba(255,255,255,0.8); font-size: 14px; margin-left: 4px; }

/* ===== Quote Bar Slim ===== */
.vd-quote-form-slim { display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; }
.vd-quote-fields { display: flex; align-items: center; gap: 12px; flex: 1; }
.vd-quote-venue-strip { display: flex; align-items: center; gap: 10px; padding: 8px 0 12px; }
.vd-quote-venue-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: #DC2626; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; overflow: hidden; flex-shrink: 0;
}
.vd-quote-venue-icon img { width: 100%; height: 100%; object-fit: cover; }
.vd-quote-venue-strip strong { display: block; font-size: 14px; color: #1E293B; }

/* ===== Gallery Grid (1+3 layout) ===== */
.vd-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 420px;
    gap: 8px;
    border-radius: 16px;
    overflow: hidden;
}
.vd-gallery-main { cursor: pointer; overflow: hidden; min-height: 0; }
.vd-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.vd-gallery-main:hover img { transform: scale(1.03); }
.vd-gallery-side { display: flex; flex-direction: column; gap: 8px; min-height: 0; overflow: hidden; }
.vd-gallery-side-item { cursor: pointer; flex: 1; overflow: hidden; min-height: 0; }
.vd-gallery-side-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.vd-gallery-side-item:hover img { transform: scale(1.05); }

/* ===== Room Cards (Banani layout) ===== */
.vd-rooms-cards { display: flex; flex-direction: column; gap: 20px; }
.vd-room-card {
    display: flex; gap: 20px;
    background: #fff; border: 1px solid #E2E8F0;
    border-radius: 16px; overflow: hidden;
    transition: box-shadow 0.2s;
}
.vd-room-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.vd-room-card-image {
    position: relative;
    width: 260px; min-height: 180px; flex-shrink: 0; overflow: hidden;
    align-self: stretch;
    background: #0F2744;
}
.vd-room-card-image-wait {
    background: linear-gradient(90deg, #F1F5F9 25%, #E2E8F0 50%, #F1F5F9 75%);
    background-size: 200% 100%;
    animation: vd-room-shimmer 1.5s infinite;
}
.vd-room-card-image-wait.is-loaded {
    animation: none;
    background: #0F2744;
}
@keyframes vd-room-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.vd-room-card-image img.loaded,
.vd-room-card-image .carousel {
    position: relative;
    z-index: 1;
}
.vd-room-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vd-room-card-photo { cursor: pointer; }
.vd-room-card-carousel,
.vd-room-card-carousel .carousel-inner,
.vd-room-card-carousel .carousel-item { height: 100%; min-height: 180px; }
.vd-room-card-carousel .carousel-item img { cursor: pointer; }
.vd-room-photo-count {
    position: absolute; left: 10px; bottom: 10px; z-index: 2;
    background: rgba(15, 39, 68, 0.88); color: #fff;
    border-radius: 20px; padding: 4px 10px;
    font-size: 12px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
    pointer-events: none;
}
.vd-room-360-badge {
    position: absolute; top: 10px; right: 10px; z-index: 3;
    background: rgba(15, 39, 68, 0.92); color: #fff;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 20px; padding: 4px 12px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.4px;
    cursor: pointer;
}
.vd-room-360-badge:hover { background: #0F2744; color: #fff; }
.vd-room-card-placeholder {
    width: 100%; height: 100%; min-height: 180px;
    background: linear-gradient(135deg, #0F2744 0%, #1B3A5F 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.vd-room-card-placeholder-hit { cursor: pointer; }
.vd-room-card-initial {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255,255,255,0.15); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 700;
}
.vd-room-card-placeholder-area {
    font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500;
}
.vd-room-card-body { flex: 1; padding: 20px; display: flex; flex-direction: column; }
.vd-room-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.vd-room-card-name { font-size: 18px; font-weight: 700; color: #1E293B; margin: 0; }
.vd-room-card-area {
    background: #F1F5F9; padding: 4px 12px; border-radius: 20px;
    font-size: 13px; font-weight: 600; color: #64748B; white-space: nowrap;
}
.vd-room-card-desc { font-size: 14px; color: #64748B; line-height: 1.5; margin-bottom: 12px; }
.vd-room-card-caps { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.vd-room-cap-pill {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 13px; color: #64748B;
}
.vd-room-cap-pill i { color: #DC2626; font-size: 12px; }
.vd-room-cap-pill strong { color: #1E293B; }
.vd-room-detail-btn {
    align-self: flex-start;
    background: #fff; color: #DC2626; border: 2px solid #DC2626;
    border-radius: 10px; padding: 8px 24px;
    font-weight: 700; font-size: 14px; cursor: pointer;
    transition: all 0.2s;
}
.vd-room-detail-btn:hover { background: #DC2626; color: #fff; }

/* ===== Map Popup ===== */
.vd-map-popup { text-align: center; padding: 8px; }
.vd-map-popup strong { display: block; font-size: 15px; color: #1E293B; margin-bottom: 4px; }
.vd-map-popup-address { font-size: 13px; color: #64748B; margin-bottom: 10px; }
.vd-map-popup-btn {
    display: inline-block; background: #DC2626; color: #fff;
    padding: 8px 20px; border-radius: 20px; font-size: 13px;
    font-weight: 600; text-decoration: none; transition: background 0.2s;
}
.vd-map-popup-btn:hover { background: #B91C1C; color: #fff; }

/* ===== Availability Calendar Colors ===== */
.vd-avail-available { background: #16A34A !important; color: #fff !important; border-radius: 8px; }
.vd-avail-booked { background: #DC2626 !important; color: #fff !important; border-radius: 8px; }
.vd-avail-optional { background: #F59E0B !important; color: #fff !important; border-radius: 8px; }
.vd-avail-unknown { background: #E2E8F0 !important; color: #94A3B8 !important; border-radius: 8px; }

/* ===== CMD-03 Responsive ===== */
@media (max-width: 991px) {
    .vd-sidebar-col { position: static; margin-top: 32px; }
    .vd-quote-form-slim { flex-direction: column; gap: 8px; }
    .vd-quote-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }
    .vd-quote-fields .dj-quote-field {
        width: 100%;
        height: 42px;
        padding: 0 10px;
    }
    .vd-quote-fields .dj-quote-field:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
    .dj-quote-submit { width: 100%; }
    .vd-quote-field-mobile-only { display: block !important; }
}
@media (min-width: 992px) {
    .vd-quote-venue-strip { display: none !important; }
}
@media (max-width: 991px) {
    .vd-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .vd-gallery-main { aspect-ratio: 16/10; min-height: 0; }
    .vd-gallery-main img { display: block; object-position: center; }
    .vd-gallery-side { flex-direction: row; }
    .vd-gallery-side-item { aspect-ratio: 4/3; flex: none; width: calc(33.33% - 6px); }
    .vd-gallery-side-item img { display: block; object-position: center; }
    .vd-room-card { flex-direction: column; }
    .vd-room-card-image { width: 100%; min-height: 200px; border-radius: 16px 16px 0 0; }
    .vd-room-card-body { padding: 16px; }
    .vd-room-detail-btn { width: 100%; text-align: center; justify-content: center; display: flex; }
    .venue-detail-features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .venue-detail-feature { padding: 16px 8px; }

    .te-venue-preview-title { display: none; }
    .te-studio-filter { display: none !important; }
    .te-card-tab[data-card-tab="360"] { display: none !important; }
    .te-studio-layout-chips {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 2px 0 6px;
    }
    .te-studio-layout-chip {
        flex: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        border: 1.5px solid #CBD5E1;
        border-radius: 999px;
        background: #FFFFFF;
        color: #1E293B;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
    }
    .te-studio-layout-chip.is-active {
        background: #DC2626;
        border-color: #DC2626;
        color: #FFFFFF;
    }
    .te-studio-filter .te-venue-preview-field:first-child { display: none; }
    .te-card-tabs {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }
    .te-card-tab {
        justify-content: center;
        border-radius: 10px;
        padding: 12px 10px;
        font-size: 14px;
        background: #FFFFFF;
        color: #1E293B;
        border: 1.5px solid #CBD5E1;
    }
    .te-card-tab.is-active {
        background: #DC2626;
        border-color: #DC2626;
        color: #FFFFFF;
    }
    .te-studio-pills {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0;
        max-height: 260px;
        overflow-y: auto;
        border: 1px solid #E2E8F0;
        border-radius: 12px;
        padding: 0;
    }
    .te-studio-pill {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 16px;
        border: none;
        border-bottom: 1px solid #F1F5F9;
        border-radius: 0;
        gap: 8px;
        min-width: 0;
    }
    .te-studio-pill:first-child { border-radius: 12px 12px 0 0; }
    .te-studio-pill:last-child { border-radius: 0 0 12px 12px; border-bottom: none; }
    .te-studio-pill.is-active {
        background: #FEF2F2;
        border-left: 3px solid #DC2626;
        border-color: transparent;
        border-left-color: #DC2626;
        border-bottom-color: #F1F5F9;
    }
    .te-studio-pill.is-active .te-studio-pill-name { color: #DC2626; }
    .te-studio-pill.is-active .te-studio-pill-meta { color: #64748B; }
    .te-studio-pill-name {
        font-size: 14px; font-weight: 600; color: #1E293B;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .te-studio-pill-meta {
        font-size: 13px; font-weight: 600; color: #64748B;
        white-space: nowrap; flex-shrink: 0;
    }
    .te-studio-table-toggle {
        display: flex !important;
        width: 100%;
        justify-content: center;
    }
}

/* CMD 141 — hide studio-page quote bar on mobile; keep labels inside fields */
@media (max-width: 991px) {
    #venueQuoteBar.te-studio-mobile-hide {
        display: none !important;
    }
    body:has(#teVenuePreviewCard) .venue-detail-hero-ultra,
    body:has(#teVenuePreviewCard) .vd-breadcrumb {
        display: none !important;
    }
    .vd-quote-fields .dj-quote-field {
        min-width: 0;
        overflow: hidden;
    }
    .vd-quote-fields .dj-quote-select,
    .vd-quote-fields .dj-quote-input {
        min-width: 0;
        width: 100%;
        padding-left: 0;
        font-size: 13px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    .vd-quote-fields .dj-quote-field-icon {
        position: static;
        left: auto;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .vd-quote-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }
    .vd-quote-fields .dj-quote-field {
        flex: none;
        width: 100%;
    }
    .vd-quote-fields .dj-quote-select,
    .vd-quote-fields .dj-quote-input {
        padding: 0;
        font-size: 12px;
    }
}
