﻿/* ============================================
   PV30 - Property Visit Within 30 Minutes
   Main Stylesheet
   ============================================ */

:root {
    --pv-primary: #0F4C81;
    --pv-primary-dark: #0A3A66;
    --pv-primary-light: #1A6BB5;
    --pv-primary-50: #E8F1FA;
    --pv-primary-100: #D1E3F5;
    --pv-accent: #FF6B35;
    --pv-accent-dark: #E55A2B;
    --pv-accent-light: #FF8556;
    --pv-accent-50: #FFF1EC;
    --pv-bg: #F8FAFC;
    --pv-white: #FFFFFF;
    --pv-text: #1E293B;
    --pv-text-light: #64748B;
    --pv-text-muted: #94A3B8;
    --pv-border: #E2E8F0;
    --pv-success: #10B981;
    --pv-warning: #F59E0B;
    --pv-error: #EF4444;
    --pv-info: #3B82F6;
    --pv-shadow-sm: 0 1px 2px rgba(15, 76, 129, 0.06);
    --pv-shadow: 0 4px 16px rgba(15, 76, 129, 0.08);
    --pv-shadow-md: 0 8px 30px rgba(15, 76, 129, 0.10);
    --pv-shadow-lg: 0 16px 50px rgba(15, 76, 129, 0.14);
    --pv-shadow-accent: 0 8px 24px rgba(255, 107, 53, 0.25);
    --pv-radius-sm: 8px;
    --pv-radius: 14px;
    --pv-radius-lg: 20px;
    --pv-radius-xl: 28px;
    --pv-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --pv-font: 'Poppins', sans-serif;
    /* Fluid type scale - min for phones, max for wide screens, smooth between.
       Every display heading on the public site is sized from these, so nothing
       needs a per-breakpoint font-size override any more. */
    --fs-display: clamp(1.85rem, 1.15rem + 2.6vw, 2.75rem);
    --fs-h1: clamp(1.5rem, 1.15rem + 1.5vw, 2rem);
    --fs-h2: clamp(1.3rem, 1.05rem + 1.1vw, 1.75rem);
    --fs-h3: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
    --fs-h4: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
    --fs-stat: clamp(1.35rem, 1.1rem + 1vw, 1.7rem);
    --fs-lead: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
    --fs-body: 0.95rem;
    --fs-sm: 0.875rem;
    --fs-xs: 0.78rem;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--pv-font);
    background-color: var(--pv-bg);
    color: var(--pv-text);
    font-size: var(--fs-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* stops a long word or a wide embed pushing the page sideways on a phone */
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--pv-text);
    line-height: 1.2;
}

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

img {
    max-width: 100%;
}

section {
    padding: clamp(44px, 5.5vw, 80px) 0;
    position: relative;
}

/* a section that sits directly under another one and should not double the gap */
.section-tight-top {
    padding-top: clamp(8px, 1.5vw, 20px);
}

/* ===== Utility ===== */
.text-primary-pv {
    color: var(--pv-primary) !important;
}

.text-accent-pv {
    color: var(--pv-accent) !important;
}

.bg-primary-pv {
    background-color: var(--pv-primary) !important;
}

.bg-accent-pv {
    background-color: var(--pv-accent) !important;
}

.bg-light-pv {
    background-color: var(--pv-bg) !important;
}

.bg-white-pv {
    background-color: var(--pv-white) !important;
}

.fw-semibold-pv {
    font-weight: 600;
}

.section-title {
    font-size: var(--fs-h2);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--pv-text-light);
    font-size: var(--fs-lead);
    max-width: 600px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: var(--pv-accent-50);
    color: var(--pv-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.divider-accent {
    width: 60px;
    height: 4px;
    background: var(--pv-accent);
    border-radius: 4px;
    margin: 16px auto 0;
}

/* ===== Buttons ===== */
.btn-pv-primary {
    background: var(--pv-primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--pv-transition);
    box-shadow: 0 4px 14px rgba(15, 76, 129, 0.25);
}

    .btn-pv-primary:hover {
        background: var(--pv-primary-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(15, 76, 129, 0.35);
    }

.btn-pv-accent {
    background: var(--pv-accent);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--pv-transition);
    box-shadow: var(--pv-shadow-accent);
}

    .btn-pv-accent:hover {
        background: var(--pv-accent-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(255, 107, 53, 0.35);
    }

.btn-pv-outline {
    background: transparent;
    color: var(--pv-primary);
    border: 2px solid var(--pv-primary);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--pv-transition);
}

    .btn-pv-outline:hover {
        background: var(--pv-primary);
        color: #fff;
        transform: translateY(-2px);
    }

.btn-pv-ghost {
    background: var(--pv-primary-50);
    color: var(--pv-primary);
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--pv-transition);
}

    .btn-pv-ghost:hover {
        background: var(--pv-primary-100);
        color: var(--pv-primary-dark);
    }

