/* ============================================================
   MITRA PROPERTY PREMIUM - Main Stylesheet
   Theme: Blue & White Luxury / Elegant
   Author: Mitra Property Team
   ============================================================ */

/* ---------- ROOT VARIABLES ---------- */
:root {
    --mp-primary: #1e40af;
    --mp-primary-dark: #1e3a8a;
    --mp-primary-light: #3b82f6;
    --mp-primary-soft: rgba(30, 64, 175, 0.08);
    --mp-secondary: #60a5fa;
    --mp-accent: #0ea5e9;
    --mp-gold: #d4a574;
    --mp-white: #ffffff;
    --mp-bg: #f8fafc;
    --mp-bg-alt: #f1f5f9;
    --mp-text: #0f172a;
    --mp-text-light: #475569;
    --mp-muted: #64748b;
    --mp-border: rgba(30, 64, 175, 0.12);
    --mp-border-light: rgba(30, 64, 175, 0.06);
    --mp-success: #10b981;
    --mp-warning: #f59e0b;
    --mp-danger: #ef4444;
    --mp-shadow: 0 4px 24px rgba(30, 64, 175, 0.08);
    --mp-shadow-lg: 0 12px 48px rgba(30, 64, 175, 0.12);
    --mp-shadow-hover: 0 20px 60px rgba(30, 64, 175, 0.15);
    --mp-radius: 16px;
    --mp-radius-sm: 10px;
    --mp-radius-lg: 24px;
    --mp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- BASE RESET ---------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--mp-bg);
    color: var(--mp-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--mp-primary-dark);
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--mp-primary);
    text-decoration: none;
    transition: var(--mp-transition);
}

a:hover {
    color: var(--mp-primary-dark);
}

/* ---------- LUXURY BACKGROUND ---------- */
.mp-bg-luxury {
    background: 
        radial-gradient(ellipse at top right, rgba(96, 165, 250, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(30, 64, 175, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    min-height: 100vh;
}

/* ---------- CONTAINER ---------- */
.mp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 20px;
}

.mp-container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 20px;
}

/* ---------- BUTTONS ---------- */
.mp-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-primary-light) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--mp-transition);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.mp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.4);
    color: white;
}

.mp-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: var(--mp-primary);
    border: 2px solid var(--mp-primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--mp-transition);
    font-family: 'Poppins', sans-serif;
}

.mp-btn-secondary:hover {
    background: var(--mp-primary-soft);
    transform: translateY(-1px);
}

.mp-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: var(--mp-primary);
    border: 2px solid var(--mp-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--mp-transition);
    font-family: 'Poppins', sans-serif;
}

.mp-btn-outline:hover {
    border-color: var(--mp-primary);
    background: var(--mp-primary-soft);
}

.mp-btn-success {
    background: linear-gradient(135deg, var(--mp-success) 0%, #059669 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--mp-transition);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

.mp-btn-success:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.mp-btn-danger {
    background: linear-gradient(135deg, var(--mp-danger) 0%, #dc2626 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--mp-transition);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

/* ---------- CARDS ---------- */
.mp-card {
    background: white;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius);
    box-shadow: var(--mp-shadow);
    transition: var(--mp-transition);
    overflow: hidden;
}

.mp-card:hover {
    box-shadow: var(--mp-shadow-hover);
    transform: translateY(-4px);
}

.mp-card-header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--mp-border-light);
    background: linear-gradient(135deg, white 0%, var(--mp-primary-soft) 100%);
}

.mp-card-body {
    padding: 28px;
}

.mp-card-footer {
    padding: 20px 28px;
    border-top: 1px solid var(--mp-border-light);
    background: var(--mp-bg-alt);
}

/* ---------- AUTH / LOGIN ---------- */
.mp-auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(96, 165, 250, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(30, 64, 175, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #dbeafe 100%);
}

.mp-auth-card {
    width: 100%;
    max-width: 480px;
    background: white;
    border-radius: var(--mp-radius-lg);
    box-shadow: var(--mp-shadow-lg);
    padding: 40px 36px;
    border: 1px solid var(--mp-border);
    position: relative;
    overflow: hidden;
}

.mp-auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--mp-primary) 0%, var(--mp-secondary) 50%, var(--mp-accent) 100%);
}

.mp-auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.mp-logo {
    margin-bottom: 20px;
}

.mp-logo i {
    font-size: 48px;
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    display: block;
}

.mp-logo h1 {
    font-size: 28px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 50%, var(--mp-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.mp-logo p {
    color: var(--mp-muted);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.mp-tabs {
    display: flex;
    background: var(--mp-bg-alt);
    border-radius: 50px;
    padding: 6px;
    margin-bottom: 28px;
}

.mp-tab-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--mp-muted);
    cursor: pointer;
    transition: var(--mp-transition);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mp-tab-btn.active {
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-primary-light) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.mp-auth-form {
    display: none;
}

.mp-auth-form.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

/* ---------- FORM ELEMENTS ---------- */
.mp-form-group {
    margin-bottom: 20px;
}

.mp-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    color: var(--mp-text-light);
    margin-bottom: 8px;
}

.mp-form-group label i {
    color: var(--mp-primary);
    width: 16px;
}

.mp-form-group input[type="text"],
.mp-form-group input[type="email"],
.mp-form-group input[type="password"],
.mp-form-group input[type="tel"],
.mp-form-group input[type="number"],
.mp-form-group input[type="date"],
.mp-form-group input[type="file"],
.mp-form-group select,
.mp-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--mp-border);
    border-radius: var(--mp-radius-sm);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: var(--mp-transition);
    background: white;
    color: var(--mp-text);
}

.mp-form-group input:focus,
.mp-form-group select:focus,
.mp-form-group textarea:focus {
    outline: none;
    border-color: var(--mp-primary);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.mp-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.mp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
    align-items: center;
}

.mp-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--mp-text-light);
    font-weight: 500;
}

.mp-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--mp-primary);
    cursor: pointer;
}

.mp-forgot-link {
    font-size: 13px;
    color: var(--mp-primary);
    font-weight: 500;
    text-align: right;
    display: block;
}

.mp-admin-login {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--mp-border-light);
    font-size: 12px;
    color: var(--mp-muted);
}

.mp-admin-login a {
    color: var(--mp-primary);
    font-weight: 600;
}

/* ---------- ALERTS ---------- */
.mp-alert {
    padding: 14px 18px;
    border-radius: var(--mp-radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.mp-alert i {
    font-size: 18px;
}

.mp-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #047857;
}

.mp-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #b91c1c;
}

.mp-alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #b45309;
}

.mp-alert-info {
    background: var(--mp-primary-soft);
    border: 1px solid var(--mp-border);
    color: var(--mp-primary-dark);
}

/* ---------- PROFILE PAGE ---------- */
.mp-profile-header {
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 50%, var(--mp-primary-light) 100%);
    border-radius: var(--mp-radius-lg);
    padding: 40px;
    color: white;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.mp-profile-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.mp-profile-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.mp-profile-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.mp-profile-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    object-fit: cover;
    background: white;
    flex-shrink: 0;
}

.mp-profile-info h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 6px;
}

.mp-profile-info .mp-nim {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
}

.mp-profile-info .mp-referral-code {
    font-size: 14px;
    opacity: 0.9;
}

.mp-profile-info .mp-referral-code strong {
    background: white;
    color: var(--mp-primary);
    padding: 2px 10px;
    border-radius: 6px;
    margin-left: 6px;
    font-weight: 700;
    letter-spacing: 1px;
}

.mp-profile-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.mp-profile-actions .mp-btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.mp-profile-actions .mp-btn-secondary:hover {
    background: rgba(255,255,255,0.25);
}

/* ---------- STATS CARDS ---------- */
.mp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.mp-stat-card {
    background: white;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius);
    padding: 24px;
    box-shadow: var(--mp-shadow);
    transition: var(--mp-transition);
    position: relative;
    overflow: hidden;
}

.mp-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mp-shadow-lg);
}

.mp-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--mp-primary) 0%, var(--mp-secondary) 100%);
}

.mp-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--mp-primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--mp-primary);
    font-size: 22px;
}

.mp-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--mp-primary-dark);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 6px;
}

.mp-stat-label {
    font-size: 13px;
    color: var(--mp-muted);
    font-weight: 500;
}

/* ---------- NAV TABS ---------- */
.mp-nav-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--mp-border-light);
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.mp-nav-tabs::-webkit-scrollbar {
    display: none;
}

.mp-nav-tab {
    padding: 12px 22px;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 14px;
    color: var(--mp-muted);
    cursor: pointer;
    transition: var(--mp-transition);
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mp-nav-tab:hover {
    color: var(--mp-primary);
}

.mp-nav-tab.active {
    color: var(--mp-primary);
    border-bottom-color: var(--mp-primary);
}

.mp-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.mp-tab-content.active {
    display: block;
}

/* ---------- NAMETAG ---------- */
.mp-nametag-container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    min-height: 100vh;
    align-items: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.mp-nametag {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: var(--mp-radius-lg);
    box-shadow: var(--mp-shadow-lg);
    overflow: hidden;
    position: relative;
}

.mp-nametag-header {
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 50%, var(--mp-primary-light) 100%);
    padding: 32px 24px 60px;
    text-align: center;
    color: white;
    position: relative;
}

.mp-nametag-header h3 {
    color: white;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.mp-nametag-header p {
    font-size: 12px;
    opacity: 0.85;
    letter-spacing: 1px;
}

.mp-nametag-photo-container {
    display: flex;
    justify-content: center;
    margin-top: -45px;
    position: relative;
    z-index: 2;
}

.mp-nametag-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    object-fit: cover;
    background: white;
}

.mp-nametag-body {
    padding: 24px 28px 28px;
    text-align: center;
}

.mp-nametag-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--mp-primary-dark);
    margin-bottom: 4px;
}

.mp-nametag-nim {
    display: inline-block;
    background: var(--mp-primary-soft);
    color: var(--mp-primary);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.mp-nametag-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.mp-nametag-divider::before,
.mp-nametag-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mp-border), transparent);
}

.mp-nametag-divider i {
    color: var(--mp-gold);
    font-size: 12px;
}

.mp-nametag-qr {
    background: var(--mp-bg-alt);
    border-radius: var(--mp-radius);
    padding: 20px;
    margin-top: 16px;
}

.mp-nametag-qr img {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    background: white;
    padding: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.mp-nametag-qr p {
    font-size: 11px;
    color: var(--mp-muted);
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.mp-nametag-footer {
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 100%);
    padding: 14px;
    text-align: center;
    color: white;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ---------- PROPERTY GRID ---------- */
.mp-property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.mp-property-card {
    background: white;
    border-radius: var(--mp-radius);
    overflow: hidden;
    box-shadow: var(--mp-shadow);
    border: 1px solid var(--mp-border);
    transition: var(--mp-transition);
}

.mp-property-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--mp-shadow-hover);
}

