/**
 * VRP Property Single Page Template - Styles
 * Templates: single-vrp_property.php
 */

/* ============ GENERAL STYLES ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* .vrp-property-single {
    background: #f5f5f5;
} */
.vrp-mobile-inquire-form {
	display: none !important;
}

div.full-section {float: none !important;}

/* ============ HERO SECTION ============ */
.vrp-hero {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    overflow: visible;
	height: unset !important;
}

.vrp-hero-gallery {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.vrp-hero-main-media {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 8;
	width: 100%;
	height: 425px;
    flex: 1 1 70%;
    min-width: 0;
}

.vrp-hero-main,
.vrp-hero-thumb {
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    width: 100%;
    cursor: pointer;
}

.vrp-hero-main {
    display: block;
    height: 100%;
}

.vrp-hero-thumbnails {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    flex: 0 0 auto;
    width: 152px;
}

.vrp-hero-thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.vrp-hero-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vrp-hero-thumb-more {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.42);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 1.8vw, 20px);
    font-weight: 700;
    text-transform: none;
    backdrop-filter: blur(1px);
}

.vrp-gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 21, 0.94);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.vrp-gallery-lightbox.is-open {
    display: flex;
}

.vrp-gallery-lightbox-stage {
    width: min(92vw, 1200px);
    overflow: hidden;
}

.vrp-gallery-lightbox-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.vrp-gallery-lightbox-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 85vh;
}

.vrp-gallery-lightbox-image {
    width: auto;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.vrp-gallery-lightbox-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.vrp-gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.vrp-gallery-lightbox-prev {
    left: 20px;
}

.vrp-gallery-lightbox-next {
    right: 20px;
}

.vrp-gallery-lightbox-counter {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.4px;
}

body.vrp-lightbox-open {
    overflow: hidden;
}

.vrp-hero img,
.vrp-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vrp-hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.vrp-hero-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.vrp-hero-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.vrp-hero-slide.active {
    opacity: 1;
}

.vrp-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
    z-index: 2;
    font-size: 18px;
    line-height: 1;
}

.vrp-hero-nav-prev {
    left: 15px;
}

.vrp-hero-nav-next {
    right: 15px;
}

.vrp-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.vrp-hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
}

.vrp-hero-dot.active {
    background: #ffffff;
}

.vrp-hero-placeholder {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
}

.vrp-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 40px;
    color: white;
    z-index: 1;
}

.vrp-hero-rating {
    margin-bottom: 10px;
}

.vrp-hero-rating-stars {
    color: #FFD700;
    font-size: 14px;
}

.vrp-hero-rating-number {
    margin-left: 6px;
    font-size: 14px;
    font-weight: 600;
}

.vrp-hero-title {
    font-size: 36px;
    font-weight: 500;
    margin: 0 0 8px 0;
    line-height: 1.3;
	color: #ffffff;
}

.vrp-hero-location {
    margin: 0;
    font-size: 15px;
    opacity: 0.9;
}

.vrp-hero-location i {
    padding-right: 10px
}

/* ============ TABS SECTION ============ */
.vrp-tabs-wrapper {
    background: #f5f5f5;
    position: relative;
	border-radius: 10px;
}

/* .vrp-tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 258px
} */

/* .vrp-tabs-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
} */

.vrp-tabs {
    display: flex;
	justify-content: space-between;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.vrp-tab {
    padding: 15px 40px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 20px;
    color: #999;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 25px;
}

.vrp-tab:hover {
    color: #333;
}

.vrp-tab.active {
    color: #1a1a1a;
    font-weight: 600;
}

.vrp-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: #00AEEF;
    border-radius: 10px;
}

/* ============ MAIN CONTENT SECTION ============ */
.vrp-content-wrapper {
/*     background: #f5f5f5; */
    padding: 40px 20px;
}

.vrp-content-grid {
    max-width: 1438px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
}

/* ============ TAB CONTENT ============ */
.vrp-tab-content {
    display: none;
}

.vrp-tab-content.active {
    display: block;
	padding-top: 20px;
}

/* ============ DESCRIPTION SECTION ============ */
.vrp-description {
    margin-bottom: 40px;
}

.vrp-description h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.vrp-description p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* Description Content States */
.vrp-description-content {
    position: relative;
    overflow: hidden;
}

.vrp-description-content.vrp-description-collapsed {
    max-height: 100px;
}

.vrp-description-content.vrp-description-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, #f5f5f5, rgba(245, 245, 245, 0));
    pointer-events: none;
}

.vrp-description-content.vrp-description-expanded {
    max-height: none;
}

.vrp-description-content.vrp-description-expanded::after {
    display: none;
}

/* See More Button */
.vrp-see-more-btn {
    background: none;
    border: none;
    color: #FF1493;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 0 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vrp-see-more-btn:hover {
    opacity: 0.8;
}

.vrp-see-more-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 10px;
}

.vrp-see-more-btn.expanded .vrp-see-more-icon {
    transform: rotate(180deg);
}

