/* ==========================================================
   ⭐ YAMANARA PROPERTY - LUXURY PREMIUM EDITION ⭐
   Corporate Color: ORANGE #FF6B00 + PUTIH + GOLD ACCENT
   Konsep: MEWAH - MEGAH - ELEGAN - EKSKLUSIF
   Mobile: Seperti Aplikasi Android Kelas Atas
   ========================================================== */

/* ============ DESIGN TOKEN - SISTEM WARNA PREMIUM ============ */
:root {
    /* PRIMARY ORANGE PALETTE - 5 VARIASI UNTUK KEDALAMAN */
    --yp-orange-50:  #FFF3E0;
    --yp-orange-100: #FFE0B2;
    --yp-orange-300: #FFB74D;
    --yp-orange-500: #FF6B00;   /* PRIMARY BRAND */
    --yp-orange-600: #FB8C00;
    --yp-orange-700: #F57C00;
    --yp-orange-800: #EF6C00;
    --yp-orange-900: #E65100;

    /* LUXURY GRADIENTS - 3 LAPISAN */
    --yp-gradient-primary: linear-gradient(135deg, #FF6B00 0%, #FF8C33 45%, #FFA726 100%);
    --yp-gradient-deep:    linear-gradient(135deg, #E65100 0%, #FF6B00 50%, #FF9800 100%);
    --yp-gradient-soft:    linear-gradient(135deg, rgba(255,107,0,0.12) 0%, rgba(255,152,0,0.05) 100%);
    --yp-gradient-shine:   linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
    --yp-gradient-gold:    linear-gradient(135deg, #D4A574 0%, #F4D03F 50%, #D4A574 100%);

    /* NEUTRAL PREMIUM - TIDAK TERLALU GELAP, BERKELAS */
    --yp-white:      #FFFFFF;
    --yp-cream:      #FFFBF5;
    --yp-gray-50:    #FAFAFA;
    --yp-gray-100:   #F5F5F5;
    --yp-gray-200:   #EEEEEE;
    --yp-gray-300:   #E0E0E0;
    --yp-gray-400:   #BDBDBD;
    --yp-gray-500:   #9E9E9E;
    --yp-gray-600:   #757575;
    --yp-gray-700:   #616161;
    --yp-gray-800:   #424242;
    --yp-gray-900:   #1A1A2E;
    --yp-black:      #0D0D1A;

    /* LUXURY ACCENTS */
    --yp-gold:       #D4A574;
    --yp-gold-light: #F4D03F;
    --yp-success:    #10B981;
    --yp-success-2:  #059669;

    /* ELEVATION SHADOW - 6 TINGKAT SEPERTI MATERIAL DESIGN 3 */
    --yp-shadow-1: 0 1px 2px rgba(16, 24, 40, 0.04), 0 1px 3px rgba(16, 24, 40, 0.06);
    --yp-shadow-2: 0 2px 4px rgba(16, 24, 40, 0.04), 0 4px 12px rgba(16, 24, 40, 0.06);
    --yp-shadow-3: 0 4px 8px rgba(16, 24, 40, 0.06), 0 12px 28px rgba(16, 24, 40, 0.08);
    --yp-shadow-4: 0 8px 16px rgba(16, 24, 40, 0.08), 0 24px 48px rgba(16, 24, 40, 0.10);
    --yp-shadow-orange: 0 10px 30px rgba(255, 107, 0, 0.25), 0 4px 10px rgba(255, 107, 0, 0.15);
    --yp-shadow-orange-lg: 0 20px 60px rgba(255, 107, 0, 0.35), 0 8px 20px rgba(255, 107, 0, 0.2);

    /* RADIUS - PROPORSI MEWAH */
    --yp-radius-xs: 8px;
    --yp-radius-sm: 12px;
    --yp-radius-md: 18px;
    --yp-radius-lg: 26px;
    --yp-radius-xl: 36px;
    --yp-radius-pill: 999px;

    /* MOTION - SLOW & SMOOTH UNTUK KESAN MEWAH */
    --yp-transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --yp-transition-base: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --yp-transition-slow: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --yp-transition-luxury: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* SPACING SYSTEM */
    --yp-space-1: 4px;
    --yp-space-2: 8px;
    --yp-space-3: 12px;
    --yp-space-4: 16px;
    --yp-space-5: 24px;
    --yp-space-6: 32px;
    --yp-space-7: 48px;
    --yp-space-8: 64px;
}

/* ============ RESET & BASE TYPOGRAPHY ============ */
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--yp-cream);
    color: var(--yp-gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 0%, rgba(255, 107, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 100%, rgba(255, 152, 0, 0.04) 0%, transparent 40%);
    background-attachment: fixed;
}

::selection { background: var(--yp-orange-500); color: white; }

/* ============ RIPPLE EFFECT - ANDROID TOUCH ============ */
.yp-ripple {
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
}
.yp-ripple::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.8s ease;
    opacity: 0;
    pointer-events: none;
}
.yp-ripple:active::after {
    width: 400px; height: 400px;
    opacity: 1;
    transition: 0s;
}

/* ============ FILTER BAR - LUXURY SEARCH CONSOLE ============ */
.yp-filter-bar {
    background: var(--yp-white);
    border-radius: var(--yp-radius-xl);
    padding: 36px 40px;
    margin: 40px auto;
    max-width: 1280px;
    box-shadow: var(--yp-shadow-4);
    border: 1px solid rgba(255, 107, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* ORNAMEN SUDUT MEWAH */
.yp-filter-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: var(--yp-gradient-primary);
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.3);
}
.yp-filter-bar::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 200px; height: 200px;
    background: var(--yp-gradient-soft);
    border-radius: 50%;
    pointer-events: none;
}

