/* Single Venue Page Styles */
.single-venue * {
    font-family: "poppins", sans-serif;
}

.map-fullscreen-controls {
    display: flex;
    min-width: 160px;
    height: 100%;
}

/* scale the pin when user hovers the marker */
/* #single-venue-map img[alt*="blacePinLogo"],
#single-venue-map img[src*="blacePinLogo"] {
    transition: transform .2s ease !important;
} */

#single-venue-map img[alt*="blacePinLogo"]:hover,
#single-venue-map img[src*="blacePinLogo"]:hover {
    transform: scale(1.2) !important;
}

.single-venue {
    font-family: "poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Hero Gallery Section */
.venue-hero-gallery {
    position: relative;
    margin-bottom: 0px;
}

.hero-gallery-container {
    display: flex;
    gap: 8px;
    height: 500px;
    border-radius: 0px;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
}

.hero-main-slider {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    flex: 2;
}

.main-hero-swiper {
    width: 100%;
    height: 100%;
}

.main-hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

/* 
.hero-slide-image:hover img {
    transform: scale(1.02);
} */

.hero-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: #eff2f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0;
}

.hero-main-slider:hover .hero-nav-button {
    opacity: 1;
}

.hero-prev {
    left: 16px;
}

.hero-next {
    right: 16px;
}

/* .hero-nav-button:hover {
    background: white;
} */

.hero-nav-button svg {
    fill: #333;
}

/* Swiper Pagination Dots */
.swiper-pagination {
    position: absolute !important;
    bottom: 16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 8px !important;
    z-index: 10 !important;
    opacity: 1 !important;
    /* Always visible like in the reference image */
    width: auto !important;
    height: auto !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.6) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
}

.swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 1) !important;
    transform: scale(1.2) !important;
    border-color: rgba(255, 255, 255, 1) !important;
}

.swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: scale(1.1) !important;
}

.hero-right-grid {
    display: flex;
    max-width: 30%;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: space-between;
}

.hero-right-grid .hero-grid-image:nth-child(1) {
    width: 100%;
    height: 48%;
    max-width: 100%;
    margin-bottom: 2%;

}

.hero-right-grid .hero-grid-image:nth-child(1).no_third {
    width: 100%;
    height: 100%;
    margin-bottom: 0%;
}

.hero-right-grid .hero-grid-image:nth-child(2) {
    width: 100%;
    height: 50%;
    max-width: 48.5%;
}

.hero-right-grid .hero-grid-image:nth-child(2).no_forth {
    max-width: 100%;
}

.hero-right-grid .hero-grid-image:nth-child(3) {
    width: 100%;
    height: 50%;
    max-width: 48.5%;
}

.hero-grid-image {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    cursor: pointer;
    max-width: 48%;
    width: 100%;
}

.hero-grid-image:last-child {
    max-width: 100%;
}

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

/* .hero-grid-image:hover img {
    transform: scale(1.05);
} */

.hero-grid-image.has-see-all {
    position: relative;
}

.see-all-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.hero-share-btn {
    position: absolute;
    top: 32px;
    right: 12px;
    border: none;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 15;
    background-color: #787470;
    color: #ffffff;
    border-width: 1px;
    border-style: solid;
    border-image: initial;
    border-radius: 2px;
    border-color: #ffffff;

}

.hero-share-btn span {
    display: flex;
    justify-content: center;
    align-items: center;

}

.hero-share-btn svg {
    width: 100%;
    max-width: 15px;
    fill: #ffffff;
}

.hero-share-btn:hover {
    opacity: 0.8;
}

.badge-exclusive-large {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #1a1a1a;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 15;
}

/* Number of Floors Section */
.venue-floors {
    margin-bottom: 40px;
}

.venue-floors h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floors-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #666;
}

.floors-icon {
    font-size: 20px;
    color: #4f46e5;
}

/* Video Walkthrough Section */
.venue-video-walkthrough {
    margin-bottom: 40px;
}

.venue-video-walkthrough h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
}