.btn-pv-light {
    background: #fff;
    color: var(--pv-primary);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--pv-transition);
    box-shadow: var(--pv-shadow);
}

    .btn-pv-light:hover {
        transform: translateY(-2px);
        box-shadow: var(--pv-shadow-md);
        color: var(--pv-primary-dark);
    }

/* ===== Navbar ===== */
.navbar-pv {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    padding: 14px 0;
    transition: all var(--pv-transition);
    z-index: 1000;
}

    .navbar-pv.scrolled {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: var(--pv-shadow);
        padding: 10px 0;
    }

    .navbar-pv .navbar-brand {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--pv-primary);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .navbar-pv .navbar-brand .brand-badge {
            background: var(--pv-accent);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 6px;
            letter-spacing: 0.5px;
        }

    .navbar-pv .nav-link {
        color: var(--pv-text);
        font-weight: 500;
        font-size: 0.95rem;
        margin: 0 4px;
        padding: 8px 14px !important;
        border-radius: 8px;
        transition: all var(--pv-transition);
        position: relative;
    }

        .navbar-pv .nav-link:hover,
        .navbar-pv .nav-link.active {
            color: var(--pv-primary);
            background: var(--pv-primary-50);
        }

            .navbar-pv .nav-link.active::after {
                content: '';
                position: absolute;
                bottom: 2px;
                left: 50%;
                transform: translateX(-50%);
                width: 20px;
                height: 2px;
                background: var(--pv-accent);
                border-radius: 2px;
            }

    .navbar-pv .dropdown-menu {
        border: none;
        border-radius: var(--pv-radius);
        box-shadow: var(--pv-shadow-md);
        padding: 8px;
        margin-top: 10px;
    }

    .navbar-pv .dropdown-item {
        border-radius: 8px;
        padding: 10px 14px;
        font-size: 0.92rem;
        font-weight: 500;
        color: var(--pv-text);
        transition: all 0.2s;
    }

        .navbar-pv .dropdown-item:hover {
            background: var(--pv-primary-50);
            color: var(--pv-primary);
        }

        .navbar-pv .dropdown-item i {
            color: var(--pv-primary);
            width: 20px;
        }

/* ===== Hero ===== */
.hero-pv {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.92) 0%, rgba(10, 58, 102, 0.88) 100%), url('https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    overflow: hidden;
}

    .hero-pv::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

    .hero-pv::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(26, 107, 181, 0.2) 0%, transparent 70%);
        border-radius: 50%;
    }

    .hero-pv .container {
        position: relative;
        z-index: 2;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

    .hero-badge .dot {
        width: 8px;
        height: 8px;
        background: var(--pv-accent);
        border-radius: 50%;
        animation: pulse-dot 1.5s infinite;
    }

.hero-title {
    color: #fff;
    font-size: var(--fs-display);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

    .hero-title .highlight {
        color: var(--pv-accent);
        position: relative;
    }

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-lead);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stat .stat-number {
    font-size: var(--fs-stat);
    font-weight: 700;
    color: #fff;
}

    .hero-stat .stat-number .accent {
        color: var(--pv-accent);
    }

.hero-stat .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* ===== Search Card ===== */
.search-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--pv-radius-lg);
    padding: 24px;
    box-shadow: var(--pv-shadow-lg);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

    .search-card .nav-pills {
        gap: 4px;
        margin-bottom: 20px;
    }

        .search-card .nav-pills .nav-link {
            color: var(--pv-text-light);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 8px 20px;
            border-radius: 50px;
            transition: all var(--pv-transition);
        }

            .search-card .nav-pills .nav-link.active {
                background: var(--pv-primary);
                color: #fff;
            }

            .search-card .nav-pills .nav-link:not(.active):hover {
                background: var(--pv-primary-50);
                color: var(--pv-primary);
            }

    .search-card .form-label {
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--pv-text-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }

    .search-card .form-control,
    .search-card .form-select {
        border: 1.5px solid var(--pv-border);
        border-radius: var(--pv-radius-sm);
        padding: 10px 14px;
        font-size: 0.92rem;
        transition: all var(--pv-transition);
    }

        .search-card .form-control:focus,
        .search-card .form-select:focus {
            border-color: var(--pv-primary);
            box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
        }