.yp-filter-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.yp-filter-icon {
    width: 56px; height: 56px;
    background: var(--yp-gradient-deep);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--yp-shadow-orange);
    position: relative;
}
.yp-filter-icon::after {
    content: '';
    position: absolute; inset: -3px;
    border-radius: 18px;
    background: var(--yp-gradient-primary);
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
}

.yp-filter-title h3 {
    font-size: 26px;
    font-weight: 900;
    color: var(--yp-gray-900);
    letter-spacing: -0.8px;
    line-height: 1.2;
}
.yp-filter-title h3 span {
    background: var(--yp-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.yp-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.yp-filter-select {
    width: 100%;
    padding: 18px 22px 18px 20px;
    border: 2px solid var(--yp-gray-200);
    border-radius: var(--yp-radius-lg);
    font-size: 15px;
    font-weight: 700;
    color: var(--yp-gray-900);
    background: var(--yp-gray-50);
    cursor: pointer;
    transition: var(--yp-transition-base);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FF6B00' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 56px;
    position: relative;
}
.yp-filter-select:hover {
    border-color: var(--yp-orange-300);
    background-color: var(--yp-white);
    transform: translateY(-2px);
    box-shadow: var(--yp-shadow-2);
}
.yp-filter-select:focus {
    outline: none;
    border-color: var(--yp-orange-500);
    background-color: var(--yp-white);
    box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.12), var(--yp-shadow-3);
    transform: translateY(-2px);
}

/* ============ PROPERTY CARD - LUXURY CARD DESIGN ============ */
.yp-property-grid {
    max-width: 1280px;
    margin: 0 auto 80px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.yp-property-card {
    background: var(--yp-white);
    border-radius: var(--yp-radius-xl);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--yp-shadow-2);
    transition: var(--yp-transition-luxury);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: block;
    position: relative;
    transform-origin: center;
}
.yp-property-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--yp-radius-xl);
    padding: 2px;
    background: var(--yp-gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: var(--yp-transition-base);
    pointer-events: none;
    z-index: 3;
}
.yp-property-card:hover {
    transform: translateY(-14px) scale(1.015);
    box-shadow: var(--yp-shadow-4), 0 30px 60px rgba(255, 107, 0, 0.12);
}
.yp-property-card:hover::before { opacity: 1; }

/* CARD IMAGE */
.yp-card-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--yp-gray-100);
}
.yp-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
    transform: scale(1.05);
}
.yp-property-card:hover .yp-card-image img {
    transform: scale(1.18);
    filter: saturate(1.1) contrast(1.05);
}

/* SHINE EFFECT SAAT HOVER */
.yp-card-image::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: var(--yp-gradient-shine);
    transform: skewX(-25deg);
    transition: left 0.9s ease;
    z-index: 2;
}
.yp-property-card:hover .yp-card-image::after { left: 150%; }

.yp-no-image {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 72px;
    background: linear-gradient(135deg, var(--yp-gray-100), var(--yp-gray-200));
    color: var(--yp-gray-400);
}

/* BADGE SYSTEM - PREMIUM */
.yp-card-badges {
    position: absolute;
    top: 18px; left: 18px;
    display: flex; flex-wrap: wrap;
    gap: 8px;
    z-index: 4;
}
.yp-badge {
    padding: 7px 16px;
    border-radius: var(--yp-radius-pill);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.yp-badge-trans {
    background: var(--yp-gradient-deep);
    color: var(--yp-white);
    box-shadow: var(--yp-shadow-orange);
}
.yp-badge-nego {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.95));
    color: var(--yp-white);
}
.yp-badge-trans::before {
    content: '⭐';
    font-size: 10px;
}