.mp-property-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--mp-bg-alt);
}

.mp-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mp-property-card:hover .mp-property-image img {
    transform: scale(1.08);
}

.mp-property-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-primary-light) 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.mp-property-badge.available {
    background: linear-gradient(135deg, var(--mp-success) 0%, #059669 100%);
}

.mp-property-badge.booking {
    background: linear-gradient(135deg, var(--mp-warning) 0%, #d97706 100%);
}

.mp-property-badge.sold {
    background: linear-gradient(135deg, var(--mp-danger) 0%, #dc2626 100%);
}

.mp-property-body {
    padding: 22px;
}

.mp-property-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--mp-primary-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.mp-property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--mp-muted);
    font-size: 13px;
    margin-bottom: 14px;
}

.mp-property-location i {
    color: var(--mp-primary);
}

.mp-property-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 0;
    border-top: 1px solid var(--mp-border-light);
    border-bottom: 1px solid var(--mp-border-light);
    margin-bottom: 14px;
}

.mp-property-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--mp-text-light);
    font-weight: 500;
}

.mp-property-feature i {
    color: var(--mp-primary);
    font-size: 14px;
}

.mp-property-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mp-price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--mp-primary);
}

.mp-price small {
    display: block;
    font-size: 11px;
    color: var(--mp-muted);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* ---------- FILTERS ---------- */
.mp-filters {
    background: white;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius);
    padding: 20px 24px;
    margin-bottom: 28px;
    box-shadow: var(--mp-shadow);
}

.mp-filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.mp-filter-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--mp-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mp-filter-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--mp-border);
    border-radius: var(--mp-radius-sm);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background: white;
    cursor: pointer;
    transition: var(--mp-transition);
}

.mp-filter-group select:focus {
    outline: none;
    border-color: var(--mp-primary);
}

/* ---------- PROPERTY DETAIL ---------- */
.mp-detail-hero {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

.mp-detail-gallery {
    border-radius: var(--mp-radius);
    overflow: hidden;
    box-shadow: var(--mp-shadow);
    aspect-ratio: 16/10;
    background: var(--mp-bg-alt);
    position: relative;
}

.mp-detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-detail-gallery .mp-tiktok-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--mp-transition);
}

.mp-detail-gallery .mp-tiktok-badge:hover {
    transform: scale(1.05);
}

.mp-detail-info {
    background: white;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius);
    padding: 28px;
    box-shadow: var(--mp-shadow);
    position: sticky;
    top: 20px;
    align-self: start;
}

.mp-detail-price-box {
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 100%);
    color: white;
    padding: 20px;
    border-radius: var(--mp-radius-sm);
    margin-bottom: 20px;
    text-align: center;
}

.mp-detail-price-box .price-label {
    font-size: 12px;
    opacity: 0.85;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.mp-detail-price-box .price-value {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
}

.mp-detail-price-box .price-cicilan {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 4px;
}

.mp-wa-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--mp-transition);
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    margin-bottom: 12px;
}

.mp-wa-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    color: white;
}

.mp-referral-info {
    background: var(--mp-primary-soft);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-sm);
    padding: 14px;
    text-align: center;
    margin-top: 16px;
}

.mp-referral-info .referral-label {
    font-size: 11px;
    color: var(--mp-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.mp-referral-info .referral-name {
    font-weight: 700;
    color: var(--mp-primary-dark);
    font-size: 15px;
}

.mp-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.mp-spec-item {
    text-align: center;
    padding: 16px;
    background: var(--mp-bg-alt);
    border-radius: var(--mp-radius-sm);
}

.mp-spec-item i {
    font-size: 22px;
    color: var(--mp-primary);
    margin-bottom: 8px;
}

.mp-spec-item .spec-value {
    font-weight: 700;
    font-size: 18px;
    color: var(--mp-primary-dark);
    font-family: 'Playfair Display', serif;
}

.mp-spec-item .spec-label {
    font-size: 11px;
    color: var(--mp-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ---------- TRANSACTION TABLE ---------- */
.mp-table-container {
    overflow-x: auto;
    border-radius: var(--mp-radius);
    border: 1px solid var(--mp-border);
    box-shadow: var(--mp-shadow);
}

.mp-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.mp-table th {
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 100%);
    color: white;
    padding: 16px 18px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.mp-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--mp-border-light);
    font-size: 14px;
    color: var(--mp-text-light);
}

.mp-table tbody tr:hover {
    background: var(--mp-primary-soft);
}

.mp-status-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mp-status-pending { background: rgba(245, 158, 11, 0.15); color: #b45309; }
.mp-status-survey { background: rgba(59, 130, 246, 0.15); color: #1d4ed8; }
.mp-status-booking { background: rgba(139, 92, 246, 0.15); color: #6d28d9; }
.mp-status-pemberkasan { background: rgba(249, 115, 22, 0.15); color: #c2410c; }
.mp-status-closing { background: rgba(16, 185, 129, 0.15); color: #047857; }
.mp-status-batal { background: rgba(239, 68, 68, 0.15); color: #b91c1c; }

.mp-status-select {
    padding: 6px 12px;
    border: 2px solid var(--mp-border);
    border-radius: 8px;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    background: white;
}

.mp-status-select:focus {
    outline: none;
    border-color: var(--mp-primary);
}

/* ---------- UPLOAD BERKAS ---------- */
.mp-upload-section {
    background: white;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--mp-shadow);
}

.mp-upload-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--mp-border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mp-upload-section h3 i {
    color: var(--mp-primary);
}

.mp-upload-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--mp-bg-alt);
    border-radius: var(--mp-radius-sm);
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.mp-upload-item.uploaded {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.mp-upload-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 200px;
}

.mp-upload-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--mp-primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mp-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.mp-upload-item.uploaded .mp-upload-icon {
    background: rgba(16, 185, 129, 0.15);
    color: var(--mp-success);
}

.mp-upload-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--mp-text);
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
}

.mp-upload-details p {
    font-size: 12px;
    color: var(--mp-muted);
}

.mp-upload-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mp-upload-input input[type="file"] {
    font-size: 12px;
    max-width: 200px;
}

.mp-upload-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--mp-success);
}

/* ---------- PERUMAHAN CARD ---------- */
.mp-perumahan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.mp-perumahan-card {
    background: white;
    border-radius: var(--mp-radius);
    overflow: hidden;
    box-shadow: var(--mp-shadow);
    border: 1px solid var(--mp-border);
    transition: var(--mp-transition);
    cursor: pointer;
}

.mp-perumahan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--mp-shadow-hover);
}

.mp-perumahan-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-secondary) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mp-perumahan-image i {
    font-size: 64px;
    color: rgba(255,255,255,0.3);
}

.mp-perumahan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-perumahan-content {
    padding: 24px;
}

.mp-perumahan-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.mp-perumahan-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 14px 0;
    padding: 14px 0;
    border-top: 1px solid var(--mp-border-light);
    border-bottom: 1px solid var(--mp-border-light);
}

.mp-perumahan-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--mp-text-light);
}

.mp-perumahan-meta-item i {
    color: var(--mp-primary);
}

/* ---------- SECTION TITLES ---------- */
.mp-section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.mp-section-title h2 {
    font-size: 28px;
    margin: 0;
}

.mp-section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--mp-border), transparent);
}

.mp-title-ornament {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.mp-title-ornament h2 {
    margin: 0;
    white-space: nowrap;
}

.mp-title-ornament::before,
.mp-title-ornament::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mp-primary), transparent);
}

/* ---------- EMPTY STATE ---------- */
.mp-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--mp-muted);
}

.mp-empty-state i {
    font-size: 56px;
    color: var(--mp-border);
    margin-bottom: 16px;
}

.mp-empty-state h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--mp-text-light);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .mp-form-row {
        grid-template-columns: 1fr;
    }
    
    .mp-profile-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .mp-profile-actions {
        justify-content: center;
    }
    
    .mp-detail-hero {
        grid-template-columns: 1fr;
    }
    
    .mp-detail-info {
        position: static;
    }
    
    .mp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mp-property-grid {
        grid-template-columns: 1fr;
    }
    
    .mp-perumahan-grid {
        grid-template-columns: 1fr;
    }
    
    .mp-auth-card {
        padding: 32px 24px;
    }
    
    .mp-profile-header {
        padding: 28px 20px;
    }
    
    .mp-profile-photo {
        width: 110px;
        height: 110px;
    }
    
    .mp-profile-info h2 {
        font-size: 24px;
    }
    
    .mp-table th,
    .mp-table td {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .mp-upload-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mp-upload-input {
        width: 100%;
    }
    
    .mp-upload-input input[type="file"] {
        max-width: 100%;
    }
    
    .mp-nav-tabs {
        gap: 4px;
    }
    
    .mp-nav-tab {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .mp-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .mp-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mp-card-body {
        padding: 20px;
    }
    
    .mp-card-header {
        padding: 20px;
    }
    
    .mp-section-title h2 {
        font-size: 22px;
    }
    
    .mp-tabs {
        flex-direction: column;
        border-radius: var(--mp-radius-sm);
    }
}

/* ---------- PRINT STYLES FOR NAMETAG ---------- */
@media print {
    body * {
        visibility: hidden;
    }
    
    .mp-nametag-container,
    .mp-nametag-container * {
        visibility: visible;
    }
    
    .mp-nametag-container {
        position: absolute;
        left: 0;
        top: 0;
        padding: 0;
        background: white;
    }
    
    .mp-nametag {
        box-shadow: none;
        border: 2px solid var(--mp-border);
    }
}

/* ============================================================
   TAMBAHAN: Detail Property Lengkap & Share Sosial Media
   ============================================================ */

/* Detail Teknis Bangunan */
.mp-detail-technical {
    background: white;
    border-radius: var(--mp-radius);
    box-shadow: var(--mp-shadow);
    overflow: hidden;
}

.mp-detail-technical-header {
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 100%);
    color: white;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mp-detail-technical-header h3 {
    margin: 0;
    font-size: 18px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.mp-detail-technical-body {
    padding: 0;
}

.mp-tech-row {
    display: flex;
    padding: 14px 28px;
    border-bottom: 1px solid var(--mp-border);
    transition: var(--mp-transition);
}

.mp-tech-row:nth-child(even) {
    background: var(--mp-bg-alt);
}

.mp-tech-row:hover {
    background: var(--mp-primary-soft);
}

.mp-tech-row:last-child {
    border-bottom: none;
}

.mp-tech-label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--mp-text-light);
    font-size: 14px;
}