/* ===== Property Card ===== */
.property-card {
    background: #fff;
    border-radius: var(--pv-radius-lg);
    overflow: hidden;
    box-shadow: var(--pv-shadow);
    transition: all var(--pv-transition);
    border: 1px solid var(--pv-border);
    /* a column, so every card in a row ends at the same height and the
       buttons line up no matter how long the title runs */
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

    .property-card .property-image {
        position: relative;
        aspect-ratio: 16 / 11;
        max-height: 230px;
        overflow: hidden;
        flex: 0 0 auto;
    }

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

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

    .property-card .property-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
    }

.property-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    max-width: calc(100% - 60px);
    background: var(--pv-accent);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .property-tag.for-rent {
        background: var(--pv-info);
    }

.property-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all var(--pv-transition);
    border: none;
}

    .property-fav:hover {
        background: var(--pv-accent);
        transform: scale(1.1);
    }

        .property-fav:hover i {
            color: #fff;
        }

    .property-fav i {
        color: var(--pv-text-light);
        font-size: 0.95rem;
        transition: color var(--pv-transition);
    }

    .property-fav.active i {
        color: var(--pv-accent);
    }

.distance-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    background: rgba(15, 76, 129, 0.9);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 50px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
}

    .distance-badge i {
        flex: 0 0 auto;
    }

.property-card .property-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
}

.property-price {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--pv-primary);
}

    .property-price .price-unit {
        font-size: 0.75rem;
        font-weight: 500;
        color: var(--pv-text-light);
    }

/* Titles and addresses are clamped rather than left to run, so one wordy
   listing cannot make its card taller than the others beside it. */
.property-title {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--pv-text);
    margin: 6px 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(2 * 1.4 * 0.92rem);
}

.property-location {
    color: var(--pv-text-light);
    font-size: 0.78rem;
    line-height: 1.45;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    min-width: 0;
    overflow-wrap: anywhere;
}

    .property-location i {
        flex: 0 0 auto;
        margin-top: 2px;
    }

.property-card .property-location {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(2 * 1.45 * 0.78rem);
}

    /* the pin rides along on the first line once the box is clamped */
    .property-card .property-location i {
        margin-right: 4px;
    }

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

.property-feature {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--pv-text-light);
    white-space: nowrap;
}

    .property-feature i {
        color: var(--pv-primary);
        font-size: 0.85rem;
    }

/* margin-top:auto is what actually keeps the buttons on one line across a row */
.property-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

    .property-card-actions .btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 8px 10px;
        font-size: 0.76rem;
        line-height: 1.35;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .property-card-actions .btn i {
            font-size: 0.8rem;
        }

/* ===== Why Choose Us / Feature Cards ===== */
.feature-card {
    background: #fff;
    border-radius: var(--pv-radius-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--pv-shadow);
    transition: all var(--pv-transition);
    border: 1px solid var(--pv-border);
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--pv-shadow-lg);
        border-color: var(--pv-primary-100);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all var(--pv-transition);
}

    .feature-icon.primary {
        background: var(--pv-primary-50);
        color: var(--pv-primary);
    }

    .feature-icon.accent {
        background: var(--pv-accent-50);
        color: var(--pv-accent);
    }

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--pv-text-light);
    font-size: 0.92rem;
    margin: 0;
}

/* ===== How It Works ===== */
.how-step {
    text-align: center;
    position: relative;
    padding: 20px;
}

.how-step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--pv-primary-100);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pv-primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all var(--pv-transition);
}

.how-step:hover .how-step-number {
    background: var(--pv-primary);
    color: #fff;
    border-color: var(--pv-primary);
    transform: scale(1.1);
}

.how-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.how-step p {
    color: var(--pv-text-light);
    font-size: 0.9rem;
    max-width: 260px;
    margin: 0 auto;
}

.how-step::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -20%;
    width: 40%;
    height: 3px;
    background: var(--pv-primary-100);
    z-index: 1;
}

.how-step:last-child::after {
    display: none;
}