/* OVERLAY LUXURY */
.yp-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 26, 0.92) 0%, rgba(13, 13, 26, 0.4) 45%, transparent 75%);
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 28px;
    opacity: 0;
    transition: var(--yp-transition-luxury);
    z-index: 3;
}
.yp-property-card:hover .yp-card-overlay { opacity: 1; }

.yp-view-detail {
    background: var(--yp-white);
    color: var(--yp-orange-700);
    padding: 14px 32px;
    border-radius: var(--yp-radius-pill);
    font-weight: 900;
    font-size: 14px;
    transform: translateY(30px) scale(0.9);
    transition: var(--yp-transition-luxury);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}
.yp-view-detail::after {
    content: '→';
    transition: transform 0.3s ease;
    display: inline-block;
}
.yp-property-card:hover .yp-view-detail {
    transform: translateY(0) scale(1);
}
.yp-view-detail:hover::after { transform: translateX(5px); }

/* CARD CONTENT */
.yp-card-content { padding: 26px 28px 30px; position: relative; }

.yp-card-price {
    font-size: 26px;
    font-weight: 900;
    background: var(--yp-gradient-deep);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
    line-height: 1.1;
    display: inline-block;
}

.yp-card-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--yp-gray-900);
    margin-bottom: 12px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--yp-transition-fast);
}
.yp-property-card:hover .yp-card-title { color: var(--yp-orange-700); }

.yp-card-location {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px;
    color: var(--yp-gray-600);
    margin-bottom: 22px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--yp-gray-200);
}
.yp-loc-icon { color: var(--yp-orange-500); font-size: 16px; }

.yp-card-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.yp-spec-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 800;
    color: var(--yp-gray-700);
    text-align: center;
    padding: 10px 4px;
    border-radius: var(--yp-radius-sm);
    transition: var(--yp-transition-fast);
}
.yp-spec-item:hover {
    background: var(--yp-orange-50);
    color: var(--yp-orange-800);
    transform: translateY(-2px);
}
.yp-spec-icon {
    font-size: 18px;
    color: var(--yp-orange-500);
    filter: drop-shadow(0 1px 2px rgba(255, 107, 0, 0.2));
}

/* ============ DETAIL PROPERTI - LUXURY SHOWCASE ============ */
.yp-detail-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 0 140px;
    position: relative;
}

/* BREADCRUMB */
.yp-breadcrumb {
    max-width: 1280px;
    margin: 0 auto 20px;
    padding: 20px 24px 0;
    display: flex; align-items: center; gap: 10px;
    font-size: 13px;
    color: var(--yp-gray-500);
    font-weight: 600;
}
.yp-breadcrumb a { color: var(--yp-gray-700); text-decoration: none; transition: var(--yp-transition-fast); }
.yp-breadcrumb a:hover { color: var(--yp-orange-600); }
.yp-sep { color: var(--yp-gray-300); font-size: 10px; }
.yp-current { color: var(--yp-orange-600); font-weight: 800; }

/* COLLAPSING HEADER - ANDROID STYLE */
.yp-collapsing-header {
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
}

.yp-hero-gallery {
    position: relative;
    height: 560px;
    overflow: hidden;
    border-radius: 0 0 var(--yp-radius-xl) var(--yp-radius-xl);
    box-shadow: var(--yp-shadow-4);
}
.yp-hero-gallery img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.1s linear;
    will-change: transform;
}
.yp-hero-gallery::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(13,13,26,0.3) 0%, transparent 30%, transparent 60%, rgba(13,13,26,0.85) 100%);
    pointer-events: none;
}

.yp-hero-back {
    position: absolute;
    top: 24px; left: 24px;
    width: 48px; height: 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    box-shadow: var(--yp-shadow-3);
    cursor: pointer;
    z-index: 10;
    transition: var(--yp-transition-base);
    border: none;
}
.yp-hero-back:hover {
    transform: scale(1.1) rotate(-10deg);
    background: var(--yp-white);
}