.mp-tech-label i {
    color: var(--mp-primary);
    width: 20px;
    text-align: center;
}

.mp-tech-value {
    font-weight: 600;
    color: var(--mp-primary-dark);
    font-size: 14px;
}

/* Sosial Media Share Buttons */
.mp-share-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border-radius: var(--mp-radius);
    padding: 20px;
    margin-top: 20px;
    border: 1px solid var(--mp-border);
}

.mp-share-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--mp-primary-dark);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mp-share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.mp-share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: none;
}

.mp-share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.mp-share-whatsapp { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }
.mp-share-facebook { background: linear-gradient(135deg, #1877f2 0%, #0d5fc9 100%); }
.mp-share-twitter { background: linear-gradient(135deg, #1da1f2 0%, #0c85d0 100%); }
.mp-share-telegram { background: linear-gradient(135deg, #0088cc 0%, #006699 100%); }
.mp-share-email { background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%); }
.mp-share-copy { background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-primary-dark) 100%); }

/* Sosial Media Links */
.mp-social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 14px;
    flex-wrap: wrap;
}

.mp-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: var(--mp-transition);
}

.mp-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

.mp-social-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.mp-social-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5fc9 100%);
}

.mp-social-youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

/* CTA Bottom */
.mp-bottom-cta {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 50%, var(--mp-primary-light) 100%);
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.mp-bottom-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.mp-bottom-cta::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 30px;
    width: 150px;
    height: 150px;
    background: rgba(96, 165, 250, 0.2);
    border-radius: 50%;
}

.mp-bottom-cta-content {
    position: relative;
    z-index: 1;
}

.mp-bottom-cta h3 {
    color: white;
    margin: 0 0 10px;
    font-size: 26px;
    font-family: 'Playfair Display', serif;
}

.mp-bottom-cta p {
    margin: 0 0 24px;
    opacity: 0.9;
    font-size: 15px;
}

.mp-bottom-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: white;
    color: var(--mp-primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mp-bottom-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: var(--mp-primary-dark);
}

.mp-bottom-cta-btn i {
    font-size: 22px;
    color: #25d366;
}

/* Spesifikasi Grid - Enhanced */
.mp-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.mp-spec-item {
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    border: 1px solid var(--mp-border);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    transition: var(--mp-transition);
    position: relative;
    overflow: hidden;
}

.mp-spec-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mp-primary-dark) 0%, var(--mp-primary-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mp-spec-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.12);
    border-color: var(--mp-primary);
}

.mp-spec-item:hover::before {
    transform: scaleX(1);
}

.mp-spec-item i {
    font-size: 24px;
    color: var(--mp-primary);
    margin-bottom: 10px;
    display: block;
}

.mp-spec-item .spec-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--mp-primary-dark);
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.mp-spec-item .spec-label {
    font-size: 11px;
    color: var(--mp-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Perumahan Info - Enhanced */
.mp-perumahan-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.mp-perumahan-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    background: var(--mp-bg-alt);
    border-radius: 10px;
    transition: var(--mp-transition);
}

.mp-perumahan-info-item:hover {
    background: var(--mp-primary-soft);
    transform: translateX(4px);
}

.mp-perumahan-info-item i {
    color: var(--mp-primary);
    font-size: 18px;
    margin-top: 2px;
    width: 24px;
    text-align: center;
}

.mp-perumahan-info-label {
    font-size: 11px;
    color: var(--mp-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.mp-perumahan-info-value {
    font-weight: 600;
    color: var(--mp-text-light);
    font-size: 14px;
}

/* Gallery enhancement */
.mp-detail-gallery img {
    transition: transform 0.5s ease;
}

.mp-detail-gallery:hover img {
    transform: scale(1.02);
}

/* Card luxury enhancement */
.mp-card {
    background: white;
    border-radius: var(--mp-radius);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.06);
    border: 1px solid rgba(30, 64, 175, 0.06);
    transition: var(--mp-transition);
}

.mp-card:hover {
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.1);
}

/* Status badge new options */
.mp-property-badge.promo {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.mp-property-badge.new_launch {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

/* Toast notification */
.mp-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--mp-primary-dark);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    z-index: 99999;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.mp-toast.show {
    transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .mp-share-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .mp-bottom-cta {
        padding: 28px 20px;
    }
    
    .mp-bottom-cta h3 {
        font-size: 20px;
    }
    
    .mp-bottom-cta-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .mp-tech-row {
        padding: 12px 16px;
    }
    
    .mp-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .mp-spec-item {
        padding: 14px 10px;
    }
    
    .mp-spec-item i {
        font-size: 20px;
    }
    
    .mp-spec-item .spec-value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mp-specs-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ============================================================
   Status Transaksi Baru
   ============================================================ */
.mp-status-ots {
    background: rgba(14, 165, 233, 0.15);
    color: #0369a1;
}

.mp-status-sp3k {
    background: rgba(6, 182, 212, 0.15);
    color: #0e7490;
}

.mp-status-akad {
    background: rgba(20, 184, 166, 0.15);
    color: #0f766e;
}

.mp-status-selesai {
    background: rgba(16, 185, 129, 0.2);
    color: #047857;
    font-weight: 700;
}

/* ============================================================
   Upload Berkas - Enhanced Categories
   ============================================================ */
.mp-upload-section {
    margin-bottom: 24px;
    background: white;
    border-radius: var(--mp-radius);
    box-shadow: 0 2px 12px rgba(30, 64, 175, 0.06);
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, 0.06);
}

.mp-upload-section-header {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--mp-border);
}

.mp-upload-section-header i {
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.mp-upload-section-header h3 {
    margin: 0;
    font-size: 16px;
    color: var(--mp-primary-dark);
    font-family: 'Poppins', sans-serif;
}

.mp-upload-section-header .mp-badge {
    margin-left: auto;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

.mp-upload-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--mp-border);
    transition: var(--mp-transition);
    flex-wrap: wrap;
}

.mp-upload-item:hover {
    background: var(--mp-bg-alt);
}

.mp-upload-item:last-child {
    border-bottom: none;
}

.mp-upload-item.uploaded {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-left: 4px solid var(--mp-success);
}

.mp-upload-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mp-primary-soft);
    color: var(--mp-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.mp-upload-item.uploaded .mp-upload-item-icon {
    background: rgba(16, 185, 129, 0.15);
    color: var(--mp-success);
}

.mp-upload-item-info {
    flex: 1;
    min-width: 200px;
}

.mp-upload-item-info h4 {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--mp-text-light);
    font-weight: 600;
}

.mp-upload-item-info h4 .required-mark {
    color: var(--mp-danger);
    margin-left: 2px;
}

.mp-upload-item-info p {
    margin: 0;
    font-size: 12px;
    color: var(--mp-muted);
    line-height: 1.5;
}

.mp-upload-item-info .uploaded-file {
    color: var(--mp-success);
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

.mp-upload-item-input {
    flex-shrink: 0;
}

.mp-upload-item-input input[type="file"] {
    font-size: 12px;
    max-width: 220px;
}

/* Jenis Pekerjaan Selector */
.mp-job-type-selector {
    background: white;
    border-radius: var(--mp-radius);
    padding: 20px 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(30, 64, 175, 0.06);
    border: 1px solid rgba(30, 64, 175, 0.06);
}

.mp-job-type-selector label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: var(--mp-text-light);
}

.mp-job-type-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mp-job-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--mp-transition);
    border: 2px solid var(--mp-border);
    background: white;
    color: var(--mp-text-light);
}

.mp-job-badge:hover {
    border-color: var(--mp-primary);
    color: var(--mp-primary);
}

.mp-job-badge.active {
    background: var(--mp-primary);
    border-color: var(--mp-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.mp-job-badge i {
    font-size: 16px;
}

/* FLPP Toggle */
.mp-flpp-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #fdf4ff 0%, #faf5ff 100%);
    border-radius: 10px;
    border: 1px solid #e9d5ff;
    margin-bottom: 20px;
}

.mp-flpp-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #8b5cf6;
}

.mp-flpp-toggle span {
    font-weight: 600;
    color: #6b21a8;
}

.mp-flpp-toggle small {
    color: #a855f7;
    font-size: 12px;
    margin-left: auto;
}

/* Transaction Info Bar */
.mp-transaction-info-bar {
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 100%);
    color: white;
    padding: 20px 28px;
    border-radius: var(--mp-radius);
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.mp-transaction-info-bar::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.mp-transaction-info-bar h4 {
    margin: 0 0 4px;
    color: white;
    font-size: 18px;
}

.mp-transaction-info-bar p {
    margin: 0;
    opacity: 0.9;
    font-size: 13px;
}

.mp-transaction-info-bar .status-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    backdrop-filter: blur(10px);
}

/* Progress Steps */
.mp-progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
    position: relative;
    flex-wrap: wrap;
    gap: 8px;
}

.mp-progress-steps::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: var(--mp-border);
    z-index: 0;
}

.mp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 1;
    flex: 1;
    min-width: 70px;
}

.mp-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--mp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--mp-muted);
    transition: var(--mp-transition);
}

.mp-step.active .mp-step-number {
    border-color: var(--mp-primary);
    background: var(--mp-primary);
    color: white;
    box-shadow: 0 0 0 4px var(--mp-primary-soft);
}

.mp-step.completed .mp-step-number {
    border-color: var(--mp-success);
    background: var(--mp-success);
    color: white;
}

.mp-step-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--mp-muted);
    text-align: center;
}

.mp-step.active .mp-step-label {
    color: var(--mp-primary);
}

.mp-step.completed .mp-step-label {
    color: var(--mp-success);
}