/* ===== Testimonials ===== */
.testimonial-card {
    background: #fff;
    border-radius: var(--pv-radius-lg);
    padding: 30px;
    box-shadow: var(--pv-shadow);
    border: 1px solid var(--pv-border);
    height: 100%;
    position: relative;
}

    .testimonial-card::before {
        content: '\201C';
        position: absolute;
        top: 10px;
        right: 24px;
        font-size: 3.25rem;
        color: var(--pv-primary-50);
        font-family: Georgia, serif;
        line-height: 1;
    }

.testimonial-stars {
    color: #FBBF24;
    margin-bottom: 16px;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--pv-text);
    font-size: 0.95rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.testimonial-user h6 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-user small {
    color: var(--pv-text-light);
}

/* ===== FAQ ===== */
.faq-pv .accordion-item {
    border: 1px solid var(--pv-border);
    border-radius: var(--pv-radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-pv .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--pv-text);
    padding: 18px 24px;
}

    .faq-pv .accordion-button:not(.collapsed) {
        background: var(--pv-primary-50);
        color: var(--pv-primary);
        box-shadow: none;
    }

    .faq-pv .accordion-button:focus {
        box-shadow: none;
        border-color: var(--pv-primary);
    }

.faq-pv .accordion-body {
    padding: 4px 24px 20px;
    color: var(--pv-text-light);
    font-size: 0.92rem;
}

/* ===== CTA Section ===== */
.cta-pv {
    background: linear-gradient(135deg, var(--pv-primary) 0%, var(--pv-primary-dark) 100%);
    border-radius: var(--pv-radius-xl);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

    .cta-pv::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
        border-radius: 50%;
    }

    .cta-pv h2 {
        color: #fff;
        font-size: var(--fs-h2);
    }

    .cta-pv p {
        color: rgba(255, 255, 255, 0.85);
    }

/* ===== Footer ===== */
.footer-pv {
    background: #0A2540;
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0;
}

    .footer-pv h5 {
        color: #fff;
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .footer-pv .footer-brand {
        font-size: 1.6rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-pv p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .footer-pv .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-pv .footer-links li {
            margin-bottom: 10px;
        }

        .footer-pv .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            transition: all var(--pv-transition);
        }

            .footer-pv .footer-links a:hover {
                color: var(--pv-accent);
                padding-left: 5px;
            }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.1rem;
        transition: all var(--pv-transition);
    }

        .footer-social a:hover {
            background: var(--pv-accent);
            transform: translateY(-3px);
        }

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50px;
    padding: 12px 18px;
}

    .footer-newsletter .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .footer-newsletter .form-control:focus {
        background: rgba(255, 255, 255, 0.12);
        border-color: var(--pv-accent);
        box-shadow: none;
        color: #fff;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-top: 50px;
    font-size: 0.85rem;
}

    .footer-bottom a {
        color: rgba(255, 255, 255, 0.7);
    }

        .footer-bottom a:hover {
            color: var(--pv-accent);
        }

/* ===== Auth Pages ===== */
.auth-pv {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.95) 0%, rgba(10, 58, 102, 0.95) 100%), url('https://images.pexels.com/photos/106399/pexels-photo-106399.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}

.auth-card {
    background: #fff;
    border-radius: var(--pv-radius-xl);
    box-shadow: var(--pv-shadow-lg);
    overflow: hidden;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.auth-visual {
    background: linear-gradient(135deg, var(--pv-primary) 0%, var(--pv-primary-dark) 100%);
    padding: 50px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .auth-visual::before {
        content: '';
        position: absolute;
        bottom: -80px;
        right: -80px;
        width: 280px;
        height: 280px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
        border-radius: 50%;
    }

    .auth-visual h2 {
        color: #fff;
        font-size: var(--fs-h2);
        margin-bottom: 16px;
    }

    .auth-visual p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 30px;
    }

    .auth-visual .auth-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .auth-visual .auth-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
        }

            .auth-visual .auth-features li i {
                width: 32px;
                height: 32px;
                background: rgba(255, 255, 255, 0.15);
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--pv-accent);
            }

.auth-form-side {
    padding: 50px 40px;
}

    .auth-form-side h3 {
        font-size: var(--fs-h2);
        margin-bottom: 8px;
    }

    .auth-form-side .auth-subtitle {
        color: var(--pv-text-light);
        margin-bottom: 30px;
        font-size: 0.95rem;
    }

.auth-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pv-text);
    margin-bottom: 6px;
}