.vrp-see-more-btn.expanded .vrp-see-more-text {
    font-size: 0;
}

.vrp-see-more-btn.expanded .vrp-see-more-text::after {
    content: 'Show Less';
    font-size: 12px;
}

/* ============ KEY SPECS SECTION ============ */

/* ============ Figma-style SPECS CARDS ============ */
.vrp-specs {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 30px;
/*     margin-bottom: 40px;
    padding: 0; */
    border: none;
}

.vrp-spec-item {
/*     background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 30px;
    min-width: 212px; */
    display: flex;
    flex-direction: column;
    border: none;
    position: relative;
/*     transition: box-shadow 0.2s; */
}
.vrp-spec-item:not(:last-child) {
    margin-right: 0;
}

.vrp-spec-label {
	display: flex;
	align-items: baseline;
    font-size: 18px;
	color: #fff;
    font-weight: 500;
    margin: 0px !important;
    text-transform: capitalize;
    letter-spacing: 0.2px;
	line-height: 1.8 !important;
}
.vrp-spec-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
.vrp-spec-value {
    font-size: 18px;
    font-weight: 500;
    margin: 0 !important;
    color: #fff;
    line-height: 1;
	padding-right: 5px;
}
.vrp-spec-icon {
    font-size: 18px;
    margin-left: 6px;
    color: #fff;
	padding-right: 15px;
}

/* ============ AMENITIES SECTION ============ */
.vrp-amenities {
    margin-bottom: 40px;
}

.vrp-amenities h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.vrp-amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vrp-amenity-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    cursor: default;
}

.vrp-amenity-item:hover {
    border-color: #FF1493;
    box-shadow: 0 2px 6px rgba(255, 20, 147, 0.1);
}

.vrp-amenity-icon {
    font-size: 14px;
    flex-shrink: 0;
}

