/* ==========================================
   CASTELLUM V2 — DESIGN SYSTEM & LISTING STYLES
========================================== */
:root {
    --gold: #C9A84C;
    --gold-light: #dfc377;
    --gold-dark: #9e7f2d;
    --gold-glow: rgba(201, 168, 76, 0.35);
    --gold-tint: rgba(201, 168, 76, 0.08);
    --gold-grad: linear-gradient(135deg, #dfc377 0%, #C9A84C 50%, #9e7f2d 100%);
    --ink: #0a0d14;
    --ink-2: #111827;
    --ink-3: #1d2639;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --surface-3: #f1f5f9;
    --border: rgba(0, 0, 0, 0.08);
    --border-gold: rgba(201, 168, 76, 0.25);
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s var(--ease);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 12px 35px rgba(201, 168, 76, 0.15);
}

html[data-theme="dark"],
body.dark-mode {
    --surface: #0b0f19;
    --surface-2: #131b2e;
    --surface-3: #1a233a;
    --border: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(201, 168, 76, 0.3);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.45);
    --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.55);
    --shadow-gold: 0 12px 35px rgba(201, 168, 76, 0.22);
}

/* Base */
.pv2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    background-color: var(--surface);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

/* Ensure background transparency override against broad dark-mode.css section rules */
.pv2 section,
.pv2 .pv2-section,
.pv2 .pv2-specs-row {
    background-color: transparent !important;
}

.pv2-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: var(--ink);
    display: flex;
    align-items: center;
}

/* Hero background slider */
.pv2-hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.pv2-hero-slider .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}

.pv2-hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.pv2-hero-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.pv2-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pv2-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(10, 13, 20, 0.85) 0%, rgba(10, 13, 20, 0.4) 60%, rgba(10, 13, 20, 0.1) 100%),
        linear-gradient(to top, rgba(10, 13, 20, 0.8) 0%, rgba(10, 13, 20, 0) 50%);
    pointer-events: none;
    z-index: 1;
}