.auth-form .form-control {
    border: 1.5px solid var(--pv-border);
    border-radius: var(--pv-radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all var(--pv-transition);
}

    .auth-form .form-control:focus {
        border-color: var(--pv-primary);
        box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
    }

.auth-form .input-group-text {
    background: transparent;
    border: 1.5px solid var(--pv-border);
    border-right: none;
    color: var(--pv-text-light);
    border-radius: var(--pv-radius-sm) 0 0 var(--pv-radius-sm);
}

.auth-form .input-group .form-control {
    border-left: none;
}

    .auth-form .input-group .form-control:focus {
        border-color: var(--pv-primary);
    }

.btn-google {
    background: #fff;
    border: 1.5px solid var(--pv-border);
    color: var(--pv-text);
    padding: 12px;
    border-radius: var(--pv-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--pv-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

    .btn-google:hover {
        background: #F8FAFC;
        border-color: var(--pv-text-muted);
    }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0;
    color: var(--pv-text-muted);
    font-size: 0.85rem;
}

    .auth-divider::before,
    .auth-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--pv-border);
    }

.auth-sep {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0;
    color: var(--pv-text-muted);
    font-size: 0.85rem;
}

    .auth-sep::before,
    .auth-sep::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--pv-border);
    }

/* ===== Page Header ===== */
.page-header-pv {
    background: linear-gradient(135deg, var(--pv-primary) 0%, var(--pv-primary-dark) 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

    .page-header-pv::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

    .page-header-pv h1 {
        color: #fff;
        font-size: var(--fs-h1);
        margin-bottom: 8px;
    }

    .page-header-pv .breadcrumb {
        margin: 0;
    }

    .page-header-pv .breadcrumb-item a {
        color: rgba(255, 255, 255, 0.7);
    }

    .page-header-pv .breadcrumb-item.active {
        color: #fff;
    }

    .page-header-pv .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.4);
    }

/* ===== Filters Sidebar ===== */
.filter-sidebar {
    background: #fff;
    border-radius: var(--pv-radius-lg);
    padding: 24px;
    box-shadow: var(--pv-shadow);
    border: 1px solid var(--pv-border);
    position: sticky;
    top: 100px;
}

    .filter-sidebar h5 {
        font-size: 1.05rem;
        margin-bottom: 20px;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--pv-border);
    }

.filter-group {
    margin-bottom: 24px;
}

    .filter-group h6 {
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--pv-text-light);
        margin-bottom: 12px;
    }

    .filter-group .form-check {
        margin-bottom: 8px;
    }

    .filter-group .form-check-label {
        font-size: 0.9rem;
        color: var(--pv-text);
        cursor: pointer;
    }

    .filter-group .form-check-input:checked {
        background-color: var(--pv-primary);
        border-color: var(--pv-primary);
    }

.range-value {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--pv-text-light);
    margin-top: 8px;
}

.form-range::-webkit-slider-thumb {
    background: var(--pv-primary);
}

.form-range::-moz-range-thumb {
    background: var(--pv-primary);
}

/* ===== Property Details ===== */
.gallery-main {
    border-radius: var(--pv-radius-lg);
    overflow: hidden;
    box-shadow: var(--pv-shadow);
    aspect-ratio: 16 / 11;
    max-height: 420px;
    position: relative;
}

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

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.gallery-thumb {
    border-radius: var(--pv-radius-sm);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    max-height: 90px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--pv-transition);
}

    .gallery-thumb:hover,
    .gallery-thumb.active {
        border-color: var(--pv-accent);
    }

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

.detail-card {
    background: #fff;
    border-radius: var(--pv-radius-lg);
    padding: 30px;
    box-shadow: var(--pv-shadow);
    border: 1px solid var(--pv-border);
}

.detail-price {
    font-size: var(--fs-h1);
    font-weight: 700;
    color: var(--pv-primary);
}

    .detail-price .price-unit {
        font-size: 1rem;
        font-weight: 500;
        color: var(--pv-text-light);
    }

.detail-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 20px 0;
}

.detail-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--pv-bg);
    border-radius: var(--pv-radius-sm);
}

    .detail-feature i {
        font-size: 1.3rem;
        color: var(--pv-primary);
    }

    .detail-feature div {
        font-size: 0.88rem;
    }

    .detail-feature small {
        color: var(--pv-text-light);
        display: block;
    }

.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pv-primary-50);
    color: var(--pv-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 4px;
}

.dealer-card {
    background: #fff;
    border-radius: var(--pv-radius-lg);
    padding: 24px;
    box-shadow: var(--pv-shadow);
    border: 1px solid var(--pv-border);
    text-align: center;
}