.video-container {
    border-radius: 0px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.video-embed-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-player-wrapper {
    position: relative;
    width: 100%;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    display: block;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-player-wrapper video {
    width: 100%;
    height: auto;
    border-radius: 0px !important;
    max-height: 400px;
    min-height: 200px;
}

.amenity-icon svg {
    max-width: 20px;
    height: auto;
    width: 100%;

}

/* Hero Gallery Section */
.venue-hero {
    position: relative;
    margin-bottom: 40px;
}

.venue-hero-gallery {
    /* display: grid;
    grid-template-columns: 2fr 1fr; */
    gap: 10px;
    /* height: 662px; */
    background-color: #ffffff !important;
}

.venue-hero-gallery .col-12 {
    position: relative !important;
}

.hero-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

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

.hero-main-image:hover img {
    transform: scale(1.02);
}

.hero-thumbnails-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.hero-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

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

.hero-thumb:hover img {
    transform: scale(1.05);
}

.hero-thumb.has-overlay {
    position: relative;
}

.see-all-overlay .see-all-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 15;
    background-color: #787470;
    color: #ffffff;
    border-width: 1px;
    border-style: solid;
    border-image: initial;
    border-radius: 2px;
    border-color: #ffffff;
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 5px 15px;
}

.see-all-overlay .see-all-text:hover {
    opacity: 0.7;
}





.badge-exclusive-large {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #1a1a1a;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-info-bar {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.hero-info-item .icon {
    font-size: 18px;
}

.hero-show-map-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-show-map-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.badge-exclusive-large {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #1a1a1a;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

/* Main Layout */
.venue-single-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

/* Venue Header */
/* .venue-header {
    margin-bottom: 40px;
} */

.venue-address {
    color: #666;
    margin: 0 0 10px 0;
    font-size: 14px;
}

.location-icon {
    margin-right: 5px;
}

.venue-subheading {
    color: #666;
    font-size: 18px;
    margin: 0 0 30px 0;
}

.venue-tabs {
    border-bottom: 2px solid #f0f0f0;
    background-color: #ffffff;
    margin-bottom: 30px;
    position: sticky;
    top: 88px;
    z-index: 11;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 15px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #616161;
    cursor: pointer;
    border-bottom: 0px solid #616161;
    margin-bottom: -2px;

}

.tab-btn:hover {
    color: rgba(46, 84, 235, 1);
    background-color: #FAFAFA !important;
    border-bottom: 0px solid rgba(46, 84, 235, 1);

}

.tab-btn:hover svg {
    fill: rgba(46, 84, 235, 1);

}

.tab-btn.active {
    color: rgba(46, 84, 235, 1);
    border-bottom: 3px solid rgba(46, 84, 235, 1);

}

.tab-btn span {
    display: flex;
    justify-content: center;
    align-items: center;

}

.tab-btn svg {
    max-width: 20px;
    width: 100%;
    fill: #616161;

}

.tab-btn.active svg {
    max-width: 20px;
    width: 100%;
    fill: rgba(46, 84, 235, 1);

}

.tab-btn.active {
    color: rgba(46, 84, 235, 1);
    border-bottom-color: rgba(46, 84, 235, 1);
}

.tab-icon {
    font-size: 18px;
}

/* Description */
.venue-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 21.4px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(17, 25, 54, 1);
    margin: 0px;
    margin-bottom: 24px;
    /* margin-top: 24px; */
    padding: 0px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
}

/* Capacity Section */
.venue-capacity {
    margin-bottom: 40px;
}

.venue-capacity h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0px;
}



/* Location Section */
.venue-location-section {
    margin-bottom: 40px;
}