.yp-hero-badges {
    position: absolute;
    top: 24px; right: 24px;
    display: flex; gap: 10px; flex-wrap: wrap;
    z-index: 10;
    justify-content: flex-end;
}
.yp-badge-lg {
    padding: 10px 22px;
    font-size: 12px;
    background: var(--yp-gradient-deep);
    color: white;
    border-radius: var(--yp-radius-pill);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--yp-shadow-orange);
    display: inline-flex; align-items: center; gap: 8px;
}
.yp-badge-lg::before { content: '🏆'; }
.yp-badge-outline {
    padding: 8px 20px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--yp-radius-pill);
    font-weight: 800;
    backdrop-filter: blur(10px);
}
.yp-badge-nego-lg {
    padding: 10px 22px;
    font-size: 12px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border-radius: var(--yp-radius-pill);
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.yp-hero-title-wrap {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 40px 36px;
    z-index: 5;
}
.yp-hero-pretitle {
    display: flex; align-items: center; gap: 10px;
    color: var(--yp-orange-300);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.yp-hero-pretitle::before {
    content: '';
    width: 40px; height: 2px;
    background: var(--yp-gradient-primary);
    border-radius: 2px;
}
.yp-hero-title {
    font-size: 44px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 14px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.yp-hero-location {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
}
.yp-hero-location .yp-loc-icon { color: var(--yp-orange-300); font-size: 18px; }

.yp-hero-price-card {
    position: absolute;
    bottom: 36px; right: 40px;
    background: var(--yp-white);
    border-radius: var(--yp-radius-lg);
    padding: 22px 30px;
    box-shadow: var(--yp-shadow-orange-lg);
    z-index: 10;
    border-left: 5px solid;
    border-image: var(--yp-gradient-deep) 1;
    min-width: 300px;
    text-align: center;
}
.yp-price-label {
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--yp-gray-500);
    margin-bottom: 6px;
}
.yp-price-value {
    display: block;
    font-size: 34px;
    font-weight: 900;
    background: var(--yp-gradient-deep);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.8px;
    line-height: 1.1;
}
.yp-price-period {
    display: block;
    font-size: 14px;
    color: var(--yp-gray-600);
    font-weight: 700;
    margin-top: 4px;
}

/* THUMBNAIL GALLERY */
.yp-gallery-thumbs {
    display: flex;
    gap: 12px;
    padding: 20px 40px 0;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 1280px;
    margin: 0 auto;
}
.yp-gallery-thumbs::-webkit-scrollbar { display: none; }
.yp-thumb {
    flex: 0 0 110px;
    height: 80px;
    border-radius: var(--yp-radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--yp-transition-base);
    opacity: 0.6;
    position: relative;
    box-shadow: var(--yp-shadow-1);
}
.yp-thumb:hover { opacity: 0.9; transform: translateY(-3px); }
.yp-thumb.active {
    border-color: var(--yp-orange-500);
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: var(--yp-shadow-orange);
}
.yp-thumb.active::after {
    content: '✓';
    position: absolute; inset: 0;
    background: rgba(255, 107, 0, 0.3);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 900;
}
.yp-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* CONTENT GRID */
.yp-detail-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 36px;
}

/* SECTION TITLE - LUXURY ORNAMEN */
.yp-section-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--yp-gray-900);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 14px;
    letter-spacing: -0.4px;
    position: relative;
    padding-bottom: 14px;
}
.yp-section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 60px; height: 4px;
    background: var(--yp-gradient-primary);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.4);
}
.yp-title-icon {
    width: 44px; height: 44px;
    background: var(--yp-gradient-soft);
    color: var(--yp-orange-600);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

/* CARD WRAPPER */
.yp-specs-card, .yp-desc-card, .yp-facilities-card, .yp-maps-card {
    background: var(--yp-white);
    border-radius: var(--yp-radius-xl);
    padding: 36px;
    margin-bottom: 28px;
    box-shadow: var(--yp-shadow-2);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--yp-transition-base);
    position: relative;
    overflow: hidden;
}
.yp-specs-card:hover, .yp-desc-card:hover, .yp-facilities-card:hover, .yp-maps-card:hover {
    box-shadow: var(--yp-shadow-3);
    transform: translateY(-3px);
}
.yp-specs-card::before, .yp-desc-card::before, .yp-facilities-card::before, .yp-maps-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: var(--yp-gradient-primary);
    opacity: 0;
    transition: var(--yp-transition-base);
}
.yp-specs-card:hover::before, .yp-desc-card:hover::before, .yp-facilities-card:hover::before, .yp-maps-card:hover::before {
    opacity: 1;
}

/* SPESIFIKASI GRID LUXURY */
.yp-specs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.yp-spec-box {
    background: linear-gradient(135deg, var(--yp-gray-50), var(--yp-white));
    border: 1.5px solid var(--yp-gray-200);
    border-radius: var(--yp-radius-lg);
    padding: 22px 14px;
    text-align: center;
    transition: var(--yp-transition-luxury);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.yp-spec-box::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: var(--yp-gradient-soft);
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.7s ease;
}
.yp-spec-box:hover {
    border-color: var(--yp-orange-400);
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--yp-shadow-orange);
    background: var(--yp-white);
}
.yp-spec-box:hover::after { transform: rotate(45deg) translateY(0); }
.yp-spec-box > * { position: relative; z-index: 1; }