/* Top Right Badge */
.pv2-status-badge-new {
    position: absolute;
    top: 40px;
    right: 30px;
    background: #ffffff;
    border-radius: 30px;
    padding: 12px 24px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.pv2-status-badge-new .badge-status-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--gold-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.pv2-status-badge-new .badge-status-desc {
    font-size: 0.75rem;
    font-weight: 500;
    color: #4b5563;
}

/* Top Left Back Link */
.pv2-back-link {
    position: absolute;
    top: 40px;
    left: 30px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    pointer-events: auto;
}

.pv2-back-link:hover {
    color: var(--gold);
    transform: translateX(-3px);
}

/* Hero Wrapper */
.pv2-hero-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.pv2-hero-content-left {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: auto;
    opacity: 1;
}

.pv2-hero-collection {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pv2-hero-title-new,
body .pv2-hero-title-new,
body.dark-mode .pv2-hero-title-new,
body.dark-mode h1.pv2-hero-title-new,
html[data-theme="dark"] .pv2-hero-title-new,
html[data-theme="dark"] h1.pv2-hero-title-new {
    font-family: 'Oswald', sans-serif !important;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #ffffff !important;
    line-height: 1.1;
    margin: 0 0 16px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.pv2-hero-location-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.pv2-hero-location-new i {
    color: var(--gold);
}

.pv2-hero-desc-new {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.pv2-hero-features-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px 28px;
    width: 100%;
    margin-bottom: 40px;
}

.pv2-hero-feat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-width: 85px;
}

a.pv2-hero-feat-item {
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

a.pv2-hero-feat-item:hover {
    transform: translateY(-3px);
}

a.pv2-hero-feat-item:hover .pv2-h-feat-icon {
    color: #fff;
    transform: scale(1.08);
}

a.pv2-hero-feat-item:hover .pv2-h-feat-text {
    color: #fff;
}

.pv2-h-feat-icon {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 10px;
    height: 32px;
    display: flex;
    align-items: center;
    transition: transform 0.25s ease, color 0.25s ease;
}

.pv2-h-feat-text {
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   HERO RIGHT SIDE & CIRCULAR PROGRESS BADGE
========================================== */
.pv2-hero-right-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    pointer-events: auto;
    z-index: 10;
    margin-left: auto;
}

.pv2-prog-card-mobile {
    display: none;
    width: 100%;
    margin-bottom: 28px;
}



/* Standalone Circular Progress Badge (Clipping Masked Circle) */
.pv2-progress-circle-badge {
    position: relative;
    width: 155px;
    height: 155px;
    border-radius: 50% !important;
    aspect-ratio: 1 / 1;
    overflow: hidden !important; /* Perfect circular clipping mask */
    clip-path: circle(50% at 50% 50%) !important;
    -webkit-clip-path: circle(50% at 50% 50%) !important;
    background: radial-gradient(circle at 35% 25%, rgba(26, 32, 46, 0.92) 0%, rgba(10, 13, 20, 0.98) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(201, 168, 76, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(201, 168, 76, 0.18), inset 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.35s ease, box-shadow 0.35s ease;
    opacity: 1;
    pointer-events: auto;
    user-select: none;
    isolation: isolate;
}

.pv2-progress-circle-badge:hover {
    transform: translateY(-4px) scale(1.04);
    border-color: rgba(201, 168, 76, 0.9);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.75), 0 0 40px rgba(201, 168, 76, 0.4), inset 0 0 25px rgba(201, 168, 76, 0.2);
}

.pv2-progress-circle-badge:active {
    transform: translateY(-1px) scale(1.01);
}

/* In-Circle Camera Pill Badge */
.pv2-prog-circle-cam-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(201, 168, 76, 0.6);
    border-radius: 14px;
    padding: 2px 8px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.pv2-prog-circle-cam-pill i {
    font-size: 0.58rem;
    color: var(--gold);
}

.pv2-progress-circle-badge:hover .pv2-prog-circle-cam-pill {
    background: rgba(201, 168, 76, 0.3);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.45);
}

/* SVG Progress Ring & Clipped Background */
.pv2-prog-circle-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.pv2-prog-svg-bg-img {
    transform-origin: 80px 80px;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.4s ease;
    filter: brightness(0.62) contrast(1.1);
}

.pv2-progress-circle-badge:hover .pv2-prog-svg-bg-img {
    transform: scale(1.12);
    filter: brightness(0.75) contrast(1.15);
}

.pv2-prog-svg-shade {
    transition: fill 0.35s ease;
}

.pv2-progress-circle-badge:hover .pv2-prog-svg-shade {
    fill: rgba(10, 13, 20, 0.52);
}

.pv2-prog-track,
.pv2-prog-bar {
    transform: rotate(-90deg);
    transform-origin: 80px 80px;
}

.pv2-prog-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 7;
}

.pv2-prog-bar {
    fill: none;
    stroke: url(#pv2ProgGradDesk), url(#pv2ProgGradMob), url(#pv2ProgGrad);
    stroke-width: 7;
    stroke-linecap: round;
    filter: drop-shadow(0 0 7px rgba(201, 168, 76, 0.6));
    stroke-dasharray: 427.26;
    stroke-dashoffset: 427.26;
    transition: stroke-dashoffset 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-loaded .pv2-prog-bar {
    stroke-dashoffset: var(--target-offset, 0);
}

/* Center Content inside Circle */
.pv2-prog-circle-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    z-index: 2;
    pointer-events: none;
}

.pv2-prog-circle-top-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.pv2-prog-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pv2PulseDot 2s infinite;
}

@keyframes pv2PulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.pv2-prog-circle-val {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
}

.pv2-prog-gauge-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.15rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    display: inline-flex;
    align-items: baseline;
    letter-spacing: -0.5px;
}

.pv2-prog-gauge-pct {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-left: 2px;
    font-family: 'Montserrat', sans-serif;
}

.pv2-prog-circle-sub {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
}

.pv2-prog-cam-hint {
    font-size: 0.62rem;
    color: var(--gold);
    opacity: 0.85;
}

.pv2-progress-circle-badge:hover .pv2-prog-cam-hint {
    opacity: 1;
    transform: scale(1.15);
    transition: transform 0.25s ease;
}

.pv2-hero-buttons-new {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pv2-hero-btn-book {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gold-grad);
    color: #111 !important;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 30px var(--gold-glow);
    border: none;
}

.pv2-hero-btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 168, 76, 0.5);
}