.venue-location-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-address {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.embedded-map-container {
    overflow: hidden;
    position: relative;
    margin-top: 14px;
}

.single-venue-map {
    width: 100%;
    height: 400px;
    background: #f8f9fa;
}

/* Ensure Google Maps controls are visible */
.single-venue-map .gm-fullscreen-control,
.single-venue-map .gm-svpc {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide zoom controls */
.single-venue-map .gm-zoom-control {
    display: none !important;
}

/* Style the native fullscreen control */
.single-venue-map .gm-fullscreen-control {
    top: 10px !important;
    right: 10px !important;
}

/* Ensure controls are above other elements */
.single-venue-map .gmnoprint {
    z-index: 1000 !important;
}

/* Custom Fullscreen Button */







/* Google Maps InfoWindow Styling */
.gm-style .gm-style-iw-c {
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
}

.venue-info-window {
    width: 280px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.venue-info-header {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.venue-info-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.venue-info-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.venue-info-slide.active {
    opacity: 1;
}

.venue-info-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-info-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.venue-info-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
    pointer-events: none;
}

.venue-info-prev,
.venue-info-next {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    pointer-events: all;
}

.venue-info-prev:hover,
.venue-info-next:hover {
    /* background: rgba(0, 0, 0, 0.8); */
}


.venue-info-prev {
    margin-left: 0px !important;
}

.venue-info-next {
    margin-right: 0p !important;
}

.venue-info-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.venue-info-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.venue-info-dot.active {
    background: rgba(255, 255, 255, 1);
}

.venue-info-content {
    padding: 16px;
}

.venue-info-location {
    color: #666;
    font-size: 12px;
    margin-bottom: 4px;
}

.venue-info-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    color: #333;
}

.venue-info-details {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
}

.venue-info-details .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #999;
}

.venue-info-price {
    font-weight: 600;
    color: #333;
}

.venue-info-link {
    display: inline-block;
    background: #4f46e5;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.venue-info-link:hover {
    background: #3730a3;
    text-decoration: none;
    color: white;
}

/* Amenities Section */
.venue-amenities {
    margin-bottom: 40px;
}

.venue-amenities h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amenities-grid {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    row-gap: 24px;
    flex-wrap: wrap;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0px 0;
    max-width: fit-content;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 21.4px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(17, 25, 54, 1);

}

.amenity-item.unactive * {
    color: #9e9e9e;
    fill: #9e9e9e;

}

.amenity-item.unactive span:not(.amenity-icon) {
    text-decoration: line-through;

}

.amenity-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.amenity-icon svg {
    /* fill: rgba(17, 25, 54, 1) !important; */

}

.amenity-icon>div {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Gallery Section */
.venue-gallery-section {
    margin-bottom: 50px;
}

.venue-gallery-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.venue-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

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

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

/* Sidebar */
.venue-sidebar {
    position: sticky;
    top: 75px;
    height: fit-content;
    /* /* visibility: hidden; */
}

/* Booking Card */
.form_list_by_blace {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    border: 1px solid #E0E0E0;
    border-bottom: 0px;
    padding: 15px 12px;
}

.form_list_by_blace h5 {
    margin: 0;
    font-size: 0.875rem;
    color: #212121;
    font-weight: 500;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.venue-sidebar.multi_select {
    top: 90px;
}

.venue-sidebar.multi_select h3 {
    font-weight: 700;
    font-size: 20.6px;
    line-height: 28.9px;
    text-align: center;
    margin: 0px;
    padding: 0px;
    margin-bottom: 14px;
    color: rgba(33, 33, 33, 1);

}

.venue-sidebar.multi_select p {
    font-weight: 400;
    font-size: 10.3px;
    line-height: 16px;
    text-align: center;
    margin: 0px;
    padding: 0px;
    margin-bottom: 20px;
    color: rgba(33, 33, 33, 1);
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;

}

.booking-card {
    /* position: sticky;
    top: 40px; */
    background: #fff;
    border: 1px solid #DFE3EF;
    border-radius: 2px;
    border-radius: 0px;
    padding: 24px 12px;
    margin-bottom: 30px;


}

.booking-card.get-started-card {
    /* position: sticky;
    top: 40px; */
    background: #F7F9FF;
    border: 1px solid #DFE3EF;
    border-radius: 2px;
    border-radius: 0px;
    padding: 40px 35px;
    margin-bottom: 30px;


}

.booking-card p.starting_at_text {
    font-weight: 500;
    font-size: 10.3px;
    line-height: 14.45px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: rgba(33, 33, 33, 1);
    margin: 0px;

}

.price-display {
    text-align: center;
    /* margin-bottom: 30px; */
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20.6px;
    line-height: 28.9px;
    text-align: center;
    margin-bottom: 10px;
}


/* Website and Share Cards */
.website-card,
.share-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.share-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn,
.btn-website {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.share-btn:hover,
.btn-website:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Similar Venues Section */
.similar-venues-section {
    padding: 0;
    padding-top: 0px;
    padding-bottom: 60px;
}

.similar-venues-container {
    margin: 0 auto;
}

.similar-venues-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 30px; */
}



.swiper-nav-buttons {
    display: flex;
    gap: 10px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: static;
    margin: 0;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 0px;
    font-weight: bold;
    color: #333;
}

/* Venue Cards in Slider */
.venue-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

/* .venue-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
} */

.venue-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.venue-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-placeholder-image {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ccc;
}

.venue-card .badge-exclusive {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1a1a1a;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.venue-card-content {
    padding: 20px;
}

.venue-card-location {
    color: #666;
    font-size: 12px;
    margin-bottom: 8px;
}

.venue-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.venue-card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.venue-card-price {
    font-weight: 600;
    color: #333;
}

.no-venues-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

/* Map Modal */
.map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.map-modal-content {
    position: relative;
    width: 90%;
    height: 80%;
    max-width: 1000px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.map-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.map-modal-map {
    width: 100%;
    height: 100%;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* .lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: white;
} */

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .venue-info-nav {
        width: 96% !important;
    }

    .form_list_by_blace h5 {
        font-size: 12px;
        line-height: 1.4;
    }

    /* Hero Gallery Mobile Styles */
    .hero-gallery-container {
        flex-direction: column;
        height: auto;
        gap: 4px;
    }

    .hero-main-slider {
        /* height: 300px;
        flex: none; */
        height: 330px;
        /* height: 100%; */
        flex: none;
    }

    .hero-right-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: 150px;
        /* height: 100%; */
        gap: 0px;
        flex: none;
    }

    .hero-nav-button {
        width: 30px;
        height: 30px;
        opacity: 1;
    }

    .hero-prev {
        left: 12px;
    }

    .hero-next {
        right: 12px;
    }

    .swiper-pagination {
        bottom: 12px;
    }

    .hero-share-btn {
        top: 12px;
        right: 12px;
        padding: 5px 8px;
        font-size: 11px;
    }

    .see-all-overlay .see-all-text {
        font-size: 12px;
        line-height: 16px;
        padding: 5px 10px;
    }


    .badge-exclusive-large {
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 10px;
    }

    .venue-single-container {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .venue-quick-info {
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }






    .embedded-venue-map,
    .single-venue-map {
        height: 350px;
    }





    .video-embed-wrapper {
        padding-bottom: 56.25%;
    }
}

/* Additional styles for improved venue template */

/* Venue Title */
.venue-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 32.68px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(33, 33, 33, 1);
    margin: 0px;
    margin-bottom: 8px;
    padding: 0px;

}

/* Square Footage Section */
.venue-square-footage {
    margin-bottom: 40px;
}

.venue-square-footage h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.square-footage-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #666;
}

.square-footage-icon {
    font-size: 20px;
    color: #4f46e5;
}

/* Contact Card */
.contact-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 16px;
}

.contact-item a {
    color: #4f46e5;
    text-decoration: none;
    font-size: 14px;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Price Note */
.price-note {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Badge positioning for new gallery structure */
.venue-image-gallery {
    position: relative;
}

.venue-image-gallery .badge-exclusive-large {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 15;
}

.venue-image-gallery .hero-share-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 15;
}

/* Improved responsive design for mobile */
@media (max-width: 767.98px) {
    .venue-title {
        font-size: 24px;
    }

    .venue-image-gallery .badge-exclusive-large,
    .venue-image-gallery .hero-share-btn {
        top: 15px;
    }

    .venue-image-gallery .badge-exclusive-large {
        left: 15px;
        padding: 6px 12px;
        font-size: 10px;
    }

    .venue-image-gallery .hero-share-btn {
        right: 15px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .contact-card {
        padding: 15px;
    }

    .square-footage-info,
    .floors-info {
        font-size: 14px;
    }
}

/* Ensure proper image aspect ratios */
.hero-slide-image img,
.hero-grid-image img,
.hero-main-image img,
.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Loading states */
.hero-slide-image img,
.hero-grid-image img {
    background: #f5f5f5;
    transition: opacity 0.3s ease;
}

.hero-slide-image img:not([src]),
.hero-grid-image img:not([src]) {
    opacity: 0;
}

/* Improved carousel pagination */
.swiper-pagination {
    opacity: 1 !important;
    /* Always visible */
    transition: opacity 0.3s ease;
}

/* Better hover effects */
.lightbox-trigger {
    transition: transform 0.3s ease;
}

/* .lightbox-trigger:hover {
    transform: scale(1.02);
} */

/* Accessibility improvements */
/* .hero-nav-button:focus,
.hero-indicator-btn:focus,
.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
} */

/* Print styles */
@media print {

    .hero-nav-button,
    .swiper-pagination,
    .hero-share-btn,
    .lightbox-modal,
    .map-modal,
    .similar-venues-section {
        display: none !important;
    }

    .venue-single-container {
        grid-template-columns: 1fr;
    }

    .venue-sidebar {
        display: none;
    }
}

/* Additional fallback styles for Swiper pagination */
.main-hero-swiper .swiper-pagination {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 999 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    width: auto !important;
    height: auto !important;
}

.main-hero-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: #afafaf !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    margin: 0 0px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    /* transform: scale(0.8) !important; */
    border: 0px !important;
}

.main-hero-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #1f1f1f !important;
    /* transform: scale(1) !important; */
}

/* Debug styles - remove after testing */


/* Single Venue Page - Venue Card Slider Styles */
.venue-card-swiper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.venue-card-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.venue-card-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.venue-card-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Venue card navigation buttons - using unique classes to avoid conflicts */
.venue-card-nav-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 28px !important;
    height: 28px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    border: none !important;
}