.yp-spec-box-icon {
    display: block;
    font-size: 30px;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 6px rgba(255, 107, 0, 0.3));
    transition: var(--yp-transition-base);
}
.yp-spec-box:hover .yp-spec-box-icon {
    transform: scale(1.2) rotate(-8deg);
}
.yp-spec-box small {
    display: block;
    font-size: 10px;
    color: var(--yp-gray-500);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}
.yp-spec-box strong {
    display: block;
    font-size: 17px;
    color: var(--yp-gray-900);
    font-weight: 900;
    letter-spacing: -0.3px;
}
.yp-spec-box:hover strong {
    background: var(--yp-gradient-deep);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DESKRIPSI */
.yp-desc-content {
    font-size: 16px;
    line-height: 1.95;
    color: var(--yp-gray-700);
    font-weight: 500;
}
.yp-desc-content p { margin-bottom: 16px; }
.yp-desc-content strong { color: var(--yp-gray-900); font-weight: 800; }

/* FASILITAS */
.yp-facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.yp-facility-item {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 20px;
    background: var(--yp-gray-50);
    border-radius: var(--yp-radius-md);
    font-weight: 700;
    color: var(--yp-gray-800);
    border: 1.5px solid var(--yp-gray-200);
    transition: var(--yp-transition-base);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}
.yp-facility-item:hover {
    background: var(--yp-white);
    border-color: var(--yp-orange-400);
    color: var(--yp-orange-800);
    transform: translateX(6px);
    box-shadow: var(--yp-shadow-2);
}
.yp-fac-check {
    width: 28px; height: 28px;
    background: var(--yp-gradient-deep);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.35);
    transition: var(--yp-transition-base);
}
.yp-facility-item:hover .yp-fac-check {
    transform: rotate(360deg) scale(1.15);
}

/* MAPS */
.yp-maps-frame {
    border-radius: var(--yp-radius-lg);
    overflow: hidden;
    border: 2px solid var(--yp-gray-200);
    aspect-ratio: 16/9;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.yp-maps-frame iframe { width: 100%; height: 100%; border: none; }

/* ============ SIDEBAR - PREMIUM PANEL ============ */
.yp-detail-sidebar {
    position: sticky;
    top: 24px;
    align-self: flex-start;
}

/* AGEN CARD - LUXURY AGENT PROFILE */
.yp-agent-card {
    background: var(--yp-white);
    border-radius: var(--yp-radius-xl);
    padding: 30px;
    margin-bottom: 28px;
    box-shadow: var(--yp-shadow-3);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}
.yp-agent-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--yp-gradient-primary);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.2;
    transition: var(--yp-transition-base);
}
.yp-agent-card:hover::before { opacity: 0.5; }
.yp-agent-card::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, var(--yp-orange-50) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.yp-agent-header {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 24px;
    position: relative;
}
.yp-agent-avatar {
    width: 72px; height: 72px;
    background: var(--yp-gradient-deep);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; font-weight: 900;
    box-shadow: var(--yp-shadow-orange);
    flex-shrink: 0;
    position: relative;
}
.yp-agent-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px; right: 2px;
    width: 18px; height: 18px;
    background: var(--yp-success);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.yp-agent-info h3 {
    font-size: 19px;
    font-weight: 900;
    color: var(--yp-gray-900);
    margin-bottom: 3px;
    letter-spacing: -0.3px;
}
.yp-agent-info p {
    font-size: 13px;
    color: var(--yp-gray-500);
    margin-bottom: 5px;
    font-weight: 600;
}
.yp-agent-verified {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px;
    color: var(--yp-success-2);
    font-weight: 900;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: var(--yp-radius-pill);
}
.yp-agent-verified::before { content: '✓'; font-size: 10px; }

.yp-agent-actions {
    display: flex; flex-direction: column; gap: 12px;
    position: relative;
}
.yp-wa-agent-btn, .yp-call-agent-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px;
    border-radius: var(--yp-radius-lg);
    text-decoration: none;
    font-weight: 900;
    font-size: 15px;
    transition: var(--yp-transition-luxury);
    text-align: center;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    width: 100%;
}
.yp-wa-agent-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.yp-wa-agent-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}
.yp-call-agent-btn {
    background: var(--yp-gray-900);
    color: white;
    box-shadow: 0 8px 24px rgba(13, 13, 26, 0.3);
}
.yp-call-agent-btn:hover {
    background: var(--yp-gradient-deep);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--yp-shadow-orange-lg);
}