/* Responsive */
@media (max-width: 768px) {
    .mp-upload-item {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .mp-upload-item-input {
        width: 100%;
    }
    
    .mp-upload-item-input input[type="file"] {
        max-width: 100%;
    }
    
    .mp-progress-steps::before {
        display: none;
    }
    
    .mp-step {
        flex-direction: row;
        gap: 10px;
        min-width: auto;
        width: 100%;
        justify-content: flex-start;
        padding: 8px;
        background: var(--mp-bg-alt);
        border-radius: 8px;
    }
    
    .mp-step-label {
        text-align: left;
    }
}


/* ============================================================
   LUXURY ENHANCEMENT - Biru Putih Corporate Premium
   ============================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Root Variables - Luxury Blue Theme */
:root {
    --mp-primary-dark: #1e3a8a;
    --mp-primary: #1e40af;
    --mp-primary-light: #3b82f6;
    --mp-primary-lighter: #60a5fa;
    --mp-primary-soft: #dbeafe;
    --mp-secondary: #0f172a;
    --mp-accent-gold: #d4a574;
    --mp-accent-gold-light: #e8c9a0;
    --mp-success: #10b981;
    --mp-danger: #ef4444;
    --mp-warning: #f59e0b;
    --mp-info: #0ea5e9;
    --mp-bg: #f8fafc;
    --mp-bg-alt: #f1f5f9;
    --mp-bg-luxury: linear-gradient(180deg, #f8fafc 0%, #eef2ff 50%, #f8fafc 100%);
    --mp-border: #e2e8f0;
    --mp-border-light: #f1f5f9;
    --mp-text: #0f172a;
    --mp-text-light: #334155;
    --mp-muted: #64748b;
    --mp-white: #ffffff;
    --mp-radius: 16px;
    --mp-radius-sm: 10px;
    --mp-radius-lg: 24px;
    --mp-shadow: 0 4px 24px rgba(30, 64, 175, 0.08);
    --mp-shadow-lg: 0 12px 40px rgba(30, 64, 175, 0.12);
    --mp-shadow-hover: 0 20px 60px rgba(30, 64, 175, 0.18);
    --mp-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Typography */
.mp-bg-luxury {
    background: var(--mp-bg-luxury);
    font-family: 'Poppins', sans-serif;
    color: var(--mp-text);
    min-height: 100vh;
}

.mp-bg-luxury h1,
.mp-bg-luxury h2,
.mp-bg-luxury h3,
.mp-bg-luxury h4 {
    font-family: 'Playfair Display', serif;
    color: var(--mp-secondary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Container */
.mp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Luxury Card */
.mp-card {
    background: white;
    border-radius: var(--mp-radius);
    box-shadow: var(--mp-shadow);
    border: 1px solid rgba(30, 64, 175, 0.06);
    overflow: hidden;
    transition: var(--mp-transition);
}

.mp-card:hover {
    box-shadow: var(--mp-shadow-lg);
    transform: translateY(-2px);
}

.mp-card-header {
    padding: 20px 28px;
    border-bottom: 1px solid var(--mp-border-light);
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
}

.mp-card-body {
    padding: 28px;
}

/* Referral Header Luxury */
.mp-referral-hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--mp-radius-lg);
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 30%, #2563eb 60%, #3b82f6 100%);
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.35);
}

.mp-referral-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.mp-referral-hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(96,165,250,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

/* Property Card Luxury */
.mp-property-card {
    background: white;
    border-radius: var(--mp-radius);
    overflow: hidden;
    box-shadow: var(--mp-shadow);
    border: 1px solid rgba(30, 64, 175, 0.05);
    transition: var(--mp-transition);
    position: relative;
}

.mp-property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mp-primary-dark) 0%, var(--mp-primary-light) 50%, var(--mp-accent-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 10;
}

.mp-property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--mp-shadow-hover);
}

.mp-property-card:hover::before {
    transform: scaleX(1);
}

.mp-property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-secondary) 100%);
}

.mp-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mp-property-card:hover .mp-property-image img {
    transform: scale(1.08);
}

.mp-property-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mp-property-badge.available {
    background: rgba(16, 185, 129, 0.95);
    color: white;
}

.mp-property-badge.booking {
    background: rgba(139, 92, 246, 0.95);
    color: white;
}

.mp-property-badge.sold {
    background: rgba(239, 68, 68, 0.95);
    color: white;
}

.mp-property-badge.indent {
    background: rgba(245, 158, 11, 0.95);
    color: white;
}

.mp-property-body {
    padding: 20px 22px 22px;
}

.mp-property-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--mp-secondary);
    line-height: 1.3;
}

.mp-property-location {
    font-size: 13px;
    color: var(--mp-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mp-property-location i {
    color: var(--mp-primary);
    font-size: 12px;
}

.mp-property-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--mp-border-light);
}

.mp-property-feature {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--mp-text-light);
    font-weight: 500;
}

.mp-property-feature i {
    color: var(--mp-primary);
    font-size: 11px;
}

.mp-property-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.mp-price {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--mp-primary-dark);
    letter-spacing: -0.01em;
}

/* Buttons Luxury */
.mp-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 50%, var(--mp-primary-light) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: var(--mp-transition);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
    letter-spacing: 0.02em;
}

.mp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.4);
    color: white;
}

.mp-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    background: transparent;
    color: var(--mp-primary);
    border: 2px solid var(--mp-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--mp-transition);
}

.mp-btn-outline:hover {
    background: var(--mp-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.25);
}

/* WhatsApp Button Luxury */
.mp-wa-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--mp-transition);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    letter-spacing: 0.02em;
}

.mp-wa-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
    color: white;
}

/* Referral Info Card */
.mp-referral-info {
    margin-top: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border-radius: 12px;
    border: 1px solid var(--mp-primary-soft);
}

.referral-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--mp-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 4px;
}

.referral-name {
    font-weight: 700;
    color: var(--mp-primary-dark);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

/* Filters Luxury */
.mp-filters {
    background: white;
    border-radius: var(--mp-radius);
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: var(--mp-shadow);
    border: 1px solid rgba(30, 64, 175, 0.05);
}

.mp-filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.mp-filter-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--mp-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mp-filter-group select,
.mp-filter-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--mp-border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--mp-text-light);
    background: white;
    transition: var(--mp-transition);
    font-family: 'Poppins', sans-serif;
}

.mp-filter-group select:focus,
.mp-filter-group input:focus {
    outline: none;
    border-color: var(--mp-primary);
    box-shadow: 0 0 0 4px var(--mp-primary-soft);
}

/* Status Badge */
.mp-status-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mp-status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #b45309;
}

.mp-status-survey {
    background: rgba(59, 130, 246, 0.15);
    color: #1d4ed8;
}

.mp-status-booking {
    background: rgba(139, 92, 246, 0.15);
    color: #6d28d9;
}

.mp-status-pemberkasan {
    background: rgba(249, 115, 22, 0.15);
    color: #c2410c;
}

.mp-status-ots {
    background: rgba(14, 165, 233, 0.15);
    color: #0369a1;
}

.mp-status-sp3k {
    background: rgba(6, 182, 212, 0.15);
    color: #0e7490;
}

.mp-status-akad {
    background: rgba(20, 184, 166, 0.15);
    color: #0f766e;
}

.mp-status-selesai {
    background: rgba(16, 185, 129, 0.2);
    color: #047857;
    font-weight: 800;
}

.mp-status-batal {
    background: rgba(239, 68, 68, 0.15);
    color: #b91c1c;
}

/* Table Luxury */
.mp-table-container {
    background: white;
    border-radius: var(--mp-radius);
    box-shadow: var(--mp-shadow);
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, 0.05);
}

.mp-table {
    width: 100%;
    border-collapse: collapse;
}

.mp-table thead {
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 100%);
}

.mp-table thead th {
    padding: 14px 18px;
    color: white;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.mp-table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--mp-border-light);
    font-size: 13px;
    color: var(--mp-text-light);
    vertical-align: middle;
}

.mp-table tbody tr {
    transition: var(--mp-transition);
}

.mp-table tbody tr:hover {
    background: var(--mp-primary-soft);
}

.mp-table tbody tr:last-child td {
    border-bottom: none;
}

/* Form Luxury */
.mp-form-group {
    margin-bottom: 16px;
}

.mp-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--mp-text-light);
    margin-bottom: 6px;
}

.mp-form-group label i {
    color: var(--mp-primary);
    margin-right: 6px;
}

.mp-form-group input,
.mp-form-group select,
.mp-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--mp-border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--mp-text);
    background: white;
    transition: var(--mp-transition);
    font-family: 'Poppins', sans-serif;
}

.mp-form-group input:focus,
.mp-form-group select:focus,
.mp-form-group textarea:focus {
    outline: none;
    border-color: var(--mp-primary);
    box-shadow: 0 0 0 4px var(--mp-primary-soft);
}

.mp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Alert Luxury */
.mp-alert {
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.mp-alert i {
    font-size: 18px;
}

.mp-alert-success {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.mp-alert-error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
    border: 1px solid #fecaca;
}

.mp-alert-warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: #92400e;
    border: 1px solid #fde68a;
}

/* Property Grid */
.mp-property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Detail Hero */
.mp-detail-hero {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

.mp-detail-gallery {
    position: relative;
    border-radius: var(--mp-radius-lg);
    overflow: hidden;
    height: 420px;
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-secondary) 100%);
    box-shadow: var(--mp-shadow-lg);
}

.mp-detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-detail-info {
    background: white;
    border-radius: var(--mp-radius-lg);
    padding: 28px;
    box-shadow: var(--mp-shadow);
    border: 1px solid rgba(30, 64, 175, 0.05);
    display: flex;
    flex-direction: column;
}

.mp-detail-price-box {
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 50%, var(--mp-primary-light) 100%);
    color: white;
    padding: 20px 24px;
    border-radius: 14px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.mp-detail-price-box::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
    margin-bottom: 4px;
    font-weight: 600;
}

.price-value {
    font-size: 26px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.price-cicilan {
    margin-top: 6px;
    font-size: 13px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Empty State */
.mp-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: var(--mp-radius);
    box-shadow: var(--mp-shadow);
}

.mp-empty-state i {
    font-size: 56px;
    color: var(--mp-border);
    margin-bottom: 16px;
}

.mp-empty-state h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: var(--mp-secondary);
}

.mp-empty-state p {
    margin: 0;
    color: var(--mp-muted);
}