.venue-card:hover .venue-card-nav-btn {
    opacity: 1;
    visibility: visible;
}

.venue-card-nav-btn:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.venue-card-next {
    right: 8px !important;
}

.venue-card-prev {
    left: 8px !important;
}

.venue-card-nav-btn svg {
    width: 12px !important;
    height: 12px !important;
    fill: #333 !important;
}

/* Venue card pagination dots - using unique classes */
.venue-card-dots {
    position: absolute !important;
    bottom: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    display: flex !important;
    gap: 2px !important;
    z-index: 10 !important;
}

.venue-card-dots .swiper-pagination-bullet {
    width: 7px !important;
    height: 7px !important;
    background: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
    margin: 0 !important;
    border: 0px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
    cursor: pointer !important;
}

.venue-card-dots .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 1) !important;
    transform: scale(1.2) !important;
    border-color: rgba(0, 0, 0, 0.4) !important;
}

.venue-card-dots .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: scale(1.1) !important;
}

/* Remove old conflicting styles */
.venue-card-swiper .swiper-button-next,
.venue-card-swiper .swiper-button-prev {
    display: none !important;
}

.venue-card-swiper .swiper-pagination {
    display: none !important;
}

/* Prevent parent slider interference */
.venue-card.slider-interacting,
.venue-card.slider-active {
    pointer-events: none;
}