.pv2-hero-btn-gallery {
    display: inline-flex;
    align-items: center;
    padding: 15px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.pv2-hero-btn-gallery:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.pv2-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #ffffff !important;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.pv2-btn-ghost:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Glassmorphic Thumbnail Panel */
.pv2-thumbs-panel {
    position: absolute;
    bottom: 100px;
    right: 30px;
    z-index: 10;
    background: rgba(10, 13, 20, 0.45);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 540px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.pv2-thumbs-slider-container {
    width: 380px;
    overflow: hidden;
}

.pv2-thumb-item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
    height: 70px;
    width: 85px !important;
}

.pv2-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pv2-thumb-item.swiper-slide-thumb-active {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

.pv2-thumb-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.pv2-thumb-nav-btn:hover {
    background: var(--gold-grad);
    color: #111;
    border-color: transparent;
}

/* Stats bottom bar */
.pv2-hero-stats-new {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(10, 13, 20, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pv2-hero-stats-inner-new {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pv2-stat-item-new {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.pv2-stat-item-new:last-child {
    border-right: none;
}

.pv2-stat-icon-new {
    font-size: 1.8rem;
    color: var(--gold);
    flex-shrink: 0;
}

.pv2-stat-info-new {
    display: flex;
    flex-direction: column;
}

.pv2-stat-value-new {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.pv2-stat-label-new {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

@media (max-width: 991px) {
    .pv2-hero-stats-inner-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .pv2-stat-item-new {
        padding: 16px 20px;
    }

    .pv2-stat-item-new:nth-child(2n) {
        border-right: none;
    }

    .pv2-hero-right-col {
        display: none !important;
    }

    .pv2-prog-card-mobile {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        margin-bottom: 24px;
    }



    .pv2-progress-circle-badge {
        width: 140px;
        height: 140px;
    }

    .pv2-prog-gauge-num {
        font-size: 1.85rem;
    }

    .pv2-prog-gauge-pct {
        font-size: 0.95rem;
    }

    .pv2-prog-circle-top-label {
        font-size: 0.54rem;
        letter-spacing: 1px;
    }

    .pv2-prog-circle-sub {
        font-size: 0.6rem;
    }

    .pv2-thumbs-panel {
        display: none;
    }
}

@media (max-width: 767px) {
    .pv2-hero-container {
        padding-top: 100px;
        align-items: flex-end;
        padding-bottom: 140px;
    }

    .pv2-prog-card-mobile {
        display: flex;
        justify-content: flex-start;
        margin: 12px 0 20px 0;
    }

    .pv2-progress-circle-badge {
        width: 130px;
        height: 130px;
    }

    .pv2-prog-gauge-num {
        font-size: 1.7rem;
    }

    .pv2-prog-gauge-pct {
        font-size: 0.88rem;
    }

    .pv2-prog-circle-top-label {
        font-size: 0.5rem;
    }

    .pv2-prog-circle-cam-pill {
        font-size: 0.55rem;
        padding: 1.5px 6px;
        gap: 3px;
    }

    .pv2-prog-circle-cam-pill i {
        font-size: 0.52rem;
    }

    .pv2-prog-circle-sub {
        font-size: 0.56rem;
    }

    .pv2-hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 24px;
    }

    .pv2-hero-title-new {
        font-size: 2.5rem;
    }

    .pv2-hero-desc-new {
        font-size: 0.88rem;
        margin-bottom: 24px;
    }

    .pv2-hero-collection {
        font-size: 0.68rem;
    }

    .pv2-back-link {
        top: 20px;
        left: 20px;
        font-size: 0.75rem;
    }

    .pv2-status-badge-new {
        top: 20px;
        right: 20px;
        padding: 8px 16px;
    }

    .pv2-status-badge-new .badge-status-title {
        font-size: 0.65rem;
    }

    .pv2-status-badge-new .badge-status-desc {
        font-size: 0.68rem;
    }

    .pv2-hero-stats-inner-new {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 0;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .pv2-hero-stats-inner-new::-webkit-scrollbar {
        display: none;
    }

    .pv2-stat-item-new {
        flex: 0 0 100%;
        scroll-snap-align: center;
        padding: 14px 20px;
        border-right: none;
        justify-content: center;
    }
}

/* ==========================================
   MAIN LAYOUT
========================================== */
.pv2-layout {
    margin: 60px auto 80px;
}

/* Full-width inline contact form section */
.pv2-contact-section {
    background: var(--surface-2) !important;
    border: 1px solid var(--border-gold) !important;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 60px;
    box-shadow: var(--shadow-md);
}

.pv2-contact-header {
    background: linear-gradient(135deg, #0a0d14 0%, #1d2639 100%);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.pv2-contact-header::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
}

.pv2-contact-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pv2-sidebar-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #111;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.pv2-contact-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pv2-contact-body {
    padding: 40px;
    background: var(--surface-2);
}

.pv2-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 1100px) {
    .pv2-contact-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .pv2-contact-grid>.pv2-submit-btn,
    .pv2-contact-grid>.pv2-wa-btn {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .pv2-contact-header {
        padding: 24px 20px;
    }

    .pv2-contact-body {
        padding: 24px 20px;
    }

    .pv2-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   SECTION TITLE
========================================== */
.pv2-section-title {
    font-family: 'Oswald', sans-serif !important;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    margin: 0 0 30px;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.pv2-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(201, 168, 76, 0.25), transparent);
}

.pv2-section-title i {
    font-size: 1.2rem;
    color: var(--gold);
    margin-right: 4px;
}

.pv2-section {
    margin-bottom: 64px;
    padding-top: 8px;
    scroll-margin-top: 90px;
}

/* ==========================================
   SPEC CARDS ROW
========================================== */
.pv2-specs-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

.pv2-spec-card {
    background: var(--surface-2) !important;
    border: 1px solid var(--border-gold) !important;
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.pv2-spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-grad);
    opacity: 0;
    transition: var(--transition);
}

.pv2-spec-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.pv2-spec-card:hover::before {
    opacity: 1;
}

.pv2-spec-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gold-tint);
    color: var(--gold);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: var(--transition);
}

.pv2-spec-card:hover .pv2-spec-card-icon {
    background: var(--gold-grad);
    color: #111;
}

.pv2-spec-card-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.pv2-spec-card-val {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ==========================================
   DESCRIPTION
========================================== */
.pv2-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.pv2-description p {
    margin-bottom: 1.2em;
}

.pv2-description strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* ==========================================
   FLOOR PLANS
========================================== */
.pv2-plans-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.pv2-plan-tab {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1.5px solid var(--border-gold);
    background: transparent;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.pv2-plan-tab.active,
.pv2-plan-tab:hover {
    background: var(--gold-grad);
    color: #111;
    border-color: transparent;
    box-shadow: 0 5px 18px rgba(201, 168, 76, 0.22);
}

.pv2-plan-panel {
    display: none;
    animation: pv2FadeIn 0.4s ease;
}

.pv2-plan-panel.active {
    display: block;
}

.pv2-plan-card {
    background: var(--surface-2) !important;
    border: 1px solid var(--border-gold) !important;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-md);
}

.pv2-plan-visual {
    position: relative;
    background: var(--surface-3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    cursor: zoom-in;
    overflow: hidden;
    border-right: 1px solid var(--border);
}

.pv2-plan-visual img {
    max-height: 280px;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
}

.pv2-plan-visual:hover img {
    transform: scale(1.04);
}

.pv2-plan-visual-zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(10, 13, 20, 0.65);
    color: #fff;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.pv2-plan-visual:hover .pv2-plan-visual-zoom {
    opacity: 1;
}

.pv2-plan-info {
    padding: 36px;
}

.pv2-plan-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.pv2-plan-subtitle {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.pv2-plan-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pv2-plan-specs-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.pv2-plan-specs-list li:last-child {
    border-bottom: none;
}

.pv2-plan-spec-key {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-weight: 600;
}

.pv2-plan-spec-key i {
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.pv2-plan-spec-val {
    font-weight: 700;
    color: var(--text-primary);
    text-align: right;
    max-width: 52%;
}

/* ==========================================
   AMENITIES GRID
========================================== */
.pv2-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 991px) {
    .pv2-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .pv2-amenities-grid {
        grid-template-columns: 1fr;
    }
}

.pv2-amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.pv2-amenity-item:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pv2-amenity-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--gold-tint);
    color: var(--gold);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.pv2-amenity-item:hover .pv2-amenity-icon {
    background: var(--gold-grad);
    color: #111;
}

.pv2-amenity-text h6 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

/* ==========================================
   ACCORDION STYLE FOR AMENITIES
========================================== */
.pv2-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.pv2-accordion-item {
    border: 1px solid var(--border);
    background: var(--surface-2) !important;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.pv2-accordion-item.active {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-sm);
}

.pv2-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.pv2-accordion-header:hover {
    color: var(--gold);
}

.pv2-accordion-icon {
    font-size: 0.9rem;
    transition: transform 0.4s var(--ease);
    color: var(--text-muted);
}

.pv2-accordion-item.active .pv2-accordion-icon {
    transform: rotate(180deg);
    color: var(--gold);
}

.pv2-accordion-content {
    display: none;
    padding: 0 24px 24px;
    animation: pv2FadeIn 0.4s ease;
}

/* ==========================================
   360 TOUR
========================================== */
.pv2-tour-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-2) !important;
    border: 1px solid var(--border-gold) !important;
    box-shadow: var(--shadow-md);
}

.pv2-tour-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ==========================================
   MAP SECTION
========================================== */
.pv2-map-card {
    background: var(--surface-2) !important;
    border: 1px solid var(--border-gold) !important;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}

.pv2-map-frame {
    border-radius: 0;
    overflow: hidden;
    height: 420px;
    width: 100%;
}

.pv2-map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.pv2-map-pois {
    width: 100%;
    padding: 28px;
    border-left: none;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pv2-map-pois h5 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 4px;
}

.pv2-map-pois-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 991px) {
    .pv2-map-pois-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .pv2-map-pois-grid {
        grid-template-columns: 1fr;
    }
}

.pv2-poi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.pv2-poi:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.pv2-poi-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pv2-poi-name i {
    color: var(--gold);
}

.pv2-poi-dist {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    background: var(--gold-tint);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ==========================================
   SHARE BAR
========================================== */
.pv2-share-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.pv2-share-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.pv2-share-links {
    display: flex;
    gap: 8px;
}

.pv2-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.pv2-share-btn:hover {
    color: #fff;
    transform: scale(1.15);
}

.pv2-share-btn.fb:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.pv2-share-btn.tw:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.pv2-share-btn.ln:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.pv2-share-btn.wa:hover {
    background: #25d366;
    border-color: #25d366;
}

.pv2-form-group {
    margin-bottom: 18px;
}

.pv2-form-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 7px;
}

.pv2-form-input {
    width: 100%;
    height: 46px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0 16px;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--surface-2);
    transition: var(--transition);
    box-sizing: border-box;
    font-family: inherit;
}

.pv2-form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
    background: var(--surface);
}

select.pv2-form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C9A84C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 11px;
    padding-right: 36px;
    font-family: inherit;
    color: var(--text-muted);
}