.vrp-amenity-name {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.vrp-amenity-empty {
    color: #999;
    padding: 20px;
    text-align: center;
    width: 100%;
}

/* Amenities Collapse */
.vrp-amenities-grid.vrp-amenities-collapsed {
    max-height: 150px;
    overflow: hidden;
    position: relative;
}

.vrp-amenities-grid.vrp-amenities-expanded {
    max-height: none;
    overflow: visible;
}

.vrp-amenities-see-more-btn {
    background: linear-gradient(180deg, #FF79C9 0%, #FF47B4 100%) !important;
    border: none;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 10px;
    margin-top: 15px;
	position: relative;
}

.vrp-amenities-see-more-text {
	padding-right: 20px;
}

.vrp-amenities-see-more-text:after {
	position: absolute;
    content: '\f061';
    width: 27px;
    height: 27px;
    background: linear-gradient(180deg, #FF79C9 0%, #FF47B4 100%) !important;
    top: 12px;
    right: 12px;
    background-size: 27px;
    font-family: 'FontAwesome';
    line-height: 27px;
    border-radius: 200px;
    color: white;
    text-align: center;
}

.vrp-amenities .vrp-amenities-see-more-wrapper {
    text-align: center;
}

.vrp-amenities-see-more-btn:hover {
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(to right, rgb(236 0 140 / 25%), #EC008C) border-box !important;
    border: 1px solid #0000 !important;
    color: #101115 !important;
}

.vrp-amenities-see-more-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    font-size: 10px;
    color: #1a1a1a;
}

.vrp-amenities-see-more-btn.expanded .vrp-amenities-see-more-icon {
    transform: rotate(180deg);
}

/* ============ MAP SECTION ============ */
.vrp-map-section {
    margin-bottom: 40px;
}

.vrp-map-section h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.vrp-map-container {
    background: #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.vrp-property-map-canvas {
    width: 100%;
    height: 100%;
}

.vrp-map-placeholder {
    text-align: center;
}

.vrp-map-placeholder-icon {
    font-size: 36px;
    margin: 0;
}

.vrp-map-placeholder-text {
    margin: 8px 0 0 0;
    font-size: 14px;
}

.vrp-map-placeholder-location {
    font-size: 12px;
    color: #999;
    margin: 4px 0 0 0;
}

/* ============ GUESTS REVIEWS ON OVERVIEW ============ */
.vrp-guests-section {
    margin-bottom: 40px;
}

.vrp-guests-section h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.vrp-guests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vrp-guest-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #f0f0f0;
}

.vrp-guest-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.vrp-guest-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.vrp-guest-info {
    flex: 1;
}

.vrp-guest-name {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.vrp-guest-text {
    color: #666;
    font-size: 12px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.vrp-guest-readmore {
    color: #FF1493;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.vrp-guest-readmore:hover {
    text-decoration: underline;
}

/* ============ RATES TABLE ============ */
.vrp-rates-heading {
	margin-bottom: 25px;
}

.vrp-rates-heading h2 {
	font-size: 22px;
	font-weight: 500;
	margin: 0;
	color: #1a1a1a;
}

.vrp-rates-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.vrp-rates-table thead {
    background: linear-gradient(180deg, #FF79C9 0%, #FF47B4 100%) !important;
    color: white;
}

.vrp-rates-table thead tr {
    background: unset !important;
}

.vrp-rates-table th {
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    border: none;
}

.vrp-rates-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.2s ease;
}

.vrp-rates-table tbody tr:hover {
    background-color: #f9f9f9;
}

.vrp-rates-table tbody tr:last-child {
    border-bottom: none;
}

.vrp-rates-table td {
    padding: 18px 20px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.vrp-rates-table td:first-child {
    font-weight: 600;
    color: #1a1a1a;
}

.vrp-rates-table td:last-child {
    color: #00AAFF;
    font-weight: 600;
}

/* ============ CALENDAR SECTION ============ */
.vrp-calendar-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 8px;
}

/* jQuery UI Datepicker Styling */
.vrp-calendar-container .ui-datepicker {
    width: 100% !important;
    max-width: 100%;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.vrp-calendar-container .ui-datepicker-header {
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.vrp-calendar-container .ui-datepicker-title {
    font-weight: 600;
    color: #333;
}

.vrp-calendar-container .ui-datepicker-prev,
.vrp-calendar-container .ui-datepicker-next {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.vrp-calendar-container .ui-datepicker-prev:hover,
.vrp-calendar-container .ui-datepicker-next:hover {
    background-color: #e3f0ff;
    border: none;
}

.vrp-calendar-container .ui-datepicker-calendar th {
    background-color: #f5f5f5;
    color: #666;
    font-weight: 600;
    /* padding: 8px; */
    text-align: center;
    border-radius: 4px;
}

.vrp-calendar-container .ui-datepicker-calendar td {
    padding: 5px;
    text-align: center;
    cursor: default !important;
}

.vrp-calendar-container .ui-datepicker-calendar a, .vrp-calendar-container .ui-datepicker-calendar span {
    display: block;
    padding: 5px 7px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.vrp-calendar-container .ui-datepicker-calendar a {
    background: #F0F8FF;
    color: #00AAFF;
    font-weight: 600;
    pointer-events: none;
}

.vrp-calendar-container .ui-datepicker-calendar a:hover {
    /* background-color: #e3f0ff;
    color: #0066FF; */
    background: #00AAFF;
    color: white;
    /* font-weight: 500; */
}

.vrp-calendar-container .ui-datepicker-calendar a.ui-state-active {
    background-color: #00AAFF;
    color: white;
    font-weight: 600;
}

.vrp-calendar-container .ui-datepicker-calendar a.ui-in-range {
    background-color: #d4e9ff;
    color: #00AAFF;
}

.vrp-calendar-container .ui-datepicker-calendar a.ui-disabled,
.vrp-calendar-container .ui-datepicker-calendar .ui-disabled a {
    background-color: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
}

.vrp-calendar-container .ui-datepicker-other-month a.ui-disabled,
.vrp-calendar-container .ui-datepicker-unselectable {
    color: #ccc;
    background-color: #f5f5f5;
    cursor: not-allowed;
}

/* Multi-month layout for jQuery UI */
.vrp-calendar-container .ui-datepicker-multi .ui-datepicker-group {
    width: 48%;
    float: left;
    margin: 1%;
}

.vrp-calendar-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.vrp-calendar-heading h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    color: #1a1a1a;
}

.vrp-calendar-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF79C9 0%, #FF47B4 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.vrp-calendar-placeholder {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-top: 4px solid;
    border-image: linear-gradient(135deg, #FF79C9 0%, #FF47B4 100%) 1;
}

.vrp-calendar-placeholder p {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.vrp-calendar-placeholder-subtitle {
    font-size: 13px;
    margin: 15px 0 0 0;
    color: #999;
    font-weight: 500;
}

.vrp-calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
    gap: 15px;
}

.vrp-calendar-nav-button {
    background: linear-gradient(135deg, #FF79C9 0%, #FF47B4 100%);
    border: none;
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-weight: 700;
    transition: all 0.2s ease;
    font-size: 18px;
    flex-shrink: 0;
}

.vrp-calendar-nav-button:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 79, 180, 0.3);
}

.vrp-calendar-nav-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.vrp-calendar-month-display {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.vrp-calendar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.vrp-calendar-month {
    display: none !important;
}

.vrp-calendar-month.active {
    display: block !important;
}

.vrp-calendar-month-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.vrp-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.vrp-calendar-weekday {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    text-align: center;
}

.vrp-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.vrp-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vrp-calendar-day:hover {
    background: linear-gradient(135deg, #FF79C9 0%, #FF47B4 100%);
    color: white;
}

.vrp-calendar-day.available {
    background: #F0F8FF;
    color: #00AAFF;
    font-weight: 600;
}

.vrp-calendar-day.available:hover {
    background: #00AAFF;
    color: white;
}

.vrp-calendar-action {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
    text-align: center;
    grid-column: 1 / -1;
}

.vrp-calendar-action-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .vrp-calendar-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .vrp-calendar-nav {
        margin-bottom: 20px;
    }

    .vrp-calendar-month-display {
        font-size: 16px;
        min-width: 120px;
    }

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

    .vrp-guest-warning {
        grid-column: 1;
    }

    .vrp-calendar-container {
        flex-direction: column;
        gap: 0;
        padding: 10px;
    }

    .vrp-calendar-container .ui-datepicker {
        max-width: 100%;
        width: 100%;
    }

    .vrp-calendar-container .ui-datepicker-multi .ui-datepicker-group {
        width: 100%;
        float: none;
        margin: 5px 0;
    }
}

/* ============ REVIEWS SECTION (Tab) ============ */
.vrp-reviews-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vrp-review-item {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 3px solid #FF1493;
}

.vrp-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.vrp-review-author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vrp-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.vrp-review-author {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.vrp-review-date {
    margin: 2px 0 0 0;
    font-size: 11px;
    color: #999;
}

.vrp-review-text {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 13px;
}

.vrp-reviews-empty {
    text-align: center;
    color: #999;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

/* ============ SIDEBAR - PRICE CARD ============ */
.vrp-sidebar {
    position: relative;
}

.vrp-price-card {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 25px;
    position: sticky;
    top: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* ============ PRICE DISPLAY - INLINE ============ */
.vrp-price-display {
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
/*     padding-bottom: 20px; */
    border-bottom: 1px solid #f0f0f0;
}

.vrp-price-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.vrp-price-amount {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    color: #00AAFF;
	line-height: 1;
}

.vrp-price-period {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ============ SIDEBAR - PRICE CARD ============ */
.vrp-sidebar {
    position: relative;
}

.vrp-price-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
/*     position: sticky; */
	position:relative;
    top: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


/* ============ PRICE DISPLAY ============ */
.vrp-price-display {
    margin-bottom: 10px;
/*     padding-bottom: 25px; */
    border-bottom: 1px solid #e0e0e0;
}

.vrp-price-display p{
	margin-bottom: 10px !important;
}

.vrp-price-label {
    font-size: 10px;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vrp-price-period {
    font-size: 10px;
    margin: 5px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============ BOOKING FORM ============ */
.vrp-booking-form {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.vrp-booking-form h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 10px 0;
    color: #153D4B;
}

.vrp-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.vrp-form-group {
    margin-bottom: 10px;
}

.vrp-form-label {
    display: block;
    font-size: 10px;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.vrp-form-input,
.vrp-form-select {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
    color: #333;
}

.vrp-form-input::placeholder {
    color: #ccc;
}

.vrp-form-input:focus,
.vrp-form-select:focus {
    outline: none;
    border-color: #00AAFF;
    box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.1);
}

.vrp-checkbox-label input[type="checkbox"] {
	transform: scale(1.1) !important;
}

/* ============ CHECKBOX FIELD ============ */
.vrp-form-checkbox {
    margin: 10px 0;
}

.vrp-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
}

.vrp-checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0066FF;
}

.vrp-checkbox-text {
    font-size: 12px;
    color: #333;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
}

/* ============ COST BREAKDOWN ============ */
.vrp-cost-breakdown {
    margin-bottom: 25px;
/*     padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0; */
}

.vrp-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.vrp-breakdown-label {
    color: #333;
    font-size: 14px;
	font-weight: 600;
}

.vrp-breakdown-details strong,.vrp-breakdown-taxes-details strong {
	color: #838A8D;
	font-size: 12px;
    float: left;
}

.vrp-breakdown-details span,.vrp-breakdown-taxes-details span {
	color: #333;
	font-size: 16px;
    float: right;
}

/* Rent price display next to label */
.vrp-breakdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
    justify-content: space-between;
}

.vrp-breakdown-price {
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.vrp-breakdown-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    font-weight: 600;
}

.vrp-cost-breakdown button {
	padding: 0px 0px 0px 15px;
}

.vrp-breakdown-button:hover {
    opacity: 0.7;
}

.vrp-breakdown-button span {
    font-size: 12px;
}

.vrp-breakdown-details {
    margin-left: 0;
    padding-left: 0;
    font-size: 12px;
    color: #999;
}

/* .vrp-breakdown-details strong {
    margin: 0 0 4px 0;
} */

.vrp-breakdown-details strong:last-child {
    margin-bottom: 0;
}

.vrp-breakdown-taxes {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vrp-breakdown-taxes-details {
    margin: 5px 0 0 0;
}

.vrp-breakdown-details,
.vrp-breakdown-taxes-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

/* Active state */
.vrp-breakdown-details.active,
.vrp-breakdown-taxes-details.active {
    max-height: 200px;
    opacity: 1;
    margin-top: 5px;
	margin-bottom: 5px;
    padding: 0px 55px 0px 10px;
}

/* Arrow rotate */
.vrp-breakdown-button i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.vrp-breakdown-button.open i {
    transform: rotate(180deg);
}

/* ============ TOTAL ============ */
.vrp-total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.vrp-total-label {
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
}

.vrp-total-amount {
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
}

/* ============ RESERVE BUTTON ============ */
.vrp-reserve-button {
    width: 48%;
    padding: 10px 12px;
    background: linear-gradient(180deg, #FF79C9 0%, #FF47B4 100%) !important;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.vrp-reserve-button:hover {
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(to right, rgb(236 0 140 / 25%), #EC008C) border-box !important;
    border: 1px solid #0000 !important;
    color: #101115 !important;
}

.vrp-reserve-button:active {
    transform: scale(0.98);
}

.vrp-reserve-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============ GUEST CONTROLS ============ */
.vrp-guest-warning {
    display: none;
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
    border-radius: 6px;
    padding: 12px 16px;
    margin: 12px 0;
    font-size: 13px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
    grid-column: 1 / -1;
}

select:disabled,
.vrp-form-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

/* ============ ERROR MESSAGE ============ */
.vrp-price-error-message {
    display: none;
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
    border-radius: 6px;
    padding: 12px 16px;
    margin: 12px 0;
    font-size: 14px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vrp-inquire-button {
    width: 48%;
    padding: 10px 12px;
    background: linear-gradient(180deg, #FF79C9 0%, #FF47B4 100%) !important;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.vrp-inquire-button:hover {
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(to right, rgb(236 0 140 / 25%), #EC008C) border-box !important;
    border: 1px solid #0000 !important;
    color: #101115 !important;
}

.vrp-inquire-button:active {
    transform: scale(0.98);
}

/* ============ FLATPICKR DATE PICKER CUSTOMIZATION ============ */
.vrp-datepicker-single {
    cursor: pointer;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2"><rect x="3" y="4" width="18" height="18" rx="2"/><path d="M16 2v4M8 2v4M3 10h18"/></svg>') no-repeat right 10px center;
    padding-right: 35px;
}

.vrp-datepicker-single:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Flatpickr calendar customization for single page */
.flatpickr-calendar {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    font-family: inherit;
	width: 330px;
}

.flatpickr-calendar.open {
    z-index: 999;
}

.flatpickr-day {
    color: #333;
    font-size: 13px;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.flatpickr-day:hover {
    background: #f0f0f0;
    border-color: #e0e0e0;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: #0056b3;
    border-color: #0056b3;
}

.flatpickr-day.today {
    border-color: #007bff;
}

.flatpickr-day.today.selected {
    background: #007bff;
    border-color: #007bff;
}

.flatpickr-day.disabled {
    color: #ccc;
    background: transparent;
    cursor: not-allowed;
}

.flatpickr-months {
    padding: 12px;
}

.flatpickr-month {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.flatpickr-next-month,
.flatpickr-prev-month {
    color: #007bff;
    fill: #007bff;
	top: 15px !important;
}

.flatpickr-next-month:hover,
.flatpickr-prev-month:hover {
    color: #0056b3;
}

.flatpickr-weekday {
    color: #666;
    font-size: 12px;
    font-weight: 600;
}

.flatpickr-innerContainer {
    padding: 12px;
}

/* ============ PRICE LOADER ============ */
.vrp-price-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.vrp-loader-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.vrp-loader-dots {
    display: flex;
    gap: 8px;
}

.vrp-loader-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF79C9 0%, #FF47B4 100%);
    animation: vrp-loader-bounce 1.4s infinite ease-in-out both;
}

.vrp-loader-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.vrp-loader-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes vrp-loader-bounce {
    0%, 80%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    40% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.vrp-loader-spinner p {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1024px) {
    .vrp-hero-gallery {
        flex-direction: column;
        gap: 12px;
    }

    .vrp-hero-main-media {
        aspect-ratio: 16 / 10;
        flex: 1 1 auto;
        width: 100%;
    }

    .vrp-hero-thumbnails {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }

    .vrp-guests-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 1024px) {
    .vrp-specs {
        gap: 18px;
    }
    .vrp-spec-item {
/*         min-width: 120px; */
/*         padding: 18px 12px 14px 12px; */
    }
    .vrp-spec-value, .vrp-spec-icon {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
	.vrp-reserve-button, .vrp-inquire-button {
		width: 48.5%;
		padding: 12px 18px;
		font-size: 16px;
		margin-bottom: 10px;
	}
	.vrp-booking-form h3 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	.vrp-booking-form {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
	.vrp-price-display {
		margin-bottom: 15px;
	}
.vrp-hero-main-media {
        aspect-ratio: 16 / 10;
    }

    .vrp-hero-thumbnails {
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100px;
    }

    .vrp-hero-thumb-more {
        font-size: 12px;
    }

    .vrp-gallery-lightbox-stage {
        width: 100vw;
    }

    .vrp-gallery-lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }

    .vrp-gallery-lightbox-prev {
        left: 8px;
    }

    .vrp-gallery-lightbox-next {
        right: 8px;
    }

    .vrp-gallery-lightbox-close {
        top: 10px;
        right: 10px;
    }
    .vrp-hero-title {
        font-size: 16px;
		margin-bottom: 5px !important;
    }
	body.single p.vrp-hero-location {
		margin-bottom: 5px;
	}
	
	.vrp-hero-location {
		font-size: 11px;
	}
    .vrp-content-grid {
/*         grid-template-columns: 1fr;
        gap: 20px; */
		display: flex;
		flex-wrap: wrap;
    }
    .vrp-specs {
/*         flex-wrap: wrap;
        justify-content: center; */
        gap: 12px;
    }
    .vrp-spec-item {
/*         min-width: 100px; */
/*         padding: 14px 8px 10px 8px; */
		padding-bottom: 0px;
    }
    .vrp-spec-label {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .vrp-spec-value, .vrp-spec-icon {
        font-size: 12px;
    }
	
	.vrp-spec-icon {
        padding-right: 10px;
    }
	.vrp-tabs {
        border-radius: 6px;
    }
	.vrp-tab {
        padding: 8px 15px;
        font-size: 12px;
    }
	.vrp-description {
		margin-bottom: 25px;
	}
	.vrp-description h2 {
		font-size: 18px;
	}
	.vrp-description p {
		font-size: 12px;
	}
	.vrp-amenities h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}
	.vrp-amenities-grid.vrp-amenities-collapsed {
		max-height: 138px;
	}
	.vrp-amenity-item {
        padding: 10px 20px;
        border-radius: 8px;
    }
	.vrp-amenity-icon, .vrp-amenity-name {
		font-size: 12px;
	}
	.vrp-amenities-see-more-btn {
        font-size: 14px;
        padding: 10px 20px;
        margin-top: 15px;
    }
	.vrp-amenities-see-more-text:after {
        width: 20px;
        height: 20px;
        top: 12px;
        right: 12px;
        line-height: 16px;
        font-size: 12px;
    }
	.vrp-rates-heading h2 {
		font-size: 18px;
	}
	.vrp-rates-heading {
        margin-bottom: 15px;
    }
	.vrp-rates-table th {
        padding: 10px;
        font-size: 10px;
    }
	.vrp-rates-table td {
        padding: 10px;
        font-size: 10px;
    }
	.vrp-calendar-heading {
        margin-bottom: 15px;
    }
	.vrp-calendar-heading h2 {
		font-size: 18px;
	}
	.vrp-calendar-icon {
        width: 30px;
        height: 30px;
        border-radius: 7px;
        font-size: 14px;
    }
	.vrp-calendar-placeholder {
        padding: 20px;
        border-radius: 0px 0px 12px 12px;
    }
	body.single .vrp-calendar-placeholder p {
        margin: 0 0 10px 0;
		font-size: 14px;
    }
	.vrp-calendar-month-label {
		font-size: 14px;
		margin-bottom: 10px;
	}
	.vrp-calendar-placeholder .vrp-calendar-nav .vrp-calendar-month-display {
        font-size: 14px;
        min-width: 120px;
    }
	.vrp-calendar-nav-button {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
	.vrp-hero-gallery {
        flex-direction: column;
        gap: 12px;
    }

    .vrp-hero-main-media {
        aspect-ratio: 16 / 11;
        flex: 1 1 auto;
        width: 100%;
    }

    .vrp-hero-thumbnails {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        width: 100%;
    }

    .vrp-hero-overlay {
        padding: 10px;
    }

    .vrp-content-wrapper {
        padding: 20px 10px;
    }

    .vrp-specs {
/*         flex-direction: column; */
    }

    .vrp-spec-item {
/*         min-width: 100%; */
    }

    .vrp-price-card {
        padding: 18px;
        border-radius: 8px;
    }

    .vrp-price-amount {
        font-size: 18px;
    }

    .vrp-form-input {
        padding: 9px 10px;
        font-size: 12px;
    }

    /* Mobile Fixed Buttons & Expandable Form */
    .vrp-reserve-button,
    .vrp-inquire-button {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 50%;
        margin: 0;
        border-radius: 0;
        padding: 14px 10px;
        font-size: 13px;
        font-weight: 700;
        border: 1px solid #fff;
        z-index: 999;
    }

    .vrp-reserve-button {
        left: 0;
    }

    .vrp-inquire-button {
        left: 50%;
        right: 0;
    }

    /* Add padding to body to account for fixed buttons */
    body.single-vrp_property {
        padding-bottom: 50px;
    }

    /* Mobile Expandable Inquire Form */
    .vrp-mobile-inquire-form {
        display: none;
        position: fixed;
        bottom: 50px;
        left: 0;
        right: 0;
        max-height: calc(100vh - 50px);
        overflow-y: auto;
        background: white;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        z-index: 998;
        animation: slideUp 0.3s ease;
    }

    .vrp-mobile-inquire-form.open {
        display: flex;
        flex-direction: column;
    }

    .vrp-mobile-inquire-form-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 16px;
        border-bottom: 1px solid #e0e0e0;
        background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
        flex-shrink: 0;
    }

    .vrp-mobile-inquire-form-header h3 {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        color: #333;
    }

    .vrp-mobile-inquire-form-close {
        background: none;
        border: none;
        font-size: 28px;
        color: #999;
        cursor: pointer;
        padding: 0;
        margin: 0;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .vrp-mobile-inquire-form-close:hover {
        background: rgba(0, 0, 0, 0.05);
        color: #333;
    }

    .vrp-mobile-inquire-form-content {
        padding: 16px;
        overflow-y: auto;
        flex-grow: 1;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Hide modal on mobile */
    .vrp-inquire-modal {
        display: none !important;
    }
}

/* .vrp-hero {
    position: relative;
    height: 100vh; 
    overflow: hidden;
}

.vrp-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */

@media (max-width: 1024px) {
    .vrp-content-grid {
        grid-template-columns: 1fr 280px;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .vrp-content-grid {
        grid-template-columns: 1fr;
    }

    .vrp-sidebar {
        order: -1;   /* sidebar upar aa jaye */
		width: 100%;
    }
	.vrp-hero-main-media {
		height: 200px;
	}
}

/* ============ INQUIRE MODAL ============ */
.vrp-inquire-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vrp-inquire-modal.open {
    pointer-events: auto;
    opacity: 1;
}

.vrp-inquire-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.vrp-inquire-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.vrp-inquire-modal.open .vrp-inquire-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.vrp-inquire-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
}

.vrp-inquire-modal-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #333;
    line-height: 1.4;
}

.vrp-inquire-property-title {
    color: #0066FF;
    font-weight: 700;
    display: block;
    font-size: 20px;
    margin-top: 5px;
}

.vrp-inquire-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    padding: 0;
    margin: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.vrp-inquire-modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.vrp-inquire-modal-body {
    padding: 30px;
}

/* Gravity Forms Integration */
.vrp-inquiry-form-wrapper {
    display: block;
}

.vrp-inquiry-form-wrapper .gform_wrapper {
    margin: 0;
    font-family: inherit;
}

.vrp-inquiry-form-wrapper .gform_heading {
    margin-bottom: 20px;
}

.vrp-inquiry-form-wrapper .gform_heading h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.vrp-inquiry-form-wrapper .gform_body {
    margin: 0;
}

.vrp-inquiry-form-wrapper .gfield {
    margin-bottom: 20px;
}

.vrp-inquiry-form-wrapper .gfield_label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.vrp-inquiry-form-wrapper .gfield input[type="text"],
.vrp-inquiry-form-wrapper .gfield input[type="email"],
.vrp-inquiry-form-wrapper .gfield input[type="tel"],
.vrp-inquiry-form-wrapper .gfield textarea,
.vrp-inquiry-form-wrapper .gfield select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.vrp-inquiry-form-wrapper .gfield input[type="text"]:focus,
.vrp-inquiry-form-wrapper .gfield input[type="email"]:focus,
.vrp-inquiry-form-wrapper .gfield input[type="tel"]:focus,
.vrp-inquiry-form-wrapper .gfield textarea:focus,
.vrp-inquiry-form-wrapper .gfield select:focus {
    border-color: #0066FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.vrp-inquiry-form-wrapper .gfield textarea {
    resize: vertical;
    min-height: 120px;
}

.vrp-inquiry-form-wrapper button[type="submit"],
.vrp-inquiry-form-wrapper input[type="submit"] {
    background: linear-gradient(180deg, #0066FF 0%, #0052CC 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.vrp-inquiry-form-wrapper button[type="submit"]:hover,
.vrp-inquiry-form-wrapper input[type="submit"]:hover {
    background: linear-gradient(180deg, #0052CC 0%, #003D99 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
}

.vrp-inquiry-form-wrapper button[type="submit"]:active,
.vrp-inquiry-form-wrapper input[type="submit"]:active {
    transform: translateY(0);
}

/* Fallback form styling */
.vrp-inquiry-fallback-form {
    display: block;
}

.vrp-inquiry-basic-form .form-group {
    margin-bottom: 20px;
}

.vrp-inquiry-basic-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.vrp-inquiry-basic-form input[type="text"],
.vrp-inquiry-basic-form input[type="email"],
.vrp-inquiry-basic-form input[type="tel"],
.vrp-inquiry-basic-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.vrp-inquiry-basic-form input[type="text"]:focus,
.vrp-inquiry-basic-form input[type="email"]:focus,
.vrp-inquiry-basic-form input[type="tel"]:focus,
.vrp-inquiry-basic-form textarea:focus {
    border-color: #0066FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.vrp-inquiry-basic-form textarea {
    resize: vertical;
    min-height: 120px;
}

.vrp-inquiry-submit {
    background: linear-gradient(180deg, #0066FF 0%, #0052CC 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
}

.vrp-inquiry-submit:hover {
    background: linear-gradient(180deg, #0052CC 0%, #003D99 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
}

.vrp-inquiry-submit:active {
    transform: translateY(0);
}

/* Modal open - prevent body scroll */
body.vrp-modal-open {
    overflow: hidden;
}

/* Modal responsive */
@media (max-width: 640px) {
    .vrp-inquire-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .vrp-inquire-modal-header {
        padding: 20px;
    }

    .vrp-inquire-modal-title {
        font-size: 18px;
    }

    .vrp-inquire-property-title {
        font-size: 16px;
    }

    .vrp-inquire-modal-body {
        padding: 20px;
    }
}


/* ============ INQUIRE MODAL ============ */
.vrp-inquire-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vrp-inquire-modal.open {
    pointer-events: auto;
    opacity: 1;
}

.vrp-inquire-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.vrp-inquire-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.vrp-inquire-modal.open .vrp-inquire-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.vrp-inquire-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
}

.vrp-inquire-modal-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #333;
    line-height: 1.4;
}

.vrp-inquire-property-title {
    color: #0066FF;
    font-weight: 700;
    display: block;
    font-size: 20px;
    margin-top: 5px;
}

.vrp-inquire-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    padding: 0;
    margin: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.vrp-inquire-modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.vrp-inquire-modal-body {
    padding: 30px;
}

/* Gravity Forms Integration */
.vrp-inquiry-form-wrapper {
    display: block;
}

.vrp-inquiry-form-wrapper .gform_wrapper {
    margin: 0;
    font-family: inherit;
}

.vrp-inquiry-form-wrapper .gform_heading {
    margin-bottom: 20px;
}

.vrp-inquiry-form-wrapper .gform_heading h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.vrp-inquiry-form-wrapper .gform_body {
    margin: 0;
}

.vrp-inquiry-form-wrapper .gfield {
    margin-bottom: 20px;
}

.vrp-inquiry-form-wrapper .gfield_label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.vrp-inquiry-form-wrapper .gfield input[type="text"],
.vrp-inquiry-form-wrapper .gfield input[type="email"],
.vrp-inquiry-form-wrapper .gfield input[type="tel"],
.vrp-inquiry-form-wrapper .gfield textarea,
.vrp-inquiry-form-wrapper .gfield select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.vrp-inquiry-form-wrapper .gfield input[type="text"]:focus,
.vrp-inquiry-form-wrapper .gfield input[type="email"]:focus,
.vrp-inquiry-form-wrapper .gfield input[type="tel"]:focus,
.vrp-inquiry-form-wrapper .gfield textarea:focus,
.vrp-inquiry-form-wrapper .gfield select:focus {
    border-color: #0066FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.vrp-inquiry-form-wrapper .gfield textarea {
    resize: vertical;
    min-height: 120px;
}

.vrp-inquiry-form-wrapper button[type="submit"],
.vrp-inquiry-form-wrapper input[type="submit"] {
    background: linear-gradient(180deg, #0066FF 0%, #0052CC 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.vrp-inquiry-form-wrapper button[type="submit"]:hover,
.vrp-inquiry-form-wrapper input[type="submit"]:hover {
    background: linear-gradient(180deg, #0052CC 0%, #003D99 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
}

.vrp-inquiry-form-wrapper button[type="submit"]:active,
.vrp-inquiry-form-wrapper input[type="submit"]:active {
    transform: translateY(0);
}

/* Fallback form styling */
.vrp-inquiry-fallback-form {
    display: block;
}

.vrp-inquiry-basic-form .form-group {
    margin-bottom: 20px;
}

.vrp-inquiry-basic-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.vrp-inquiry-basic-form input[type="text"],
.vrp-inquiry-basic-form input[type="email"],
.vrp-inquiry-basic-form input[type="tel"],
.vrp-inquiry-basic-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.vrp-inquiry-basic-form input[type="text"]:focus,
.vrp-inquiry-basic-form input[type="email"]:focus,
.vrp-inquiry-basic-form input[type="tel"]:focus,
.vrp-inquiry-basic-form textarea:focus {
    border-color: #0066FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.vrp-inquiry-basic-form textarea {
    resize: vertical;
    min-height: 120px;
}

.vrp-inquiry-submit {
    background: linear-gradient(180deg, #0066FF 0%, #0052CC 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
}

.vrp-inquiry-submit:hover {
    background: linear-gradient(180deg, #0052CC 0%, #003D99 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
}

.vrp-inquiry-submit:active {
    transform: translateY(0);
}

/* Modal open - prevent body scroll */
body.vrp-modal-open {
    overflow: hidden;
}

/* Modal responsive */
@media (max-width: 640px) {
    .vrp-inquire-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .vrp-inquire-modal-header {
        padding: 20px;
    }

    .vrp-inquire-modal-title {
        font-size: 18px;
    }

    .vrp-inquire-property-title {
        font-size: 16px;
    }

    .vrp-inquire-modal-body {
        padding: 20px;
    }
}
/* ============ PRICE LOADER ============ */
.vrp-price-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.vrp-loader-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.vrp-loader-dots {
    display: flex;
    gap: 8px;
}

.vrp-loader-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF79C9 0%, #FF47B4 100%);
    animation: vrp-loader-bounce 1.4s infinite ease-in-out both;
}

.vrp-loader-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.vrp-loader-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes vrp-loader-bounce {
    0%, 80%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    40% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.vrp-loader-spinner p {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 500;
}