.venue-card.slider-interacting .venue-card-swiper,
.venue-card.slider-active .venue-card-swiper {
    pointer-events: auto;
}

/* Ensure slider controls are always clickable */
.venue-card-nav-btn,
.venue-card-dots {
    pointer-events: auto !important;
    z-index: 15 !important;
}

/* Mobile responsive */
@media (max-width: 767.98px) {
    .venue-card-nav-btn {
        width: 24px !important;
        height: 24px !important;
    }

    .venue-card-nav-btn svg {
        width: 10px !important;
        height: 10px !important;
    }
}

/* Prevent Slider Interaction Conflicts */
.venue-card-swiper {
    position: relative;
    z-index: 2;
}

/* Stop propagation on inner slider interactions */
.venue-card-swiper .swiper-wrapper,
.venue-card-swiper .swiper-slide,
.venue-card-nav-btn,
.venue-card-dots {
    pointer-events: auto;
    z-index: 3;
}

/* Prevent main slider from capturing events when interacting with inner slider */
.venue-card-swiper:hover {
    z-index: 10;
}

.venue-card-swiper .swiper-wrapper {
    touch-action: none;
}

/* Main slider should have lower z-index */
.similar-venues-swiper {
    z-index: 1;
}

/* Prevent click propagation during inner slider interaction */
.venue-card-swiper.swiper-slide-active {
    pointer-events: auto;
}