.dealer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    border: 3px solid var(--pv-primary-50);
}

.dealer-card h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.dealer-card .dealer-role {
    color: var(--pv-accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.dealer-contact {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

    .dealer-contact .btn {
        flex: 1;
        padding: 10px;
        font-size: 0.85rem;
    }

/* ===== Map & Distance ===== */
.map-placeholder {
    background: linear-gradient(135deg, #E8F1FA 0%, #D1E3F5 100%);
    border-radius: var(--pv-radius-lg);
    height: clamp(200px, 30vw, 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid var(--pv-border);
    position: relative;
    overflow: hidden;
}

    .map-placeholder i {
        font-size: 2.1rem;
        color: var(--pv-primary);
        margin-bottom: 12px;
    }

    .map-placeholder p {
        color: var(--pv-text-light);
        font-size: 0.9rem;
    }

.map-pin {
    position: absolute;
    width: 36px;
    height: 36px;
    background: var(--pv-accent);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

    .map-pin i {
        transform: rotate(45deg);
        color: #fff;
        font-size: 1rem;
    }

    .map-pin.user {
        background: var(--pv-primary);
    }

.distance-card {
    background: linear-gradient(135deg, var(--pv-primary) 0%, var(--pv-primary-dark) 100%);
    border-radius: var(--pv-radius-lg);
    padding: 24px;
    color: #fff;
    text-align: center;
}

    .distance-card .distance-icon {
        width: 56px;
        height: 56px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .distance-card .distance-value {
        font-size: var(--fs-h1);
        font-weight: 700;
        color: var(--pv-accent);
    }

    .distance-card .distance-label {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
    }

    .distance-card .distance-time {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.9);
    }

        .distance-card .distance-time strong {
            color: #fff;
        }

/* ===== Book Visit ===== */
.visit-card {
    background: #fff;
    border-radius: var(--pv-radius-lg);
    padding: 30px;
    box-shadow: var(--pv-shadow);
    border: 1px solid var(--pv-border);
}

.visit-property-summary {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--pv-border);
    margin-bottom: 24px;
}

    .visit-property-summary img {
        width: 100px;
        height: 80px;
        border-radius: var(--pv-radius-sm);
        object-fit: cover;
    }

    .visit-property-summary h6 {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .visit-property-summary small {
        color: var(--pv-text-light);
    }

    .visit-property-summary .price {
        color: var(--pv-primary);
        font-weight: 700;
        font-size: 1.1rem;
    }

.date-slot {
    padding: 14px 10px;
    border: 2px solid var(--pv-border);
    border-radius: var(--pv-radius-sm);
    text-align: center;
    cursor: pointer;
    transition: all var(--pv-transition);
    background: #fff;
}

    .date-slot:hover {
        border-color: var(--pv-primary-light);
    }

    .date-slot.selected {
        border-color: var(--pv-primary);
        background: var(--pv-primary-50);
    }

    .date-slot .day-name {
        font-size: 0.75rem;
        color: var(--pv-text-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .date-slot .day-number {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--pv-text);
    }

    .date-slot .day-month {
        font-size: 0.75rem;
        color: var(--pv-text-light);
    }

    .date-slot.selected .day-number {
        color: var(--pv-primary);
    }

.time-slot {
    padding: 12px;
    border: 2px solid var(--pv-border);
    border-radius: var(--pv-radius-sm);
    text-align: center;
    cursor: pointer;
    transition: all var(--pv-transition);
    font-weight: 600;
    font-size: 0.9rem;
    background: #fff;
}

    .time-slot:hover {
        border-color: var(--pv-primary-light);
    }

    .time-slot.selected {
        border-color: var(--pv-accent);
        background: var(--pv-accent);
        color: #fff;
    }

    .time-slot.disabled {
        opacity: 0.4;
        cursor: not-allowed;
        text-decoration: line-through;
    }

.booking-summary {
    background: var(--pv-bg);
    border-radius: var(--pv-radius);
    padding: 24px;
}

    .booking-summary .summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
        font-size: 0.92rem;
    }

        .booking-summary .summary-row span:first-child {
            color: var(--pv-text-light);
        }

        .booking-summary .summary-row span:last-child {
            font-weight: 600;
            color: var(--pv-text);
        }

    .booking-summary .summary-total {
        border-top: 2px dashed var(--pv-border);
        margin-top: 16px;
        padding-top: 16px;
        font-size: 1.2rem;
        font-weight: 700;
    }

        .booking-summary .summary-total span:last-child {
            color: var(--pv-primary);
        }

/* ===== My Bookings ===== */
.booking-item {
    background: #fff;
    border-radius: var(--pv-radius-lg);
    padding: 24px;
    box-shadow: var(--pv-shadow);
    border: 1px solid var(--pv-border);
    transition: all var(--pv-transition);
}

    .booking-item:hover {
        box-shadow: var(--pv-shadow-md);
    }

    .booking-item .booking-img {
        width: 100%;
        height: 140px;
        border-radius: var(--pv-radius);
        object-fit: cover;
    }

.booking-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

    .booking-status.pending {
        background: #FEF3C7;
        color: #92400E;
    }

    .booking-status.accepted {
        background: #D1FAE5;
        color: #065F46;
    }

    .booking-status.rejected {
        background: #FEE2E2;
        color: #991B1B;
    }

    .booking-status.completed {
        background: #DBEAFE;
        color: #1E40AF;
    }

.booking-tabs .nav-link {
    color: var(--pv-text-light);
    font-weight: 600;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all var(--pv-transition);
}

    .booking-tabs .nav-link.active {
        background: var(--pv-primary);
        color: #fff;
    }

    .booking-tabs .nav-link:not(.active):hover {
        background: var(--pv-primary-50);
        color: var(--pv-primary);
    }

/* ===== Profile ===== */
.profile-sidebar {
    background: #fff;
    border-radius: var(--pv-radius-lg);
    padding: 30px;
    box-shadow: var(--pv-shadow);
    border: 1px solid var(--pv-border);
    text-align: center;
    position: sticky;
    top: 100px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 4px solid var(--pv-primary-50);
}

.profile-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-email {
    color: var(--pv-text-light);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.profile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

    .profile-menu li {
        margin-bottom: 4px;
    }

    .profile-menu a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border-radius: var(--pv-radius-sm);
        color: var(--pv-text);
        font-size: 0.92rem;
        font-weight: 500;
        transition: all var(--pv-transition);
    }

        .profile-menu a:hover,
        .profile-menu a.active {
            background: var(--pv-primary-50);
            color: var(--pv-primary);
        }

        .profile-menu a i {
            font-size: 1.1rem;
            width: 20px;
        }

.profile-content {
    background: #fff;
    border-radius: var(--pv-radius-lg);
    padding: 30px;
    box-shadow: var(--pv-shadow);
    border: 1px solid var(--pv-border);
}

    .profile-content h4 {
        font-size: 1.25rem;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--pv-border);
    }

/* ===== About Page ===== */
.about-hero-img {
    border-radius: var(--pv-radius-xl);
    overflow: hidden;
    box-shadow: var(--pv-shadow-lg);
}

    .about-hero-img img {
        width: 100%;
        height: 380px;
        object-fit: cover;
    }

.stat-counter-card {
    background: #fff;
    border-radius: var(--pv-radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--pv-shadow);
    border: 1px solid var(--pv-border);
    transition: all var(--pv-transition);
}

    .stat-counter-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--pv-shadow-md);
    }

    .stat-counter-card .stat-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .stat-counter-card .stat-value {
        font-size: var(--fs-h1);
        font-weight: 700;
        color: var(--pv-primary);
    }

    .stat-counter-card .stat-label {
        color: var(--pv-text-light);
        font-size: 0.88rem;
    }

.value-card {
    background: #fff;
    border-radius: var(--pv-radius-lg);
    padding: 30px;
    box-shadow: var(--pv-shadow);
    border: 1px solid var(--pv-border);
    height: 100%;
    transition: all var(--pv-transition);
}

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

    .value-card .value-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

/* ===== Contact Page ===== */
.contact-info-card {
    background: #fff;
    border-radius: var(--pv-radius-lg);
    padding: 30px;
    box-shadow: var(--pv-shadow);
    border: 1px solid var(--pv-border);
    height: 100%;
    text-align: center;
    transition: all var(--pv-transition);
}

    .contact-info-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--pv-shadow-md);
    }

    .contact-info-card .contact-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

.contact-form-card {
    background: #fff;
    border-radius: var(--pv-radius-lg);
    padding: 40px;
    box-shadow: var(--pv-shadow-lg);
    border: 1px solid var(--pv-border);
}

.contact-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pv-text);
    margin-bottom: 6px;
}