select.pv2-form-input option {
    background-color: var(--surface-2);
    color: var(--text-primary);
    font-family: inherit;
}

select.pv2-form-input option:disabled {
    color: var(--text-muted);
}

.pv2-submit-btn {
    height: 50px;
    background: var(--gold-grad);
    color: #111;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.22);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    padding: 0 24px;
}

.pv2-submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s ease;
}

.pv2-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, 0.38);
}

.pv2-submit-btn:hover::after {
    background: rgba(255, 255, 255, 0.08);
}

.pv2-wa-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: #25d366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}

.pv2-wa-btn:hover {
    transform: translateY(-2px);
    background: #20ba59;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38);
}

.pv2-privacy-note {
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.pv2-privacy-note input {
    accent-color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==========================================
   ANIMATIONS
========================================== */
@keyframes pv2FadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pv2FadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pv2PulseRing {
    0% {
        box-shadow: 0 0 0 0 var(--gold-glow);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(201, 168, 76, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
    }
}

/* Scroll reveal — immediate visibility for instant rendering without lag */
.pv2-reveal {
    opacity: 1;
    transform: none;
}

.pv2-form-input::placeholder {
    color: var(--text-muted);
}

/* ==========================================
   PDF 3D FLIPBOOK SECTION
========================================== */
.pv2-flipbook-teaser {
    background: linear-gradient(135deg, #0a0d14 0%, #1a2035 50%, #0f1622 100%);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.pv2-flipbook-teaser::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pv2-flipbook-teaser::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 110, 242, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pv2-flipbook-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.pv2-flipbook-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.pv2-flipbook-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.2;
}

.pv2-flipbook-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 24px;
}

.pv2-flipbook-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 32px;
    background: var(--gold-grad);
    color: #111 !important;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
    text-decoration: none;
}

.pv2-flipbook-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 168, 76, 0.5);
    color: #111 !important;
}