/* Ensure venue card click doesn't interfere with slider navigation */
.venue-card-nav-btn,
.venue-card-dots {
    position: relative;
    z-index: 15;
    pointer-events: auto;
}

/* Prevent venue card onclick when clicking slider controls */
.venue-card-nav-btn:hover,
.venue-card-dots:hover {
    cursor: pointer;
}

/* Additional Slider Conflict Prevention */
.venue-card.slider-interacting,
.venue-card.slider-changing {
    pointer-events: none;
}

.venue-card.slider-interacting .venue-card-swiper,
.venue-card.slider-changing .venue-card-swiper {
    pointer-events: auto;
}

/* Disable main slider swiping when interacting with inner slider */
.similar-venues-swiper.swiper-no-swiping {
    touch-action: none;
}

.similar-venues-swiper.swiper-no-swiping .swiper-wrapper {
    transform: none !important;
}

/* Prevent text selection during slider interactions */
.venue-card-swiper * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Visual feedback for slider interaction */
.venue-card.slider-interacting {
    cursor: default;
}

.venue-card-swiper:active {
    cursor: grabbing;
}

/* Force arrows to show when venue has multiple images */
.venue-card-swiper[data-venue-id] .venue-card-nav-btn {
    opacity: 0 !important;
    visibility: visible !important;
}

.venue-card-swiper[data-venue-id]:hover .venue-card-nav-btn {
    opacity: 1 !important;
}

/* Ensure arrows work on touch devices */
@media (hover: none) and (pointer: coarse) {
    .venue-card-nav-btn {
        opacity: 0.8 !important;
        visibility: visible !important;
    }
}

/* Ensure arrows don't interfere with image */
.venue-card-swiper .swiper-slide img {
    pointer-events: none;
}


/* custom */

.similar-venues-section {
    margin-top: 24px;
}

.similar-venues-swiper {
    padding-left: 9%;
}

.similar-venues-swiper .swiper-slide {
    max-width: 340px;
}

@media (min-width:1599.98px) {
    .similar-venues-swiper {
        max-width: 1250px;
        margin: auto;
        padding-left: 0px;
        padding: 0px 0px;
    }

    .similar-venues-swiper .swiper-slide {
        max-width: 100%;
    }
}

@media (max-width:1600px) and (min-width:1570px) {
    .similar-venues-swiper {
        padding-left: 10.8%;
    }


}

@media (max-width:1570px) and (min-width:1530px) {
    .similar-venues-swiper {
        padding-left: 10%;
    }


}

@media (max-width:1530px) {
    .similar-venues-swiper .swiper-slide {
        max-width: 100%;
    }

    .similar-venues-container {
        margin: 0 auto;
        padding: 0px 15px;
    }

    .similar-venues-swiper {
        max-width: 1250px;
        margin: auto;
        padding-left: 0px;
        padding: 0px 0px;
    }

    .similar-venues-swiper {
        padding-left: 0% !important;
    }
}


/* Similar Venues Navigation Arrows */
.similar-venues-prev,
.similar-venues-next {
    width: 40px !important;
    height: 40px !important;
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: static !important;
    margin: 0 !important;
    z-index: 10 !important;
}