/* Responsive Luxury */
@media (max-width: 1024px) {
    .mp-detail-hero {
        grid-template-columns: 1fr;
    }
    
    .mp-detail-gallery {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .mp-container {
        padding: 0 16px;
    }
    
    .mp-card-body {
        padding: 20px;
    }
    
    .mp-property-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mp-form-row {
        grid-template-columns: 1fr;
    }
    
    .mp-table-container {
        overflow-x: auto;
    }
    
    .mp-table {
        min-width: 700px;
    }
    
    .mp-detail-gallery {
        height: 260px;
    }
    
    .mp-referral-hero {
        padding: 28px 20px;
    }
    
    .price-value {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .mp-btn-primary {
        width: 100%;
    }
    
    .mp-card-header {
        padding: 16px 20px;
    }
}


/* ============================================================
   REFERRAL PROPERTY PAGE - Premium Design
   ============================================================ */

.mp-referral-page {
    font-family: 'Poppins', sans-serif;
    background: #f0f4ff;
    min-height: 100vh;
    padding-bottom: 20px;
}

.mp-ref-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============ HERO SECTION ============ */
.mp-ref-hero {
    position: relative;
    min-height: 380px;
    background: linear-gradient(180deg, #1e40af 0%, #2563eb 40%, #3b82f6 70%, #60a5fa 100%);
    overflow: hidden;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.mp-ref-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1200&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    mix-blend-mode: overlay;
}

.mp-ref-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, #f0f4ff 100%);
    z-index: 1;
}

/* Top Bar */
.mp-ref-topbar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 0 0;
    gap: 16px;
    flex-wrap: wrap;
}

/* Logo */
.mp-ref-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.mp-ref-logo-icon {
    width: 52px;
    height: 52px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.mp-ref-logo h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    color: white;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.mp-ref-logo p {
    margin: 2px 0 0;
    font-size: 11px;
    opacity: 0.9;
    color: rgba(255,255,255,0.9);
}

/* Marketing Card */
.mp-ref-marketing-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(30,64,175,0.95) 0%, rgba(37,99,235,0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 18px;
    padding: 12px 16px 12px 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.mp-ref-marketing-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.mp-ref-marketing-photo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.5);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.mp-ref-marketing-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-ref-marketing-info {
    color: white;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.mp-ref-marketing-role {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.85;
    font-weight: 600;
    margin-bottom: 2px;
}

.mp-ref-marketing-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mp-ref-marketing-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mp-ref-marketing-wa:hover {
    background: #128c7e;
    color: white;
    transform: scale(1.05);
}

.mp-ref-marketing-msg {
    font-size: 10px;
    opacity: 0.85;
    margin-top: 4px;
    font-style: italic;
}

/* Tagline */
.mp-ref-tagline {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    color: white;
    max-width: 480px;
}

.mp-ref-tagline h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 4px;
    color: white;
    line-height: 1.1;
}

.mp-ref-tagline h2 em {
    font-style: italic;
    color: #fcd34d;
}

.mp-ref-tagline p {
    font-size: 15px;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
}

/* Feature Icons */
.mp-ref-features {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.mp-ref-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 14px;
    padding: 12px 16px;
    color: white;
    min-width: 90px;
    text-align: center;
    transition: all 0.3s ease;
}

.mp-ref-feature:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.mp-ref-feature-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    font-size: 16px;
}

.mp-ref-feature span {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}

.mp-ref-feature span small {
    font-size: 9px;
    opacity: 0.85;
    display: block;
    font-weight: 400;
}

/* ============ SEARCH & FILTER ============ */
.mp-ref-search-section {
    position: relative;
    z-index: 5;
    margin-top: -20px;
    margin-bottom: 24px;
}

.mp-ref-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 30px rgba(30,64,175,0.15);
    margin-bottom: 14px;
    border: 1px solid rgba(30,64,175,0.08);
}

.mp-ref-search i {
    color: #94a3b8;
    font-size: 16px;
}

.mp-ref-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #334155;
    font-family: 'Poppins', sans-serif;
    background: transparent;
}

.mp-ref-search input::placeholder {
    color: #94a3b8;
}

.mp-ref-filter-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mp-ref-filter-btn:hover {
    transform: scale(1.05);
}

.mp-ref-categories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.mp-ref-categories::-webkit-scrollbar {
    display: none;
}

.mp-ref-cat-btn {
    flex-shrink: 0;
    padding: 8px 18px;
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.mp-ref-cat-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.mp-ref-cat-btn.active {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 14px rgba(30,64,175,0.3);
}

.mp-ref-cat-more {
    display: flex;
    align-items: center;
}

/* ============ SECTION TITLE ============ */
.mp-ref-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.mp-ref-title-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 14px rgba(30,64,175,0.3);
}

.mp-ref-section-title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
}

.mp-ref-section-title p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #64748b;
}

/* ============ PROPERTY CARD ============ */
.mp-ref-property-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.mp-ref-property-card {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 14px;
    background: white;
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(30,64,175,0.08);
    border: 1px solid rgba(30,64,175,0.05);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

.mp-ref-property-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1e40af 0%, #3b82f6 50%, #f59e0b 100%);
    transform: scaleY(0);
    transition: transform 0.35s ease;
}

.mp-ref-property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(30,64,175,0.15);
}

.mp-ref-property-card:hover::before {
    transform: scaleY(1);
}

/* Property Image */
.mp-ref-prop-image {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    flex-shrink: 0;
}

.mp-ref-prop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mp-ref-property-card:hover .mp-ref-prop-image img {
    transform: scale(1.1);
}

.mp-ref-prop-noimg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 40px;
}

.mp-ref-prop-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2;
}

.mp-ref-prop-badge-secondary {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    background: rgba(245,158,11,0.95);
    color: white;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 2;
}

/* Property Info */
.mp-ref-prop-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 4px 0;
}

.mp-ref-prop-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mp-ref-prop-location {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mp-ref-prop-location i {
    color: #3b82f6;
    font-size: 11px;
}

.mp-ref-prop-price {
    font-size: 18px;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.mp-ref-prop-specs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mp-ref-prop-specs span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #475569;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.mp-ref-prop-specs span i {
    color: #3b82f6;
    font-size: 10px;
}

/* Marketing Section in Card */
.mp-ref-prop-marketing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 10px 8px 14px;
    border-left: 1px dashed #e2e8f0;
    min-width: 130px;
    text-align: center;
    gap: 3px;
}

.mp-ref-prop-agent-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #3b82f6;
    box-shadow: 0 2px 8px rgba(59,130,246,0.3);
}

.mp-ref-prop-agent-name {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 2px;
}

.mp-ref-prop-agent-role {
    font-size: 9px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.mp-ref-prop-agent-wa {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    color: #16a34a;
    font-weight: 600;
}

.mp-ref-prop-agent-wa i {
    font-size: 12px;
}

.mp-ref-prop-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 14px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37,211,102,0.35);
    transition: all 0.3s ease;
    margin-top: 4px;
    white-space: nowrap;
}

.mp-ref-prop-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37,211,102,0.45);
    color: white;
}

/* Empty State */
.mp-ref-empty {
    text-align: center;
    padding: 50px 20px;
    background: white;
    border-radius: 18px;
    box-shadow: var(--mp-shadow);
}

.mp-ref-empty h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #0f172a;
}

.mp-ref-empty p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

/* ============ BOTTOM CTA ============ */
.mp-ref-bottom-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    border-radius: 18px;
    padding: 18px 20px;
    color: white;
    box-shadow: 0 12px 40px rgba(30,64,175,0.35);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.mp-ref-bottom-cta::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.mp-ref-cta-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.mp-ref-cta-text {
    flex: 1;
    min-width: 0;
}

.mp-ref-cta-text h4 {
    margin: 0 0 2px;
    font-size: 15px;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.mp-ref-cta-text p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.mp-ref-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: white;
    color: #1e40af;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mp-ref-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.3);
    color: #1e3a8a;
}

.mp-ref-cta-btn i {
    color: #25d366;
    font-size: 16px;
}

/* ============ BOTTOM NAVIGATION ============ */
.mp-ref-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-around;
    padding: 10px 0 14px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    z-index: 100;
}

.mp-ref-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mp-ref-nav-item i {
    font-size: 18px;
}

.mp-ref-nav-item.active {
    color: #1e40af;
}

.mp-ref-nav-item.active i {
    transform: scale(1.1);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .mp-ref-property-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .mp-ref-prop-image {
        width: 100%;
        height: 180px;
    }
    
    .mp-ref-prop-marketing {
        flex-direction: row;
        border-left: none;
        border-top: 1px dashed #e2e8f0;
        padding: 12px 4px 4px;
        min-width: auto;
        justify-content: flex-start;
        text-align: left;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .mp-ref-prop-wa-btn {
        margin-left: auto;
        margin-top: 0;
    }
    
    .mp-ref-marketing-card {
        order: 3;
        width: 100%;
        min-width: auto;
    }
    
    .mp-ref-tagline {
        margin-top: 16px;
    }
    
    .mp-ref-tagline h2 {
        font-size: 28px;
    }
    
    .mp-ref-features {
        gap: 8px;
    }
    
    .mp-ref-feature {
        min-width: 70px;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .mp-ref-logo h1 {
        font-size: 18px;
    }
    
    .mp-ref-logo p {
        font-size: 10px;
    }
    
    .mp-ref-tagline h2 {
        font-size: 24px;
    }
    
    .mp-ref-prop-specs span {
        font-size: 10px;
    }
    
    .mp-ref-bottom-cta {
        flex-wrap: wrap;
    }
    
    .mp-ref-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   FIX: Name Tag Ukuran Business Card Standar (85mm x 55mm)
   Tambahkan CSS ini ke akhir file: plugins/mitra-property/assets/css/style.css
   ============================================================ */

/* Business Card Container - Layout Horizontal */
.mp-business-card {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    max-width: 360px !important;
    aspect-ratio: 85 / 55 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
    overflow: hidden !important;
    position: relative !important;
    padding: 0 !important;
}

/* Kiri: Logo & Info */
.mp-nametag-left {
    flex: 1.4;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    position: relative;
}

/* Kanan: Foto & QR */
.mp-nametag-right {
    flex: 1;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e63d6 100%);
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Logo Section */
.mp-nametag-logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.mp-nametag-logo {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
    border-radius: 6px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1) !important;
}

.mp-nametag-brand h3 {
    color: #1e3a8a !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
    line-height: 1.1 !important;
}

.mp-nametag-brand p {
    color: #64748b !important;
    font-size: 7px !important;
    margin: 2px 0 0 0 !important;
    letter-spacing: 0.3px !important;
    line-height: 1 !important;
}

/* Personal Info */
.mp-nametag-person {
    margin-bottom: 6px;
}

.mp-business-card .mp-nametag-name {
    font-family: 'Playfair Display', serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1e3a8a !important;
    margin: 0 0 3px 0 !important;
    line-height: 1.2 !important;
}

.mp-business-card .mp-nametag-nim {
    display: inline-block !important;
    background: #eff6ff !important;
    color: #1e63d6 !important;
    padding: 2px 8px !important;
    border-radius: 20px !important;
    font-size: 7px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    margin: 0 !important;
}

/* Contact Info */
.mp-nametag-contact {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mp-contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 7px !important;
    color: #475569 !important;
    line-height: 1.2 !important;
}

.mp-contact-item i {
    color: #1e63d6 !important;
    font-size: 8px !important;
    width: 10px;
    text-align: center;
    flex-shrink: 0;
}

.mp-contact-item strong {
    color: #1e3a8a !important;
}

/* Photo */
.mp-business-card .mp-nametag-photo-container {
    margin: 0 !important;
}

.mp-business-card .mp-nametag-photo {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    object-fit: cover !important;
    background: white !important;
}

/* QR Code Small */
.mp-nametag-qr-small {
    text-align: center;
}

.mp-nametag-qr-small img {
    width: 48px !important;
    height: 48px !important;
    background: white !important;
    padding: 3px !important;
    border-radius: 4px !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1) !important;
}

.mp-nametag-qr-small p {
    color: rgba(255,255,255,0.8) !important;
    font-size: 6px !important;
    margin: 3px 0 0 0 !important;
    letter-spacing: 0.3px !important;
}

/* ============================================================
   PRINT CSS - Ukuran Fisik Business Card TEPAT
   ============================================================ */
@media print {
    @page {
        size: 85mm 55mm;
        margin: 0;
    }
    
    body {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .mp-nametag-container,
    .mp-nametag-container * {
        visibility: visible !important;
    }
    
    .mp-nametag-container {
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        width: 85mm !important;
        height: 55mm !important;
        padding: 0 !important;
        margin: 0 !important;
        background: white !important;
    }
    
    .mp-business-card {
        width: 85mm !important;
        height: 55mm !important;
        max-width: none !important;
        aspect-ratio: auto !important;
        box-shadow: none !important;
        border: 0.5px solid #ccc !important;
        border-radius: 2mm !important;
        margin: 0 !important;
    }
    
    /* Sembunyikan tombol saat cetak */
    .mp-btn-primary,
    .mp-btn-secondary,
    .mp-nametag-container > div > div:not(.mp-business-card) {
        display: none !important;
    }
    
    /* Pastikan background warna tercetak */
    .mp-nametag-right {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}

/* ============================================================
   OVERRIDE Style Lama (supaya tidak bentrok)
   ============================================================ */
.mp-business-card .mp-nametag-header,
.mp-business-card .mp-nametag-body,
.mp-business-card .mp-nametag-footer,
.mp-business-card .mp-nametag-divider,
.mp-business-card .mp-nametag-qr {
    display: none !important;
}
/* ============================================================
   LUXURY ENHANCEMENT - Biru Putih Mewah & Mobile Friendly
   Ditambahkan untuk mempercantik tampilan plugin Mitra Property
   ============================================================ */

/* ---------- LUXURY GRADIENTS & EFFECTS ---------- */
.mp-luxury-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 25%, #2563eb 50%, #3b82f6 75%, #60a5fa 100%);
}

.mp-luxury-gradient-soft {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
}

.mp-luxury-shadow {
    box-shadow: 
        0 1px 2px rgba(30, 64, 175, 0.04),
        0 4px 12px rgba(30, 64, 175, 0.06),
        0 12px 32px rgba(30, 64, 175, 0.08);
}

.mp-luxury-shadow-hover:hover {
    box-shadow: 
        0 4px 8px rgba(30, 64, 175, 0.06),
        0 12px 28px rgba(30, 64, 175, 0.1),
        0 24px 60px rgba(30, 64, 175, 0.12);
    transform: translateY(-2px);
}

/* ---------- BUTTONS LUXURY ---------- */
.mp-btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.mp-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.mp-btn-primary:hover::before {
    left: 100%;
}

.mp-btn-primary:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35) !important;
}