/* Animated 3D book widget */
.pv2-book-widget {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    perspective: 800px;
}

.pv2-book-3d {
    width: 120px;
    height: 160px;
    position: relative;
    transform-style: preserve-3d;
    animation: bookFloat 4s ease-in-out infinite;
}

@keyframes bookFloat {

    0%,
    100% {
        transform: rotateY(-20deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: rotateY(-20deg) rotateX(5deg) translateY(-10px);
    }
}

.pv2-book-front,
.pv2-book-side,
.pv2-book-pages {
    position: absolute;
    top: 0;
}

.pv2-book-front {
    width: 120px;
    height: 160px;
    background: linear-gradient(145deg, #1d2639 0%, #111827 100%);
    border-radius: 2px 8px 8px 2px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateZ(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: 16px;
    text-align: center;
}

.pv2-book-front-logo {
    font-size: 2rem;
    color: var(--gold);
}

.pv2-book-front-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.pv2-book-front-line {
    width: 40px;
    height: 1px;
    background: var(--gold-grad);
}

.pv2-book-side {
    width: 18px;
    height: 160px;
    background: linear-gradient(90deg, #9e7f2d 0%, #C9A84C 50%, #9e7f2d 100%);
    left: -17px;
    transform: rotateY(90deg) translateZ(1px);
    transform-origin: right center;
}

.pv2-book-pages {
    width: 116px;
    height: 156px;
    background: repeating-linear-gradient(90deg,
            #f0ead6 0px,
            #f0ead6 2px,
            #e8e0c8 2px,
            #e8e0c8 4px);
    left: 2px;
    top: 2px;
    transform: translateZ(-2px);
    border-radius: 0 6px 6px 0;
}

/* Page flip open animation on hover */
.pv2-flipbook-teaser:hover .pv2-book-3d {
    animation-play-state: paused;
    transform: rotateY(-35deg) rotateX(5deg) translateY(-5px);
    transition: transform 0.6s var(--ease-out);
}

/* Flipbook Modal */
.pv2-flipbook-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(5, 8, 15, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: pv2FadeIn 0.3s ease;
}

.pv2-flipbook-modal.open {
    display: flex;
}

.pv2-flipbook-modal-inner {
    width: 100%;
    max-width: 960px;
    background: #0f1622;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
    animation: pv2ScaleIn 0.35s var(--ease-out);
    max-height: 90vh;
}

@keyframes pv2ScaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pv2-flipbook-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: linear-gradient(135deg, #0a0d14, #1a2035);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    flex-shrink: 0;
}

.pv2-flipbook-modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.pv2-flipbook-modal-title i {
    color: var(--gold);
}

.pv2-flipbook-modal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pv2-flipbook-modal-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.pv2-flipbook-modal-action-btn.open-drive {
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold);
}

.pv2-flipbook-modal-action-btn.open-drive:hover {
    background: var(--gold-grad);
    color: #111;
    border-color: transparent;
}

.pv2-flipbook-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.pv2-flipbook-modal-close:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.pv2-flipbook-modal-viewer {
    flex: 1;
    position: relative;
    background: #080c14;
    min-height: 500px;
}

.pv2-flipbook-modal-viewer iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.pv2-flipbook-modal-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    pointer-events: none;
}

.pv2-flipbook-modal-loader .loader-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(201, 168, 76, 0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: flipbookSpin 0.9s linear infinite;
}

@keyframes flipbookSpin {
    to {
        transform: rotate(360deg);
    }
}

.pv2-flipbook-modal-footer {
    padding: 12px 24px;
    background: #080c14;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 8px;
}

.pv2-flipbook-note {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pv2-flipbook-note i {
    color: var(--gold);
    opacity: 0.6;
}

@media (max-width: 767px) {
    .pv2-flipbook-teaser {
        flex-direction: column;
        padding: 28px 20px;
    }

    .pv2-book-widget {
        display: none;
    }

    .pv2-flipbook-title {
        font-size: 1.4rem;
    }

    .pv2-flipbook-modal-inner {
        max-height: 95vh;
    }

    .pv2-flipbook-modal-viewer {
        min-height: 380px;
    }

    .pv2-flipbook-modal-header {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 991px) {
    .pv2-specs-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .pv2-plan-card {
        grid-template-columns: 1fr;
    }

    .pv2-plan-visual {
        height: 240px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .pv2-map-card {
        grid-template-columns: 1fr;
    }

    .pv2-map-pois {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--border);
    }
}

@media (max-width: 767px) {
    .pv2-specs-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pv2-section-title {
        font-size: 1.7rem;
    }

    .pv2-layout {
        padding-top: 32px;
    }
}

/* ==========================================
   FLIPBOOK MODAL — HEYZINE STYLE
========================================== */
.pv2-flipbook-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(5, 8, 18, 0.97);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pv2-flipbook-modal.open {
    display: flex;
}

.pv2-flipbook-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: rgba(10, 13, 20, 0.95);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    flex-shrink: 0;
    z-index: 2;
}

.pv2-flipbook-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.pv2-flipbook-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pv2-fb-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

.pv2-fb-action-btn:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--gold);
}

.pv2-fb-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 1rem;
}

.pv2-fb-close-btn:hover {
    background: rgba(255, 80, 80, 0.3);
    border-color: rgba(255, 80, 80, 0.6);
}

/* Main flipbook area */
.pv2-flipbook-body {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a2035 0%, #0a0d14 80%);
}

/* StPageFlip container & 3D Spine Crease Shadow */
#pv2FlipbookContainer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center center;
}

