/* Virtuard Premium Detail Page Design */
:root {
    --vd-primary: #1976d2;
    --vd-primary-light: #42a5f5;
    --vd-bg-dark: #121212;
    --vd-surface-dark: #1e1e1e;
    --vd-text-light: #ffffff;
    --vd-text-muted: #aaaaaa;
    --vd-border-dark: #333333;
    --vd-radius-lg: 24px;
    --vd-radius-md: 16px;
    --vd-glass-bg: rgba(30, 30, 30, 0.7);
    --vd-glass-border: rgba(255, 255, 255, 0.1);
    --vd-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --vd-shadow-light: 0 4px 20px rgba(0, 0, 0, 0.2);
}



/* Hero Section */
.vd-detail-hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    background-color: #000;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 0 0 32px 32px;
}

.vd-detail-hero iframe, 
.vd-detail-hero .panorama-container {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.vd-detail-hero__fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vd-detail-hero__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(18, 18, 18, 1) 0%, rgba(18, 18, 18, 0.7) 40%, rgba(18, 18, 18, 0) 100%);
    pointer-events: none;
    z-index: 10;
}

.vd-detail-hero__content {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 20;
    pointer-events: none;
}

.vd-detail-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.vd-detail-meta {
    display: flex;
    gap: 24px;
    align-items: center;
    color: #eee;
    font-size: 1.1rem;
}

.vd-detail-meta i {
    color: var(--vd-primary-light);
    margin-right: 8px;
}

/* Layout Content */
.vd-detail-container {
    padding-top: 20px;
    padding-bottom: 80px;
}

/* Blocks */
.vd-content-block {
    background: var(--vd-surface-dark);
    border-radius: var(--vd-radius-lg);
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid var(--vd-border-dark);
    box-shadow: var(--vd-shadow-light);
}

.vd-content-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vd-content-title i {
    color: var(--vd-primary);
}

/* Description */
.vd-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ddd;
}

/* Amenities Grid */
.vd-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.vd-amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ddd;
    font-size: 1rem;
}

.vd-amenity-item i {
    color: var(--vd-primary-light);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Glassmorphic Booking Widget */
.vd-booking-widget {
    background: var(--vd-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--vd-glass-border);
    border-radius: var(--vd-radius-lg);
    padding: 32px;
    position: sticky;
    top: 100px;
    box-shadow: var(--vd-shadow);
    color: #fff;
}

.vd-booking-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.vd-booking-price span {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--vd-text-muted);
}

.vd-booking-widget .form-group {
    margin-bottom: 20px;
}

.vd-booking-widget label {
    font-weight: 500;
    color: #ccc;
    margin-bottom: 8px;
    display: block;
}

.vd-booking-widget .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    height: auto;
}

.vd-booking-widget .form-control:focus {
    border-color: var(--vd-primary);
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.vd-btn-book {
    background: linear-gradient(135deg, var(--vd-primary), #0d47a1);
    color: white;
    border: none;
    border-radius: 12px;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.vd-btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.4);
}

/* Reviews */
.vd-review-item {
    border-bottom: 1px solid var(--vd-border-dark);
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.vd-review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.vd-review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.vd-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.vd-review-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0 4px 0;
}

.vd-review-date {
    font-size: 0.9rem;
    color: var(--vd-text-muted);
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .vd-detail-hero {
        height: 50vh;
        min-height: 350px;
        border-radius: 0 0 24px 24px;
    }
    
    .vd-detail-title {
        font-size: 2.2rem;
    }
    
    .vd-booking-widget {
        position: static;
        margin-top: 32px;
    }
    
    .vd-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