.mp-btn-primary:active {
    transform: translateY(0) scale(0.98) !important;
}

.mp-btn-secondary {
    background: white !important;
    border: 2px solid #2563eb !important;
    color: #1e40af !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mp-btn-secondary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25) !important;
}

/* ---------- CARDS LUXURY ---------- */
.mp-card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(30, 64, 175, 0.06);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mp-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 
        0 8px 24px rgba(30, 64, 175, 0.08),
        0 20px 48px rgba(30, 64, 175, 0.1);
    transform: translateY(-4px);
}

/* ---------- AUTH / LOGIN FORM LUXURY ---------- */
.mp-auth-container {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(96, 165, 250, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 80%, rgba(30, 64, 175, 0.12) 0%, transparent 40%),
        linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #f0f9ff 100%) !important;
    min-height: 100vh;
    padding: 40px 20px !important;
}

.mp-auth-card {
    background: white !important;
    border-radius: 28px !important;
    box-shadow: 
        0 4px 16px rgba(30, 64, 175, 0.06),
        0 20px 60px rgba(30, 64, 175, 0.12) !important;
    border: 1px solid rgba(30, 64, 175, 0.08) !important;
    overflow: hidden !important;
    max-width: 440px !important;
    width: 100% !important;
}

.mp-auth-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 40%, #2563eb 70%, #3b82f6 100%) !important;
    padding: 36px 28px 48px !important;
    position: relative !important;
    overflow: hidden;
}

.mp-auth-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.mp-auth-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.mp-logo {
    position: relative;
    z-index: 2;
}

.mp-logo i {
    font-size: 42px !important;
    background: linear-gradient(135deg, #fff 0%, #bfdbfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mp-logo h1 {
    color: white !important;
    font-size: 24px !important;
    letter-spacing: 2px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
    margin-top: 8px !important;
}

.mp-logo p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 12px !important;
    letter-spacing: 1px;
}

/* ---------- FORM INPUTS LUXURY ---------- */
.mp-form-group input,
.mp-form-group select,
.mp-form-group textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: #0f172a;
}

.mp-form-group input:focus,
.mp-form-group select:focus,
.mp-form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.mp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e3a8a;
    font-size: 13px;
}

.mp-form-group label i {
    color: #2563eb;
    margin-right: 6px;
}

/* ---------- PROFILE PAGE LUXURY ---------- */
.mp-profile-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 30%, #2563eb 60%, #3b82f6 100%) !important;
    border-radius: 0 0 32px 32px !important;
    padding: 40px 24px 80px !important;
    position: relative;
    overflow: hidden;
}

.mp-profile-header::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.mp-profile-avatar-container {
    position: relative;
    z-index: 2;
}

.mp-profile-avatar {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    border: 4px solid white !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important;
    object-fit: cover !important;
}

/* ---------- TABS LUXURY ---------- */
.mp-tabs {
    display: flex;
    gap: 8px;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.mp-tab-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.mp-tab-btn:hover {
    color: #1e40af;
    background: rgba(37, 99, 235, 0.06);
}

.mp-tab-btn.active {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* ---------- ALERTS LUXURY ---------- */
.mp-alert {
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    border-left: 4px solid;
}

.mp-alert-success {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #065f46;
    border-left-color: #10b981;
}

.mp-alert-error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
    border-left-color: #ef4444;
}

.mp-alert-info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
    border-left-color: #2563eb;
}

/* ---------- MOBILE FRIENDLY ENHANCEMENTS ---------- */
@media (max-width: 768px) {
    .mp-auth-container {
        padding: 20px 12px !important;
    }
    
    .mp-auth-card {
        border-radius: 20px !important;
    }
    
    .mp-auth-header {
        padding: 28px 20px 36px !important;
    }
    
    .mp-logo h1 {
        font-size: 20px !important;
    }
    
    .mp-container {
        padding: 0 12px !important;
    }
    
    .mp-profile-header {
        padding: 28px 16px 60px !important;
        border-radius: 0 0 24px 24px !important;
    }
    
    .mp-profile-avatar {
        width: 90px !important;
        height: 90px !important;
    }
    
    .mp-tabs {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .mp-tab-btn {
        padding: 10px 12px;
        font-size: 12px;
        flex: none;
        min-width: calc(50% - 4px);
    }
    
    .mp-btn-primary,
    .mp-btn-secondary {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .mp-card {
        border-radius: 16px;
    }
    
    .mp-form-group input,
    .mp-form-group select,
    .mp-form-group textarea {
        padding: 12px 14px 12px 40px;
        font-size: 15px; /* Lebih besar agar tidak zoom di iOS */
    }
    
    h1 { font-size: 24px !important; }
    h2 { font-size: 20px !important; }
    h3 { font-size: 18px !important; }
}

@media (max-width: 480px) {
    .mp-auth-container {
        padding: 12px 8px !important;
    }
    
    .mp-tabs {
        flex-direction: column;
    }
    
    .mp-tab-btn {
        width: 100%;
        min-width: 100%;
    }
}

/* ---------- TABLET OPTIMIZATION ---------- */
@media (min-width: 769px) and (max-width: 1024px) {
    .mp-container {
        padding: 0 20px !important;
        max-width: 100% !important;
    }
}

/* ---------- PROPERTY CARDS LUXURY MOBILE ---------- */
@media (max-width: 640px) {
    .mp-property-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* ---------- SMOOTH SCROLL & ANIMATIONS ---------- */
html {
    scroll-behavior: smooth;
}

.mp-fade-in {
    animation: mpFadeIn 0.5s ease forwards;
}

@keyframes mpFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- INPUT PLACEHOLDER ---------- */
::placeholder {
    color: #94a3b8;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #94a3b8;
}

::-ms-input-placeholder {
    color: #94a3b8;
}

/* ---------- SCROLLBAR LUXURY ---------- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #93c5fd 0%, #3b82f6 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}

/* ---------- SELECT DROPDOWN LUXURY ---------- */
.mp-form-group select {
    appearance: none;
    -webkit-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='%232563eb' stroke-width='2' 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 14px center;
    padding-right: 44px;
}

/* ---------- CHECKBOX LUXURY ---------- */
.mp-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
    cursor: pointer;
}

/* ---------- BADGE / LABEL ---------- */
.mp-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.mp-badge-primary {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.mp-badge-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.mp-badge-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.mp-badge-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
}

/* ---------- STATISTIC CARDS ---------- */
.mp-stat-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(30, 64, 175, 0.06);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.04);
    transition: all 0.3s ease;
}

.mp-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.08);
}

.mp-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.mp-stat-icon.primary {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.mp-stat-icon.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.mp-stat-icon.warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.mp-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1.2;
    margin-bottom: 4px;
}

.mp-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* ---------- SAFE AREA FOR MOBILE ---------- */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mp-mobile-bottom {
        padding-bottom: calc(16px + env(safe-area-inset-bottom));
    }
}

/* ---------- PREVENT IOS ZOOM ON INPUT ---------- */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .mp-form-group select,
    .mp-form-group textarea,
    .mp-form-group input[type="text"],
    .mp-form-group input[type="password"],
    .mp-form-group input[type="email"],
    .mp-form-group input[type="tel"],
    .mp-form-group input[type="number"] {
        font-size: 16px;
    }
}
/* ============================================================
   NAMETAG CENTER - Semua Posisi CENTER, QR DI TENGAH
   ============================================================ */
.mp-nametag-centered {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: var(--mp-radius-lg);
    box-shadow: var(--mp-shadow-lg);
    overflow: hidden;
    position: relative;
    text-align: center !important;
    margin: 0 auto;
}

/* HEADER CENTER */
.mp-nametag-header-centered {
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 50%, var(--mp-primary-light) 100%);
    padding: 28px 24px 50px;
    text-align: center;
    color: white;
    position: relative;
}

.mp-nametag-logo-center {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 12px;
    margin: 0 auto 10px;
    display: block;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    background: white;
    padding: 4px;
}

.mp-nametag-header-centered h3 {
    color: white;
    font-size: 20px;
    letter-spacing: 3px;
    margin: 0 0 4px 0;
    text-align: center;
}