.yp-agent-note {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px dashed var(--yp-gray-200);
    text-align: center;
    color: var(--yp-gray-500);
    font-size: 12px;
    font-weight: 600;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.yp-agent-note::before { content: '📅'; }

/* SHARE SECTION - LUXURY */
.yp-share-section {
    background: var(--yp-white);
    border-radius: var(--yp-radius-xl);
    padding: 30px;
    margin-bottom: 28px;
    box-shadow: var(--yp-shadow-2);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.yp-share-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--yp-gray-900);
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}
.yp-share-icon { color: var(--yp-orange-500); font-size: 20px; }
.yp-share-subtitle {
    font-size: 12px;
    color: var(--yp-gray-500);
    margin-bottom: 22px;
    line-height: 1.6;
    font-weight: 600;
    padding-left: 32px;
}

.yp-share-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}
.yp-share-btn {
    display: flex; align-items: center; gap: 12px;
    padding: 14px;
    border-radius: var(--yp-radius-lg);
    text-decoration: none;
    border: 2px solid var(--yp-gray-200);
    cursor: pointer;
    font-family: inherit;
    transition: var(--yp-transition-luxury);
    text-align: left;
    background: var(--yp-white);
}
.yp-share-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--yp-shadow-3);
}
.yp-share-btn strong {
    display: block;
    font-size: 13px;
    font-weight: 900;
    color: var(--yp-gray-900);
}
.yp-share-btn small {
    display: block;
    font-size: 10px;
    color: var(--yp-gray-500);
    font-weight: 700;
    letter-spacing: 0.3px;
}
.yp-sos-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--yp-transition-base);
}
.yp-share-btn:hover .yp-sos-icon { transform: scale(1.15) rotate(-8deg); }