.similar-venues-prev:hover,
.similar-venues-next:hover {
    background: #f5f5f5 !important;
    border-color: #ccc !important;
}

.similar-venues-prev::after,
.similar-venues-next::after {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #333 !important;
}

.similar-venues-swiper .swiper-slide {
    margin-bottom: 15px;
}

/* Ensure similar venues arrows don't conflict with venue card arrows */
.similar-venues-swiper .similar-venues-prev,
.similar-venues-swiper .similar-venues-next {
    pointer-events: auto !important;
    z-index: 15 !important;
}

.similar-next svg,
.similar-prev svg {
    max-width: 17px;
    height: auto;
}

.similar-next,
.similar-prev {
    border: 0px solid #ffffff !important;
}


/* custom */

/* single modal  */
/* Modal Overlay */
.booking-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal-overlay.active {
    display: block;
    opacity: 1;
}

/* Modal Container */
.booking-card.modal-active {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    cursor: grab;
}

.booking-card.modal-active:active {
    cursor: grabbing;
}

/* Drag handle indicator */
.modal-drag-handle {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 10px auto 10px;
    cursor: grab;
}

.modal-drag-handle:active {
    cursor: grabbing;
}

/* Mobile Modal - Slide from Bottom */
@media (max-width: 767.98px) {
    .booking-card.modal-active {
        top: auto;
        bottom: 0;
        left: 0;
        transform: translateY(100%);
        width: 100%;
        max-width: 100%;
        max-height: 90vh;
        border-radius: 0px 0 0;
        transition: transform 0.3s ease-out;
    }

    .booking-card.modal-active.slide-up {
        transform: translateY(0);
    }
}

/* Close button visible on all devices */
.modal-close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100000;
    transition: background 0.3s ease;
}

.modal-close-btn:hover {
    background: #e0e0e0;
}

.modal-close-btn::before,
.modal-close-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: #333;
}

.modal-close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Sticky Footer - Only on small devices */
@media (max-width: 767.98px) {
    .sticky_footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        border-top: 1px solid #E0E0E0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        padding: 10px 0;
    }

    .sticky_footer .price-display {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4px;
        margin-bottom: 10px;
    }

    .sticky_footer .price-display .price-amount {
        margin: 0px;
    }

    .sticky_footer.visible {
        transform: translateY(0);
    }

    .price-amount {
        font-size: 17.6px;
        line-height: 20.9px;
    }
}

/* Hide sticky footer on larger devices */
@media (min-width: 767.98px) {
    .sticky_footer {
        display: none;
    }
}

.sticky_footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;

}



.sticky_footer p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.single-venue .header.mobile_header {
    display: none;
}


.single-venue .venue-sidebar .sm_only .form_list_by_blace {
    display: none !important;
}

.single-venue .mobile_form_button_wrapper>.price-display,
.single-venue .mobile_form_button_wrapper>.open_form {
    display: none !important;
}

.modal-drag-handle,
.modal-close-btn {
    display: none !important;
}

/* 
.sticky_footer {
    display: none;
} */

@media (max-width: 991.98px) {
    .see-all-overlay .see-all-text {
        font-size: 12px;
        line-height: 16px;
        padding: 5px 10px;
    }



    .venue-sidebar {
        top: 0px;
    }

    .venue-tabs {
        top: 55px;
    }

    .venue-single-container {
        grid-template-columns: 1fr 300px;
        gap: 24px;
    }


    .amenities-grid {
        gap: 20px;
        row-gap: 20px;
    }

    .similar-venues-swiper .swiper-slide {
        max-width: 100%;
    }

    .similar-venues-container {
        margin: 0 auto;
        padding: 0px 15px;
    }
}