#pv2FlipbookContainer.pv2-zoomed {
    transform: scale(1.6);
    z-index: 15;
}

#pv2FlipbookContainer .stf__parent {
    position: relative;
    border-radius: 4px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

/* Spine Crease Center Line */
#pv2FlipbookContainer .stf__parent::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
    z-index: 30;
    pointer-events: none;
}

/* Central Spine Shadow Gradient Overlay */
#pv2FlipbookContainer .stf__parent::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100px;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 29;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.08) 18%,
            rgba(0, 0, 0, 0.28) 40%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0.28) 60%,
            rgba(0, 0, 0, 0.08) 82%,
            rgba(0, 0, 0, 0) 100%);
    mix-blend-mode: multiply;
}

/* LEFT PAGE: Spine is on the RIGHT edge -> Shadow on right edge fading left */
.page.page-left::after,
#pv2FlipbookContainer .stf__item.--left .page::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70px;
    pointer-events: none;
    z-index: 20;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 40%, rgba(0, 0, 0, 0.04) 75%, rgba(0, 0, 0, 0) 100%);
    mix-blend-mode: multiply;
}

/* RIGHT PAGE: Spine is on the LEFT edge -> Shadow on left edge fading right */
.page.page-right::after,
#pv2FlipbookContainer .stf__item.--right .page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 70px;
    pointer-events: none;
    z-index: 20;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 40%, rgba(0, 0, 0, 0.04) 75%, rgba(0, 0, 0, 0) 100%);
    mix-blend-mode: multiply;
}