.contact-form .form-control {
    border: 1.5px solid var(--pv-border);
    border-radius: var(--pv-radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all var(--pv-transition);
}

    .contact-form .form-control:focus {
        border-color: var(--pv-primary);
        box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
    }

/* ===== Toast ===== */
.pv-toast {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 9999;
    min-width: 320px;
    padding: 16px 20px;
    border-radius: var(--pv-radius);
    box-shadow: var(--pv-shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .pv-toast.show {
        transform: translateX(0);
        opacity: 1;
    }

    .pv-toast.success {
        background: #ECFDF5;
        border: 1px solid #A7F3D0;
        color: #065F46;
    }

    .pv-toast.error {
        background: #FEF2F2;
        border: 1px solid #FECACA;
        color: #991B1B;
    }

    .pv-toast.info {
        background: #EFF6FF;
        border: 1px solid #BFDBFE;
        color: #1E40AF;
    }

    .pv-toast i {
        font-size: 1.4rem;
    }

/* ===== Modal Enhancement ===== */
.modal-content-pv {
    border-radius: var(--pv-radius-xl);
    border: none;
    box-shadow: var(--pv-shadow-lg);
    overflow: hidden;
}

.modal-confirm-icon {
    width: 80px;
    height: 80px;
    background: #ECFDF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .modal-confirm-icon i {
        font-size: 2.5rem;
        color: var(--pv-success);
    }

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

    .empty-state i {
        font-size: 2.5rem;
        color: var(--pv-border);
        margin-bottom: 14px;
    }

    .empty-state h4 {
        margin-bottom: 8px;
    }

    .empty-state p {
        color: var(--pv-text-light);
        margin-bottom: 24px;
    }

/* ===== Scroll to top ===== */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--pv-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--pv-transition);
    border: none;
    box-shadow: var(--pv-shadow-md);
}

    .scroll-top.show {
        opacity: 1;
        transform: translateY(0);
    }

    .scroll-top:hover {
        background: var(--pv-primary-dark);
        transform: translateY(-3px);
    }

/* ===== Preloader ===== */
.preloader-pv {
    position: fixed;
    inset: 0;
    background: var(--pv-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

    .preloader-pv.hidden {
        opacity: 0;
        visibility: hidden;
    }

    .preloader-pv .loader {
        width: 50px;
        height: 50px;
        border: 4px solid var(--pv-primary-100);
        border-top-color: var(--pv-primary);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

/* ===============================
   Mobile Splash Screen
================================*/

.mobile-splash {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg,#0F4C81,#1C6BB3);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity .5s ease;
}

.splash-content {
    text-align: center;
    color: #fff;
}

/* Splash Icon */
/*.splash-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
}*/

    /*.splash-icon i {
        font-size: 42px;
        color: #ff6b35;*/ /* PV30 Accent Color */
    /*}*/
/*.splash-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.splash-content p {
    opacity: .9;
    font-size: 15px;
}*/
.splash-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

    .splash-brand i {
        color: #ff6b35;
        font-size: 42px;
    }

    .splash-brand span {
        font-size: 34px;
        font-weight: 700;
        color: #fff;
    }

.splash-badge {
    background: #ff6b35;
    color: #fff !important;
    font-size: 12px !important;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 600;
}
/*@media(min-width:992px) {

    .mobile-splash {
        display: none !important;
    }
}*/
/* ===================================
   Mobile Header
=================================== */

.mobile-auth {
    display: none;
}

.mobile-user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #F3F6FA;
    color: var(--pv-primary);
    font-size: 22px;
    transition: .3s;
}

    .mobile-user-icon:hover {
        background: var(--pv-primary);
        color: #fff;
    }
.mobile-bottom-nav {
    display: none;
}
.otp-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 15px;
}


.otp-box {
    width: 48px;
    height: 52px;
    border: 2px solid #ddd;
    border-radius: 12px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    outline: none;
    transition: .3s;
    flex: 1;
    max-width: 48px;
}

    .otp-box:focus {
        border-color: var(--pv-primary);
        box-shadow: 0 0 10px rgba(0,123,255,.2);
    }

#otpTimer {
    font-weight: 600;
    color: var(--pv-primary);
}

#resendOtp {
    font-size: 14px;
    text-decoration: none;
}

.security-card {
    padding: 35px;
    border-radius: 22px;
    background: var(--pv-card-bg);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.security-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    background: linear-gradient(135deg,#ff7b43,#ff5f5f);
    color: #fff;
    margin-bottom: 20px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-weight: 500;
}

    .security-item i {
        font-size: 18px;
    }