/* Hide default booking card on mobile */
@media (max-width: 767.98px) {
    .single-venue .header.mobile_header {
        display: block;
        margin-top: 20px;
    }

    .venue-main-content .venue-header .venue-title,
    .venue-main-content .venue-header .venue-details-grid {
        display: none !important;
    }

    .venue-sidebar .booking-card:not(.modal-active) {
        display: block;
        margin-bottom: 0px;
        max-width: 550px;
    }


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

    /* single modal  */



    /* custom */
    .venue-hero-gallery .container {
        padding: 0px;
    }

    .venue-hero-gallery .hero-gallery-container {
        padding-top: 0px;
    }

    .hero-nav-button svg {
        fill: #fff !important;
    }

    .hero-nav-button {
        background-color: #787470;
    }

    .hero-right-grid {
        max-width: 100%;
    }

    .hero-right-grid .hero-grid-image:nth-child(2) {
        display: none;
    }

    .hero-right-grid .hero-grid-image:nth-child(2).no_forth {
        display: block;
        max-width: 50%;
        height: 100%;
    }

    .hero-right-grid .hero-grid-image:nth-child(1) {
        width: 100%;
        height: 100%;
        max-width: 49.5%;
        margin-bottom: 0px;
    }

    .hero-right-grid .hero-grid-image:nth-child(1).no_third {
        width: 100%;
        max-width: 100%;
    }

    .hero-right-grid .hero-grid-image:nth-child(3) {
        width: 100%;
        height: 100%;
        max-width: 49.5%;
    }

    .venue-single-container {
        gap: 0px;
        display: flex;
        flex-direction: column-reverse;
    }

    .venue-tabs {
        position: sticky;
        top: 55px;
    }

    .venue-sidebar {
        position: static;
        margin-top: 0px!important;
        margin-bottom: 30px;

    }

    .venue-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .details-row {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    .detail-icon svg {
        max-width: 16px !important;
    }

    .form_list_by_blace {
        padding: 9px 12px;
    }

    .booking-card {
        padding: 20px 12px;
        margin-bottom: 0px;
    }

    .venue-main-content .venue-header .venue-title,
    .venue-main-content .venue-header .venue-details-grid {
        display: none !important;
    }

    .action-buttons-row {
        flex-direction: row !important;
    }

    .tab-btn {
        gap: 4px;
        padding: 10px 10px;
        font-size: 14px;
    }

    .venue-tabs {
        margin-bottom: 24px;
    }

    .location-address {
        font-size: 16px;
    }

    .similar-venues-section {
        padding-bottom: 40px;
    }

    .similar-venues-swiper .swiper-slide {
        max-width: 100%;
    }

    .similar-venues-container {
        padding: 0px 15px;
    }

    .similar-venues-header h3 {
        margin-bottom: 0px !important;
    }

    .modal-active.slide-up {
        padding: 0px !important;

    }

    .modal-active.slide-up .modal-drag-handle,
    .modal-active.slide-up .modal-close-btn {
        display: block !important;

    }

    .modal-active.slide-up .form_list_by_blace {
        padding: 0px 0px;
        border: none !important;

    }

    .modal-active.slide-up .sm_only {
        padding: 0px 15px 15px;
    }

    .modal-active.slide-up .price-display {
        padding: 0px 15px;
    }

    .modal-active.slide-up .form_wrapper {
        padding: 0px 15px;
        padding-bottom: 40px !important;

    }

    .venue-hero-gallery .hero-gallery-container {
        padding-bottom: 0px !important;
    }
}

@media (max-width:540.98px) {
    .hero-main-slider {
        height: 240px;
    }

    .hero-right-grid {
        height: 100px;
    }
}

/* custom */


/* Enhanced button animations */
.add-to-shortlist-btn {
    background: #2E54EB;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 2px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16.86px;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 42px;
}

.add-to-shortlist-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.add-to-shortlist-btn:active::before {
    width: 300px;
    height: 300px;
}

.add-to-shortlist-btn:hover {
    opacity: 0.8;
}

.add-to-shortlist-btn span {
    line-height: normal;
}

/* dots */
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.main-hero-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
    transform: scale(0.5) !important;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.main-hero-swiper .swiper-pagination-bullets .swiper-pagination-bullet-active-next {
    transform: scale(.76) !important;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main,
.main-hero-swiper .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.main-hero-swiper .swiper-pagination-bullets .swiper-pagination-bullet-active {
    transform: scale(1) !important;
}

/* dots */