/* Nav arrows */
.pv2-fb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(10, 13, 20, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
    font-size: 1.1rem;
    backdrop-filter: blur(8px);
}

.pv2-fb-nav:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.08);
}

.pv2-fb-nav.prev {
    left: 16px;
}

.pv2-fb-nav.next {
    right: 16px;
}

.pv2-fb-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

/* Bottom bar */
.pv2-flipbook-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 14px 24px;
    background: rgba(10, 13, 20, 0.95);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    flex-shrink: 0;
}

.pv2-fb-page-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    min-width: 120px;
    text-align: center;
}

.pv2-fb-page-info span {
    color: var(--gold);
    font-weight: 700;
}

/* Progress bar */
.pv2-fb-progress {
    flex: 1;
    max-width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.pv2-fb-progress-fill {
    height: 100%;
    background: var(--gold-grad);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Loader */
.pv2-fb-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 20;
    background: rgba(10, 13, 20, 0.95);
}

.pv2-fb-loader-icon {
    width: 56px;
    height: 56px;
    border: 3px solid rgba(201, 168, 76, 0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: pv2FbSpin 0.9s linear infinite;
}

@keyframes pv2FbSpin {
    to {
        transform: rotate(360deg);
    }
}

.pv2-fb-loader p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    text-align: center;
}

.pv2-fb-loader .pv2-fb-loader-progress {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

/* Error state */
.pv2-fb-error {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    padding: 40px;
}

.pv2-fb-error.show {
    display: flex;
}

.pv2-fb-error i {
    font-size: 3rem;
    color: rgba(255, 100, 100, 0.7);
}

.pv2-fb-error p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.pv2-fb-error a {
    color: var(--gold);
    text-decoration: underline;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .pv2-flipbook-modal {
        padding: 0;
    }

    .pv2-flipbook-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to bottom, rgba(5, 8, 18, 0.98), rgba(5, 8, 18, 0.3) 80%, rgba(5, 8, 18, 0));
        border-bottom: none;
        z-index: 100;
        padding: 10px 12px;
    }

    .pv2-flipbook-header-title {
        font-size: 0.75rem;
    }

    .pv2-fb-action-btn {
        padding: 5px 8px;
        font-size: 0.7rem;
        background: rgba(201, 168, 76, 0.2);
    }

    .pv2-flipbook-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(5, 8, 18, 0.98), rgba(5, 8, 18, 0.3) 80%, rgba(5, 8, 18, 0));
        border-top: none;
        z-index: 100;
        padding: 6px 10px;
        gap: 8px;
    }

    .pv2-flipbook-body {
        width: 100vw;
        height: 100vh;
        padding: 20px 0;
    }

    .pv2-fb-nav {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
        z-index: 99;
        opacity: 0.85;
        background: rgba(10, 13, 20, 0.7);
    }

    .pv2-fb-nav.prev {
        left: 2px;
    }

    .pv2-fb-nav.next {
        right: 2px;
    }

    .pv2-fb-page-info {
        font-size: 0.72rem;
        min-width: auto;
    }

    .pv2-fb-progress {
        max-width: 100px;
    }
}