.yp-share-wa { border-color: #D1FADF; background: linear-gradient(135deg, #ECFDF5, #FFFFFF); }
.yp-share-wa .yp-sos-icon { background: linear-gradient(135deg, #25D366, #128C7E); color: white; box-shadow: 0 4px 12px rgba(37,211,102,0.3); }
.yp-share-wa:hover { border-color: #25D366; }

.yp-share-fb { border-color: #DBE4FF; background: linear-gradient(135deg, #EFF6FF, #FFFFFF); }
.yp-share-fb .yp-sos-icon { background: linear-gradient(135deg, #1877F2, #0D47A1); color: white; box-shadow: 0 4px 12px rgba(24,119,242,0.3); }
.yp-share-fb:hover { border-color: #1877F2; }

.yp-share-linkedin { border-color: #C7DCF7; background: linear-gradient(135deg, #EBF4FF, #FFFFFF); }
.yp-share-linkedin .yp-sos-icon { background: linear-gradient(135deg, #0A66C2, #004182); color: white; box-shadow: 0 4px 12px rgba(10,102,194,0.3); }
.yp-share-linkedin:hover { border-color: #0A66C2; }

.yp-share-x { border-color: #E0E0E0; background: linear-gradient(135deg, #FAFAFA, #FFFFFF); }
.yp-share-x .yp-sos-icon { background: var(--yp-black); color: white; box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
.yp-share-x:hover { border-color: var(--yp-black); }

/* SURVEY LINK BOX */
.yp-survey-link-box {
    background: var(--yp-gradient-soft);
    border: 2px dashed var(--yp-orange-400);
    border-radius: var(--yp-radius-lg);
    padding: 18px;
    position: relative;
}
.yp-survey-link-box::before {
    content: '💰';
    position: absolute;
    top: -12px; right: 18px;
    font-size: 24px;
    background: var(--yp-white);
    border-radius: 50%;
    padding: 4px;
    box-shadow: var(--yp-shadow-2);
}
.yp-survey-header {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px;
    font-weight: 900;
    color: var(--yp-orange-800);
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}
.yp-survey-input-wrap {
    display: flex; gap: 8px;
    margin-bottom: 10px;
}
.yp-survey-input {
    flex: 1;
    padding: 12px 14px;
    border: 2px solid var(--yp-orange-300);
    border-radius: var(--yp-radius-md);
    font-size: 11px;
    font-weight: 700;
    color: var(--yp-gray-900);
    background: white;
    min-width: 0;
}
.yp-copy-btn {
    padding: 12px 18px;
    background: var(--yp-gradient-deep);
    color: white;
    border: none;
    border-radius: var(--yp-radius-md);
    font-weight: 900;
    font-size: 12px;
    cursor: pointer;
    transition: var(--yp-transition-base);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}
.yp-copy-btn:hover { transform: scale(1.05); }
.yp-copy-btn.copied {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.yp-survey-note {
    font-size: 11px;
    color: var(--yp-orange-800);
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}

/* LOGIN PROMPT */
.yp-login-prompt {
    background: linear-gradient(135deg, #FFF8F0, #FFFFFF);
    border: 1.5px solid var(--yp-orange-200);
    border-radius: var(--yp-radius-lg);
    padding: 20px;
    text-align: center;
}
.yp-login-prompt span {
    display: block;
    font-size: 32px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 6px rgba(255, 107, 0, 0.2));
}
.yp-login-prompt p {
    font-size: 12px;
    color: var(--yp-gray-700);
    margin-bottom: 14px;
    line-height: 1.6;
    font-weight: 600;
}
.yp-login-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--yp-gradient-deep);
    color: white;
    border-radius: var(--yp-radius-pill);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transition: var(--yp-transition-luxury);
    box-shadow: var(--yp-shadow-orange);
    letter-spacing: 0.5px;
}
.yp-login-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--yp-shadow-orange-lg);
}

/* CTA CARD - MEGA CALL TO ACTION */
.yp-cta-card {
    background: var(--yp-gradient-deep);
    border-radius: var(--yp-radius-xl);
    padding: 36px 28px;
    color: white;
    text-align: center;
    box-shadow: var(--yp-shadow-orange-lg);
    position: relative;
    overflow: hidden;
}
.yp-cta-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}
.yp-cta-card::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 180px; height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}
.yp-cta-icon {
    font-size: 52px;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.3));
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.yp-cta-card h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    letter-spacing: -0.4px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.yp-cta-card p {
    font-size: 14px;
    opacity: 0.95;
    margin-bottom: 22px;
    line-height: 1.6;
    position: relative;
    font-weight: 600;
}
.yp-cta-btn {
    display: inline-block;
    padding: 16px 36px;
    background: white;
    color: var(--yp-orange-700);
    border-radius: var(--yp-radius-pill);
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    transition: var(--yp-transition-luxury);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    position: relative;
    letter-spacing: 0.5px;
}
.yp-cta-btn:hover {
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
    background: var(--yp-gray-900);
    color: white;
}

/* ============ FLOATING ACTION BUTTON - ANDROID MATERIAL ============ */
.yp-mobile-fab {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--yp-radius-pill);
    padding: 10px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    gap: 8px;
    animation: fabSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes fabSlideUp {
    from { opacity: 0; transform: translate(-50%, 40px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}
.yp-mobile-fab a, .yp-mobile-fab button {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 20px;
    border-radius: var(--yp-radius-pill);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    transition: var(--yp-transition-luxury);
    color: white;
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
}
.yp-mobile-fab a:active, .yp-mobile-fab button:active {
    transform: scale(0.95);
}
.yp-fab-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.yp-fab-call {
    background: var(--yp-gray-900);
    box-shadow: 0 6px 20px rgba(13, 13, 26, 0.35);
}
.yp-fab-share {
    background: var(--yp-gradient-deep);
    box-shadow: var(--yp-shadow-orange);
}

/* ============ EMPTY STATE ============ */
.yp-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 40px;
    background: var(--yp-white);
    border-radius: var(--yp-radius-xl);
    box-shadow: var(--yp-shadow-2);
    border: 2px dashed var(--yp-gray-200);
}
.yp-empty-icon {
    font-size: 96px;
    margin-bottom: 24px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    opacity: 0.7;
}
.yp-empty-state h3 {
    font-size: 26px;
    font-weight: 900;
    color: var(--yp-gray-900);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.yp-empty-state p {
    color: var(--yp-gray-500);
    font-size: 16px;
    font-weight: 600;
    max-width: 420px;
    margin: 0 auto;
}

/* ============ ANIMASI ON SCROLL ============ */
@keyframes fadeUpLuxury {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.yp-property-card, .yp-specs-card, .yp-agent-card, .yp-share-section, .yp-cta-card {
    animation: fadeUpLuxury 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    opacity: 0;
}
.yp-property-card:nth-child(1) { animation-delay: 0.05s; }
.yp-property-card:nth-child(2) { animation-delay: 0.15s; }
.yp-property-card:nth-child(3) { animation-delay: 0.25s; }
.yp-property-card:nth-child(4) { animation-delay: 0.35s; }
.yp-property-card:nth-child(5) { animation-delay: 0.45s; }
.yp-property-card:nth-child(6) { animation-delay: 0.55s; }

/* ============ RESPONSIVE - ANDROID APP EXPERIENCE ============ */
@media (max-width: 1200px) {
    .yp-property-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .yp-detail-grid { grid-template-columns: 1fr; }
    .yp-detail-sidebar { position: static; }
    .yp-specs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .yp-filter-grid { grid-template-columns: repeat(2, 1fr); }
    .yp-hero-gallery { height: 420px; border-radius: 0 0 var(--yp-radius-lg) var(--yp-radius-lg); }
    .yp-hero-title { font-size: 32px; }
    .yp-hero-price-card {
        position: relative;
        bottom: auto; right: auto;
        margin: 20px 24px 0;
        min-width: auto;
        transform: translateY(-30px);
        border-radius: var(--yp-radius-lg);
    }
    .yp-hero-title-wrap { padding: 28px 24px 24px; }
    .yp-gallery-thumbs { padding: 0 24px; }
}

@media (max-width: 768px) {
    /* MOBILE LAYOUT - ANDROID APP STYLE */
    body { background: var(--yp-white); }

    .yp-filter-bar {
        margin: 16px;
        padding: 24px;
        border-radius: var(--yp-radius-lg);
    }
    .yp-filter-title h3 { font-size: 20px; }
    .yp-filter-icon { width: 48px; height: 48px; font-size: 20px; }
    .yp-filter-grid { grid-template-columns: 1fr; gap: 12px; }
    .yp-filter-select { padding: 16px 20px 16px 16px; font-size: 14px; border-radius: var(--yp-radius-md); }

    .yp-property-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 0 16px 40px;
        margin-bottom: 40px;
    }
    .yp-property-card:hover { transform: translateY(-6px) scale(1.01); }
    .yp-card-image { height: 220px; }
    .yp-card-content { padding: 20px 22px 24px; }
    .yp-card-price { font-size: 22px; }
    .yp-card-title { font-size: 17px; }

    .yp-detail-container { padding-bottom: 120px; }
    .yp-breadcrumb { padding: 16px 16px 0; margin-bottom: 12px; }

    /* COLLAPSING HERO MOBILE */
    .yp-hero-gallery { height: 340px; border-radius: 0; box-shadow: none; }
    .yp-hero-back { top: 16px; left: 16px; width: 42px; height: 42px; font-size: 18px; }
    .yp-hero-badges { top: 16px; right: 16px; gap: 6px; }
    .yp-badge-lg { padding: 8px 16px; font-size: 10px; }
    .yp-badge-outline, .yp-badge-nego-lg { padding: 6px 14px; font-size: 10px; }
    .yp-hero-pretitle { font-size: 11px; }
    .yp-hero-title { font-size: 26px; letter-spacing: -0.8px; }
    .yp-hero-location { font-size: 14px; }
    .yp-hero-title-wrap { padding: 20px 16px 18px; }
    .yp-hero-price-card {
        margin: 16px;
        padding: 18px 22px;
        transform: translateY(-20px);
        border-radius: var(--yp-radius-lg);
    }
    .yp-price-value { font-size: 26px; }

    .yp-gallery-thumbs { padding: 0 16px; gap: 8px; }
    .yp-thumb { flex: 0 0 80px; height: 60px; border-radius: var(--yp-radius-sm); }

    .yp-detail-grid { padding: 0 16px; gap: 24px; }
    .yp-specs-card, .yp-desc-card, .yp-facilities-card, .yp-maps-card {
        padding: 24px;
        border-radius: var(--yp-radius-lg);
        margin-bottom: 20px;
        box-shadow: var(--yp-shadow-1);
    }
    .yp-section-title { font-size: 19px; }
    .yp-specs-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .yp-spec-box { padding: 18px 10px; border-radius: var(--yp-radius-md); }
    .yp-spec-box-icon { font-size: 24px; }
    .yp-spec-box strong { font-size: 15px; }
    .yp-facilities-grid { grid-template-columns: 1fr; gap: 10px; }
    .yp-facility-item { padding: 14px 16px; }

    .yp-agent-card, .yp-share-section, .yp-cta-card {
        padding: 24px;
        border-radius: var(--yp-radius-lg);
        margin-bottom: 20px;
    }
    .yp-share-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .yp-share-btn { padding: 12px; border-radius: var(--yp-radius-md); }
    .yp-sos-icon { width: 38px; height: 38px; font-size: 18px; }

    /* FAB MOBILE - SELALU TAMPIL */
    .yp-mobile-fab {
        display: flex;
        width: calc(100% - 32px);
        max-width: 420px;
        justify-content: space-between;
    }
    .yp-mobile-fab a span, .yp-mobile-fab button span { display: none; }
    .yp-mobile-fab a, .yp-mobile-fab button {
        padding: 14px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .yp-card-image { height: 200px; }
    .yp-card-content { padding: 18px; }
    .yp-card-price { font-size: 20px; }
    .yp-card-title { font-size: 16px; }
    .yp-hero-gallery { height: 300px; }
    .yp-hero-title { font-size: 22px; }
    .yp-specs-grid { grid-template-columns: repeat(2, 1fr); }
    .yp-share-grid { grid-template-columns: 1fr; }
}

/* ============ SCROLLBAR LUXURY ============ */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--yp-gray-100); }
::-webkit-scrollbar-thumb {
    background: var(--yp-gradient-primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--yp-orange-700); }