.mp-nametag-header-centered p {
    font-size: 12px;
    opacity: 0.85;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
}

/* FOTO CENTER */
.mp-nametag-photo-centered {
    display: flex;
    justify-content: center;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.mp-nametag-photo-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    object-fit: cover;
    background: white;
    display: block;
}

/* INFO CENTER */
.mp-nametag-info-centered {
    padding: 16px 24px 8px;
    text-align: center;
}

.mp-nametag-name-center {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--mp-primary-dark);
    margin: 0 0 4px 0;
    text-align: center;
}

.mp-nametag-nim-center {
    display: inline-block;
    background: var(--mp-primary-soft);
    color: var(--mp-primary);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

/* DIVIDER CENTER */
.mp-nametag-divider-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 16px 24px;
}

.mp-nametag-divider-center::before,
.mp-nametag-divider-center::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mp-border), transparent);
}

.mp-nametag-divider-center i {
    color: var(--mp-gold);
    font-size: 12px;
}

/* KONTAK CENTER */
.mp-nametag-contact-centered {
    padding: 0 24px 16px;
    text-align: center;
}

.mp-contact-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--mp-text-light);
    margin-bottom: 4px;
    text-align: center;
}

.mp-contact-line i {
    color: var(--mp-primary);
    font-size: 12px;
    width: 16px;
    text-align: center;
}

/* QR CODE - DI TENGAH (POSISI UTAMA) */
.mp-nametag-qr-centered {
    background: linear-gradient(135deg, var(--mp-bg-alt) 0%, #eff6ff 100%);
    margin: 8px 24px 16px;
    padding: 20px;
    border-radius: var(--mp-radius);
    text-align: center;
    border: 2px dashed rgba(37, 99, 235, 0.2);
}

.mp-qr-label {
    font-size: 11px;
    color: var(--mp-primary);
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-align: center;
}

.mp-qr-label i {
    margin-right: 4px;
}

.mp-qr-image-center {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    background: white;
    padding: 10px;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.1);
    display: block;
    margin: 0 auto;
}

.mp-referral-code {
    margin: 12px 0 0 0;
    font-size: 11px;
    color: var(--mp-muted);
    text-align: center;
}

.mp-referral-code strong {
    color: var(--mp-primary);
    font-size: 13px;
}

/* FOOTER CENTER */
.mp-nametag-footer-centered {
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 100%);
    padding: 14px;
    text-align: center;
    color: white;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
}

.mp-nametag-footer-centered i {
    color: var(--mp-gold);
    margin: 0 6px;
}

/* PRINT CSS untuk Nametag Center */
@media print {
    .mp-nametag-centered {
        box-shadow: none !important;
        border: 1px solid #ddd;
        max-width: 100% !important;
    }
    
    .mp-qr-image-center {
        box-shadow: none !important;
        border: 1px solid #eee;
    }
}

/* ============================================================
   MOBILE RESPONSIVE untuk Nametag
   ============================================================ */
@media (max-width: 480px) {
    .mp-nametag-centered {
        max-width: 100%;
        margin: 0 8px;
        border-radius: 16px;
    }
    
    .mp-nametag-header-centered {
        padding: 20px 16px 40px;
    }
    
    .mp-nametag-logo-center {
        width: 48px;
        height: 48px;
    }
    
    .mp-nametag-header-centered h3 {
        font-size: 17px;
        letter-spacing: 2px;
    }
    
    .mp-nametag-photo-circle {
        width: 90px;
        height: 90px;
    }
    
    .mp-nametag-name-center {
        font-size: 20px;
    }
    
    .mp-qr-image-center {
        width: 140px;
        height: 140px;
    }
}

/* ============================================================
   ADMIN CSS untuk Wallet & Withdraw Management
   ============================================================ */
.mp-admin-wrap .mp-stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.mp-admin-wrap .mp-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.mp-admin-wrap .mp-stat-icon.primary {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.mp-admin-wrap .mp-stat-icon.success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.mp-admin-wrap .mp-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1.2;
    margin-bottom: 4px;
}

.mp-admin-wrap .mp-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.mp-admin-wrap .mp-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.mp-admin-wrap .mp-badge.mp-badge-primary {
    background: #dbeafe;
    color: #1e40af;
}

.mp-admin-wrap .mp-badge.mp-badge-success {
    background: #d1fae5;
    color: #065f46;
}

.mp-admin-wrap .mp-badge.mp-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.mp-admin-wrap .mp-badge.mp-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

/* ============================================================
   AJAX URL untuk Wallet & Withdraw
   ============================================================ */
/* ============================================================
   LUXURY ENHANCEMENT - Form Submit Property & Auction System
   ============================================================ */

/* Form Section Styling */
.mp-form-section h3 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
}

/* Input Focus Luxury */
#mp-submit-property-form input:focus,
#mp-submit-property-form select:focus,
#mp-submit-property-form textarea:focus {
    outline: none !important;
    border-color: #2563eb !important;
    background: white !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1) !important;
}

/* Checkbox Lelang */
#cb-lelang {
    accent-color: #d97706;
}

/* ============================================================
   REFERRAL PAGE - LUXURY ENHANCEMENT
   Foto, Nama, WA Mitra Lebih Menonjol
   ============================================================ */

/* Marketing Card - Hero */
.mp-ref-marketing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border-radius: 20px !important;
    padding: 16px 20px !important;
    box-shadow: 
        0 4px 16px rgba(30, 64, 175, 0.08),
        0 12px 40px rgba(30, 64, 175, 0.1) !important;
    border: 1px solid rgba(37, 99, 235, 0.1) !important;
    backdrop-filter: blur(10px);
}

.mp-ref-marketing-photo {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 3px solid #2563eb !important;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25) !important;
    flex-shrink: 0;
}

.mp-ref-marketing-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.mp-ref-marketing-name {
    font-family: 'Playfair Display', serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1e3a8a !important;
    margin: 2px 0 !important;
}

.mp-ref-marketing-role {
    font-size: 11px !important;
    color: #2563eb !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.mp-ref-marketing-wa {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    margin-top: 4px !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
    transition: all 0.3s ease !important;
}

.mp-ref-marketing-wa:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35) !important;
    color: white !important;
}

/* Marketing Info di Setiap Property Card */
.mp-ref-prop-marketing {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
    border-left: 3px solid #2563eb !important;
    padding: 12px !important;
    border-radius: 0 12px 12px 0 !important;
    text-align: center !important;
}

.mp-ref-prop-agent-photo {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2) !important;
    margin: 0 auto 6px !important;
    display: block !important;
}

.mp-ref-prop-agent-name {
    font-weight: 700 !important;
    color: #1e3a8a !important;
    font-size: 13px !important;
    margin-bottom: 2px !important;
}

.mp-ref-prop-agent-role {
    font-size: 10px !important;
    color: #2563eb !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    margin-bottom: 4px !important;
}

.mp-ref-prop-agent-wa {
    font-size: 11px !important;
    color: #065f46 !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    background: white !important;
    padding: 3px 8px !important;
    border-radius: 20px !important;
    display: inline-block !important;
}

.mp-ref-prop-wa-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    padding: 8px 14px !important;
    border-radius: 50px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.mp-ref-prop-wa-btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35) !important;
    color: white !important;
}

/* ============================================================
   AUCTION BADGE on Property Cards
   ============================================================ */
.mp-auction-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: white !important;
    padding: 4px 10px !important;
    border-radius: 50px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3) !important;
}

.mp-countdown {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: #fef3c7 !important;
    color: #92400e !important;
    padding: 3px 8px !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

/* ============================================================
   ADMIN APPROVAL PAGE STYLING
   ============================================================ */
.wrap .mp-stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.wrap .mp-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.wrap .mp-stat-icon.primary {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.wrap .mp-stat-icon.success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.wrap .mp-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1.2;
    margin-bottom: 4px;
}

.wrap .mp-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.wrap .mp-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.wrap .mp-badge.mp-badge-primary {
    background: #dbeafe;
    color: #1e40af;
}

.wrap .mp-badge.mp-badge-success {
    background: #d1fae5;
    color: #065f46;
}

.wrap .mp-badge.mp-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.wrap .mp-badge.mp-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

/* ============================================================
   MOBILE RESPONSIVE - Form Submit Property
   ============================================================ */
@media (max-width: 768px) {
    #mp-submit-property-form .mp-form-section > div[style*="display:grid"] {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    .mp-ref-marketing-card {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .mp-ref-marketing-info {
        text-align: center !important;
        margin-top: 12px !important;
    }
}

@media (max-width: 480px) {
    #mp-submit-property-form .mp-card {
        padding: 20px 16px !important;
    }
    
    #mp-submit-property-form h1 {
        font-size: 20px !important;
    }
}

/* ============================================================
   SMOOTH ANIMATIONS
   ============================================================ */
@keyframes mpFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mp-form-section {
    animation: mpFadeInUp 0.4s ease forwards;
}

.mp-form-section:nth-child(1) { animation-delay: 0.05s; }
.mp-form-section:nth-child(2) { animation-delay: 0.1s; }
.mp-form-section:nth-child(3) { animation-delay: 0.15s; }
.mp-form-section:nth-child(4) { animation-delay: 0.2s; }
.mp-form-section:nth-child(5) { animation-delay: 0.25s; }
.mp-form-section:nth-child(6) { animation-delay: 0.3s; }

/* ============================================================
   WALLET PAGE - LUXURY ADDITION
   ============================================================ */
.mp-wallet-card {
    position: relative;
    overflow: hidden;
}

.mp-wallet-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: mpFloat 6s ease-in-out infinite;
}

@keyframes mpFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -10px); }
}

/* Shine effect on buttons */
.mp-btn-primary {
    position: relative;
    overflow: hidden;
}

.mp-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.mp-btn-primary:hover::after {
    left: 100%;
}

/* ============================================================
   MARKETING PROPERTIES PAGE - New Feature
   ============================================================ */

.mp-marketing-page {
    min-height: 100vh;
    background: var(--mp-bg);
    padding-bottom: 80px;
    font-family: 'Poppins', sans-serif;
}

/* ---------- HERO SECTION ---------- */
.mp-marketing-hero {
    position: relative;
    background: linear-gradient(180deg, #e0f2fe 0%, #dbeafe 30%, #ffffff 100%);
    padding: 20px 16px 180px;
    overflow: hidden;
}

.mp-marketing-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.12) 0%, transparent 40%);
    pointer-events: none;
}

.mp-marketing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin: 0 auto;
}

.mp-marketing-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.mp-marketing-brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.15);
    background: #fff;
    padding: 4px;
}

.mp-marketing-brand-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--mp-primary-dark);
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.mp-marketing-brand-text p {
    font-size: 0.7rem;
    color: var(--mp-muted);
    margin: 2px 0 0 0;
    font-weight: 500;
}

.mp-marketing-tagline {
    margin-bottom: 20px;
    position: relative;
}

.mp-tagline-script {
    display: block;
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--mp-primary-light);
    font-weight: 600;
    line-height: 1.2;
}

.mp-tagline-main {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mp-primary-dark);
    line-height: 1.3;
    margin-top: 4px;
}

.mp-tagline-main::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    border-radius: 2px;
    margin-top: 8px;
    transform: rotate(-2deg);
}

/* Marketing Hero Card */
.mp-marketing-card-hero {
    position: absolute;
    right: -8px;
    top: 10px;
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 50%, var(--mp-primary-light) 100%);
    border-radius: 20px 20px 20px 4px;
    padding: 12px 16px 12px 44px;
    color: #fff;
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.3);
    min-width: 200px;
}

.mp-marketing-hero-photo {
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.mp-marketing-hero-label {
    font-size: 0.65rem;
    opacity: 0.85;
    font-weight: 500;
    margin-bottom: 2px;
}

.mp-marketing-hero-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.2;
}

.mp-marketing-hero-wa {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-bottom: 4px;
}

.mp-marketing-hero-wa i {
    color: #25D366;
    background: #fff;
    border-radius: 50%;
    padding: 3px;
    font-size: 0.8rem;
}

.mp-marketing-hero-desc {
    font-size: 0.65rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ---------- CONTAINER ---------- */
.mp-marketing-container {
    max-width: 480px;
    margin: -140px auto 0;
    padding: 0 16px;
    position: relative;
    z-index: 5;
}

/* ---------- ICON FEATURES ---------- */
.mp-icon-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 12px;
    box-shadow: var(--mp-shadow);
    margin-bottom: 16px;
}

.mp-icon-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.mp-icon-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--mp-primary-soft) 0%, rgba(96, 165, 250, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mp-primary);
    font-size: 1rem;
}

.mp-icon-feature-label {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.mp-icon-feature-label strong {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--mp-text);
}

.mp-icon-feature-label span {
    font-size: 0.6rem;
    color: var(--mp-muted);
}

/* ---------- SEARCH BAR ---------- */
.mp-search-bar {
    margin-bottom: 16px;
}

.mp-search-bar form {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--mp-shadow);
    padding: 4px 4px 4px 44px;
}

.mp-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mp-muted);
    font-size: 0.9rem;
}

.mp-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 8px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    color: var(--mp-text);
}

.mp-search-input::placeholder {
    color: var(--mp-muted);
}

.mp-filter-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: var(--mp-primary-soft);
    color: var(--mp-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--mp-transition);
}

.mp-filter-btn:hover {
    background: var(--mp-primary);
    color: #fff;
}

/* ---------- FILTER TABS ---------- */
.mp-filter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mp-filter-tabs::-webkit-scrollbar {
    display: none;
}

.mp-filter-tab {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: 20px;
    background: #fff;
    border: 1.5px solid var(--mp-border-light);
    color: var(--mp-text-light);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--mp-transition);
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.mp-filter-tab:hover {
    border-color: var(--mp-primary);
    color: var(--mp-primary);
}

.mp-filter-tab.active {
    background: var(--mp-primary);
    border-color: var(--mp-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.mp-more-btn {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mp-more-btn i {
    font-size: 0.65rem;
}

/* ---------- SECTION TITLE ---------- */
.mp-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.mp-section-title-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.mp-section-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mp-text);
    margin: 0;
    line-height: 1.3;
}

.mp-section-title p {
    font-size: 0.75rem;
    color: var(--mp-muted);
    margin: 2px 0 0 0;
}

/* ---------- EMPTY STATE ---------- */
.mp-empty-state {
    text-align: center;
    padding: 48px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--mp-shadow);
}

.mp-empty-state h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--mp-text);
    margin: 0 0 8px 0;
}

.mp-empty-state p {
    color: var(--mp-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ---------- PROPERTY CARD (MARKETING STYLE) ---------- */
.mp-marketing-property-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.mp-mkt-property-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--mp-shadow);
    transition: var(--mp-transition);
}

.mp-mkt-property-card:hover {
    box-shadow: var(--mp-shadow-hover);
    transform: translateY(-2px);
}

/* Property Image */
.mp-mkt-property-image {
    position: relative;
    width: 130px;
    min-width: 130px;
    flex-shrink: 0;
    overflow: hidden;
}

.mp-mkt-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp-mkt-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-secondary) 100%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 2rem;
}

.mp-mkt-property-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--mp-primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.mp-mkt-property-badge.mp-mkt-badge-star {
    top: auto;
    bottom: 8px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mp-mkt-property-badge.mp-mkt-badge-star i {
    font-size: 0.55rem;
}

/* Property Info */
.mp-mkt-property-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px;
    min-width: 0;
}

.mp-mkt-property-main {
    flex: 1;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--mp-border-light);
}

.mp-mkt-property-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mp-text);
    margin: 0 0 4px 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mp-mkt-property-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--mp-muted);
    margin-bottom: 6px;
}

.mp-mkt-property-location i {
    color: var(--mp-primary-light);
    font-size: 0.65rem;
}

.mp-mkt-property-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--mp-primary-dark);
    margin-bottom: 2px;
    line-height: 1.2;
}

.mp-mkt-property-cicilan {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--mp-success);
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-weight: 500;
}

.mp-mkt-property-cicilan i {
    font-size: 0.6rem;
}

.mp-mkt-property-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mp-mkt-spec {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--mp-text-light);
    background: var(--mp-bg-alt);
    padding: 3px 8px;
    border-radius: 6px;
}

.mp-mkt-spec i {
    font-size: 0.6rem;
    color: var(--mp-primary-light);
}

/* Marketing Section in Card */
.mp-mkt-property-marketing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mp-mkt-marketing-info {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.mp-mkt-marketing-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    background: #fff;
}

.mp-mkt-marketing-details {
    min-width: 0;
    flex: 1;
}

.mp-mkt-marketing-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--mp-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.mp-mkt-marketing-role {
    font-size: 0.6rem;
    color: var(--mp-muted);
    line-height: 1.2;
}

.mp-mkt-marketing-wa {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.65rem;
    color: var(--mp-primary);
    font-weight: 500;
    line-height: 1.2;
    margin-top: 1px;
}

.mp-mkt-marketing-wa i {
    color: #25D366;
    font-size: 0.7rem;
}

/* WhatsApp Button */
.mp-mkt-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--mp-transition);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
    flex-shrink: 0;
}

.mp-mkt-wa-btn:hover {
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-primary-light) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.3);
    color: #fff;
}

.mp-mkt-wa-btn i {
    color: #25D366;
    font-size: 0.85rem;
}

/* ---------- CTA BANNER ---------- */
.mp-mkt-cta-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--mp-primary-dark) 0%, var(--mp-primary) 50%, var(--mp-primary-light) 100%);
    border-radius: 16px;
    padding: 16px;
    color: #fff;
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.3);
    margin-bottom: 20px;
}

.mp-mkt-cta-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mp-mkt-cta-text {
    flex: 1;
    min-width: 0;
}

.mp-mkt-cta-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.mp-mkt-cta-text p {
    font-size: 0.7rem;
    opacity: 0.85;
    margin: 0;
    line-height: 1.3;
}

.mp-mkt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--mp-primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--mp-transition);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mp-mkt-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: var(--mp-primary);
}

.mp-mkt-cta-btn i {
    color: #25D366;
    font-size: 1rem;
}

/* ---------- BOTTOM NAVIGATION ---------- */
.mp-mkt-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--mp-border-light);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.mp-mkt-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--mp-muted);
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 500;
    padding: 4px 12px;
    transition: var(--mp-transition);
    font-family: 'Poppins', sans-serif;
}

.mp-mkt-nav-item:hover,
.mp-mkt-nav-item.active {
    color: var(--mp-primary);
}

.mp-mkt-nav-item i {
    font-size: 1.1rem;
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 768px) {
    .mp-marketing-hero {
        padding: 32px 24px 200px;
    }
    
    .mp-marketing-hero-content {
        max-width: 720px;
    }
    
    .mp-marketing-container {
        max-width: 720px;
        margin-top: -160px;
    }
    
    .mp-marketing-property-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .mp-mkt-property-image {
        width: 180px;
        min-width: 180px;
    }
}

@media (min-width: 1024px) {
    .mp-marketing-hero-content {
        max-width: 960px;
    }
    
    .mp-marketing-container {
        max-width: 960px;
    }
    
    .mp-marketing-property-list {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ============================================================
   REFERRAL PROPERTY PAGE - Marketing Card FIX
   ============================================================ */

/* Ensure marketing card is visible and positioned correctly */
.mp-ref-topbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    min-height: 100px;
}

.mp-ref-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

/* Marketing card - floating on the right */
.mp-ref-marketing-card {
    position: relative;
    z-index: 10;
    display: flex !important;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%) !important;
    border-radius: 20px 20px 20px 4px !important;
    padding: 12px 16px 12px 52px !important;
    color: #fff !important;
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.35) !important;
    min-width: 200px;
    max-width: 280px;
    flex-shrink: 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.mp-ref-marketing-photo {
    position: absolute !important;
    left: -18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 3px solid #fff !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
    background: #fff !important;
    z-index: 11;
    flex-shrink: 0;
}

.mp-ref-marketing-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 50% !important;
}

.mp-ref-marketing-info {
    flex: 1;
    min-width: 0;
    color: #fff !important;
}

.mp-ref-marketing-role {
    font-size: 0.65rem !important;
    opacity: 0.9 !important;
    font-weight: 500 !important;
    margin-bottom: 2px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    letter-spacing: 0.3px;
}

.mp-ref-marketing-name {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    line-height: 1.2 !important;
    color: #fff !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Poppins', sans-serif !important;
}

.mp-ref-marketing-wa {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    text-decoration: none !important;
    margin-bottom: 4px !important;
    line-height: 1.2 !important;
}

.mp-ref-marketing-wa svg,
.mp-ref-marketing-wa i {
    color: #25D366 !important;
    background: #fff !important;
    border-radius: 50% !important;
    padding: 3px !important;
    font-size: 0.8rem !important;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
}

.mp-ref-marketing-msg {
    font-size: 0.65rem !important;
    opacity: 0.85 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.2 !important;
}

.mp-ref-marketing-msg i {
    font-size: 0.7rem !important;
}

/* Responsive: on mobile, stack logo and marketing card */
@media (max-width: 600px) {
    .mp-ref-topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .mp-ref-marketing-card {
        align-self: flex-end;
        max-width: 100%;
    }
}

