/* ============================================
   REAL ESTATE PROJECT - GLOBAL STYLES
   Single CSS file for all pages
   ============================================ */

/* ---------- CSS VARIABLES (ROOT) ---------- */
:root {
    /* Colors */
    --prop-primary: #2563EB;/*figma  */
    --prop-primary-hover: #1D4ED8;
    --prop-primary-dark:#1E3A8A;/*figma  */
    --prop-secondary: #64748B;
    --prop-success: #10B981;
    --prop-warning: #F59E0B;
    --prop-danger: #EF4444;
    --prop-white: #FFFFFF;/*figma  */
    --prop-white-100: #FBFBFB;/*figma  */
    --prop-black: #000000;/*figma  */
    --prop-gray-10:#ACACAC; /*figma  */
    --prop-gray-50: #F5F5F5;/*figma  */
    --prop-gray-100: #FAFAFA;/*figma  */
    --prop-gray-150:#EBEBEB;/*figma  */
    --prop-gray-200: #E0EAFF;/*figma  */
    --prop-gray-250: #C6C6C6;/*figma  */
    --prop-gray-300: #C7C7C7;/*figma  */
    --prop-gray-350:#D9D9D9;/*figma  */
    --prop-gray-400: #999999;/*figma  */
    --prop-gray-500: #64748B;
    --prop-gray-550:#6D6D6D;/*figma  */
    --prop-gray-600: #4E4E4E;/*figma  */
    --prop-gray-700: #3A3A3A;/*figma  */
    --prop-gray-800: #1A1A1A;/*figma  */
    --prop-gray-900: #262626;/*figma  */
    --prop-gray-950: #1F2937;/*figma  */
    /*  */
    /* Badge Colors */
    --prop-badge-verified-bg: #FFFFFF;/*figma  */
    --prop-badge-verified-text: #000000;/*figma  */
    --prop-badge-ready-bg: #4278FF;/*figma  */
    --prop-badge-ready-text: #FFFFFF;
    --prop-badge-video-bg: #FFFFFF;
    --prop-badge-video-text: #1E293B;
    --prop-badge-photo-bg: #FFFFFF;
    --prop-badge-photo-text: #1E293B;
    
    /* Typography */
    --prop-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --prop-font-size-xs: 0.75rem;      /* 12px */
    --prop-font-size-sm: 0.875rem;     /* 14px */
    --prop-font-size-base: 1rem;        /* 16px */
    --prop-font-size-lg: 1.125rem;      /* 18px */
    --prop-font-size-xl: 1.25rem;       /* 20px */
    --prop-font-size-2xl: 1.5rem;       /* 24px */
    --prop-font-size-3xl: 1.875rem;     /* 30px */
    --prop-font-size-4xl: 2.25rem;      /* 36px */
    
    --prop-font-weight-normal: 400;
    --prop-font-weight-medium: 500;
    --prop-font-weight-semibold: 600;
    --prop-font-weight-bold: 700;
    
    --prop-line-height-tight: 1.25;
    --prop-line-height-normal: 1.5;
    --prop-line-height-relaxed: 1.75;
    
    --prop-letter-spacing-tight: -0.025em;
    --prop-letter-spacing-normal: 0;
    --prop-letter-spacing-wide: 0.025em;
    
    /* Spacing */
    --prop-spacing-1: 0.25rem;   /* 4px */
    --prop-spacing-2: 0.5rem;    /* 8px */
    --prop-spacing-3: 0.75rem;  /* 12px */
    --prop-spacing-4: 1rem;      /* 16px */
    --prop-spacing-5: 1.25rem;   /* 20px */
    --prop-spacing-6: 1.5rem;    /* 24px */
    --prop-spacing-8: 2rem;      /* 32px */
    --prop-spacing-10: 2.5rem;   /* 40px */
    --prop-spacing-12: 3rem;     /* 48px */
    
    /* Border Radius */
    --prop-radius-sm: 0.25rem;   /* 4px */
    --prop-radius-md: 0.5rem;    /* 8px */
    --prop-radius-lg: 0.75rem;   /* 12px */
    --prop-radius-xl: 1rem;      /* 16px */
    --prop-radius-2xl: 1.25rem;  /* 20px */
    --prop-radius-full: 9999px;  /*Maximum possible rounding (pill/circle). similiar to 50% but some diff*/
    --prop-radius:50%;  /* Maximum possible rounding (oval/ellipse) */
  
    /* Shadows */
    --prop-shadow-sm: 0 0px 6px 0 rgba(0, 0, 0, 0.25);/*figma  */
    --prop-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --prop-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --prop-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --prop-shadow-focus: 0 0 0 3px rgba(37, 99, 235, 0.15);
    
    /* Transitions */
    --prop-transition-fast: 150ms ease-in-out;
    --prop-transition-normal: 300ms ease-in-out;
    --prop-transition-slow: 500ms ease-in-out;
}

/* ---------- GLOBAL RESET & BASE ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@media (min-width: 1400px) {
    .container {
        max-width: 1420px;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--prop-font-family);
    font-size: var(--prop-font-size-base);
    font-weight: var(--prop-font-weight-normal);
    line-height: var(--prop-line-height-normal);
    color: var(--prop-gray-800);
    background-color: var(--prop-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--prop-transition-fast);
}

img {
    max-width: 100%;
    /* height: auto; */
    display: block;
}

/* ---------- REUSABLE SHIMMER BUTTON EFFECT ---------- */
.prop-btn-shimmer {
    position: relative;
    overflow: hidden;
    transition: all var(--prop-transition-normal);
    cursor: pointer;
}

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

.prop-btn-shimmer:hover::before {
    left: 100%;
}

.prop-btn-shimmer:hover {
    transform: translateY(-2px);
    box-shadow: var(--prop-shadow-lg);
}

.prop-btn-shimmer:active {
    transform: translateY(0);
}

/* ---------- IMAGE WRAPPER (Never stretch/distort) ---------- */
.prop-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.prop-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.prop-cursor-pointer {
    cursor: pointer;
}

.prop-transition-all {
    transition: all var(--prop-transition-normal);
}

/* Focus states for accessibility */
.prop-search-input:focus,
.prop-navbar-btn-primary:focus,
.prop-navbar-btn-secondary:focus,
.prop-carousel-control:focus,
.prop-thumbnail-item:focus {
    outline: none;
}

/* Smooth hover for interactive elements */
.prop-interactive-hover {
    transition: all var(--prop-transition-fast);
}

.prop-interactive-hover:hover {
    transform: translateY(-1px);
}

/* ============================================
   NAVBAR SECTION Start
   ============================================ */

.prop-navbar {
    background-color: var(--prop-white);
    padding: var(--prop-spacing-1) 0;
    box-shadow: var(--prop-shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.prop-navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--prop-spacing-2);
}

.prop-navbar-brand-logo {
    width: 59px;
    height: 58px;
    object-fit: contain;
}
.prop-navbar-brand-logo-text {
    width: 96px;
    height: 36px;
    object-fit: contain;
}

.prop-navbar-brand-text {
    display: flex;
    flex-direction: column;
}

.prop-navbar-brand-title {
    font-size: var(--prop-font-size-lg);
    font-weight: var(--prop-font-weight-bold);
    color: var(--prop-gray-900);
    line-height: var(--prop-line-height-tight);
    letter-spacing: var(--prop-letter-spacing-tight);
}

.prop-navbar-brand-subtitle {
    font-size: var(--prop-font-size-xs);
    font-weight: var(--prop-font-weight-medium);
    color: var(--prop-gray-500);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.prop-navbar-nav {
    /* gap: var(--prop-spacing-4); */
}

.prop-navbar-nav .nav-link {
    font-size: var(--prop-font-size-lg);
    font-weight: var(--prop-font-weight-medium);
    color: var(--prop-gray-950);
    padding: var(--prop-spacing-2) 0;
    position: relative;
    transition: color var(--prop-transition-fast);
}

.prop-navbar-nav .nav-link:hover,
.prop-navbar-nav .nav-link:focus {
    color: var(--prop-primary);
}

.prop-navbar-nav .nav-link.active {
    color: var(--prop-primary);
    font-weight: var(--prop-font-weight-semibold);
}

/* Search Box */
.prop-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.prop-search-input {
    width: 271px;
    padding: var(--prop-spacing-2) var(--prop-spacing-4);
    padding-left: 2.2rem;
    border: 1px solid var(--prop-gray-250);
    border-radius: var(--prop-radius-full);
    font-size: var(--prop-font-size-base);
    color: var(--prop-gray-10);
    background-color: var(--prop-white-100);
    transition: all var(--prop-transition-normal);
    outline: none;
}

.prop-search-input::placeholder {
    color: var(--prop-gray-400);
}

.prop-search-input:focus {
    border-color: var(--prop-primary);
    box-shadow: var(--prop-shadow-focus);
    background-color: var(--prop-white);
}

.prop-search-icon {
    position: absolute;
    left: var(--prop-spacing-3);
    color: var(--prop-gray-250);
    font-size: var(--prop-font-size-xl);
    pointer-events: none;
    line-height: 1;
}

/* Navbar Buttons */
.prop-navbar-btn-primary {
    background-color: var(--prop-primary);
    color: var(--prop-white);
    border: none;
    padding: var(--prop-spacing-2) var(--prop-spacing-5);
    border-radius: var(--prop-radius-full);
    font-size: var(--prop-font-size-base);
    font-weight: var(--prop-font-weight-semibold);
    cursor: pointer;
    transition: all var(--prop-transition-normal);
}

.prop-navbar-btn-primary:hover {
    background-color: var(--prop-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--prop-shadow-md);
}

.prop-navbar-btn-secondary {
    width:153px;
    background-color: var(--prop-gray-150);
    color: var(--prop-black);
    border: none;
    padding: var(--prop-spacing-2) var(--prop-spacing-5);
    border-radius: var(--prop-radius-full);
    font-size: var(--prop-font-size-base);
    font-weight: var(--prop-font-weight-medium);
    cursor: pointer;
    transition: all var(--prop-transition-normal);
}

.prop-navbar-btn-secondary:hover {
    background-color: var(--prop-gray-200);
    color: var(--prop-gray-900);
}

/* Navbar Toggler */
.prop-navbar-toggler {
    border: none;
    padding: var(--prop-spacing-2);
    color: var(--prop-gray-700);
}

.prop-navbar-toggler:focus {
    box-shadow: none;
}
@media (max-width: 575.98px) {
        .prop-navbar-brand-title {
        font-size: var(--prop-font-size-base);
    }
    
    .prop-search-input {
        width: 100%;
    }
}
/* Extra large devices (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .prop-search-input {
        width: 220px;
    }
}

/* XXL devices (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .prop-search-input {
        width: 240px;
    }
}

/* NAVBAR SECTION End */

/* ============================================
   FOOTER SECTION start
   ============================================ */

.prop-footer {
    position: relative;
    background-color: var(--prop-primary);
    padding: 0 0 var(--prop-spacing-12);
    margin-top: 120px; /* space for the floating card to overlap */
}

/* Floating Newsletter Card */
.prop-newsletter-card {
    position: relative;
    top: -80px;
    margin: 0 auto var(--prop-spacing-4);
    width: 70%;
    background-color: var(--prop-white);
    border-radius: 20px;
    box-shadow: 0 4px 33px 0 rgba(0, 0, 0, 0.25);
    padding: var(--prop-spacing-10) var(--prop-spacing-8);
    text-align: center;
}

.prop-newsletter-heading {
    font-size: 2rem;
    font-weight: var(--prop-font-weight-semibold);
    color: var(--prop-gray-700);
    margin-bottom: var(--prop-spacing-6);
}

.prop-newsletter-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--prop-spacing-4);
    max-width: 800px;
    margin: 0 auto;
}

.prop-newsletter-input {
    flex: 1;
    border: none;
    border-bottom: 1px solid var(--prop-gray-300);
    border-radius: 0;
    padding: var(--prop-spacing-2) var(--prop-spacing-1);
    font-size: var(--prop-font-size-2xl);
    font-weight: var(--prop-font-weight-medium);
    color: var(--prop-gray-600);
    background: transparent;
    outline: none;
    transition: border-color var(--prop-transition-fast);
}

.prop-newsletter-input::placeholder {
    color: var(--prop-gray-400);
}

.prop-newsletter-input:focus {
    border-bottom-color: var(--prop-primary);
}

.prop-newsletter-btn {
    background-color: transparent;
    color: var(--prop-primary);
    border: 2px solid var(--prop-primary);
    padding: var(--prop-spacing-3) var(--prop-spacing-8);
    border-radius: 15px;
    font-size: var(--prop-font-size-xl);
    font-weight: var(--prop-font-weight-semibold);
    white-space: nowrap;
    transition: all var(--prop-transition-normal);
    box-shadow: 0 4px 19px 0 rgba(0, 0, 0, 0.25);
}

.prop-newsletter-btn:hover {
    background-color: var(--prop-primary);
    color: var(--prop-white);
    transform: scale(1.05);
}

/* Footer Links Grid */
.prop-footer-row {
    margin-top: calc(-1 * (80px - var(--prop-spacing-6))); /* pull grid up to sit right under the card */
    padding-top: var(--prop-spacing-4);
}

.prop-footer-heading {
    font-size: 1.75rem;
    font-weight: var(--prop-font-weight-medium);
    color: var(--prop-white);
    margin-bottom: var(--prop-spacing-4);
    white-space: nowrap;
}

.prop-footer-text {
    font-size: var(--prop-font-size-xl);
    font-weight: 400;
    color: var(--prop-white);
    line-height: 1.2;
    margin: 0;
}

.prop-footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--prop-spacing-1);
}

.prop-footer-links a {
    font-size: var(--prop-font-size-xl);
    font-weight: 400;
    color: var(--prop-white);
    transition: color var(--prop-transition-fast);
}

.prop-footer-links a:hover {
    color: var(--prop-white);
    text-decoration: underline;
}

.prop-footer-social {
    display: flex;
    flex-direction: column;
    gap: var(--prop-spacing-3);
}

.prop-footer-social a {
    display: flex;
    align-items: center;
    gap: var(--prop-spacing-2);
    font-size: var(--prop-font-size-xl);
    color: var(--prop-white);
    transition: all var(--prop-transition-fast);
}

.prop-footer-social a:hover {
    color: var(--prop-white);
    transform: translateX(3px);
}

.prop-footer-social-icon {
    width: 37px;
    height: 37px;
    flex-shrink: 0;
    transition: background-color var(--prop-transition-fast);
}
.prop-footer-social-icon img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.prop-footer-social a:hover .prop-footer-social-icon {
    background-color: var(--prop-white);
    color: var(--prop-primary);
}

/* Find Us Badges */
.prop-footer-badges {
    display: flex;
    flex-direction: column;
    gap: var(--prop-spacing-3);
}

.prop-footer-badge-link {
    display: inline-block;
    width: fit-content;
    transition: transform var(--prop-transition-fast);
}

.prop-footer-badge-link:hover {
    transform: translateY(-2px);
}

.prop-footer-badge-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* ============================================
   RESPONSIVE: FOOTER
   ============================================ */

@media (min-width: 992px) and (max-width: 1199.98px) {
    .prop-newsletter-card {
        width: 80%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .prop-newsletter-card {
        width: 85%;
        padding: var(--prop-spacing-6);
    }

    .prop-newsletter-heading {
        font-size: var(--prop-font-size-xl);
    }

    .prop-footer-row {
        margin-top: 0;
    }

    .prop-footer-row .col-6 {
        margin-bottom: var(--prop-spacing-4);
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .prop-footer {
        margin-top: 100px;
    }

    .prop-newsletter-card {
        top: -60px;
        width: 90%;
        padding: var(--prop-spacing-5);
    }

    .prop-newsletter-heading {
        font-size: var(--prop-font-size-lg);
        margin-bottom: var(--prop-spacing-4);
    }

    .prop-newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: var(--prop-spacing-4);
    }

    .prop-newsletter-input {
        text-align: center;
    }

    .prop-newsletter-btn {
        width: 100%;
    }

    .prop-footer-row {
        margin-top: 0;
    }
}

@media (max-width: 575.98px) {
    .prop-footer {
        margin-top: 90px;
        padding-bottom: var(--prop-spacing-8);
    }

    .prop-newsletter-card {
        top: -50px;
        width: 95%;
        padding: var(--prop-spacing-4);
        border-radius: var(--prop-radius-lg);
    }

    .prop-newsletter-heading {
        font-size: var(--prop-font-size-base);
        margin-bottom: var(--prop-spacing-4);
    }

    .prop-newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: var(--prop-spacing-3);
    }

    .prop-newsletter-input {
        text-align: center;
        font-size: var(--prop-font-size-sm);
    }

    .prop-newsletter-btn {
        width: 100%;
    }

    .prop-footer-row {
        margin-top: 0;
        text-align: center;
    }

    .prop-footer-row > [class^="col-"] {
        margin-bottom: var(--prop-spacing-5);
    }

    .prop-footer-links,
    .prop-footer-social {
        align-items: center;
    }

    .prop-footer-social a {
        justify-content: center;
    }

    .prop-footer-badges {
        align-items: center;
    }
}
/* footer section end */

/************************************************************************************
   AUTH PAGES (LOGIN / REGISTER) — shared, unique "authp-" prefix
   Split-screen layout: left brand/illustration panel + right form panel
************************************************************************************/

.authp-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    background-color: var(--prop-white);
    overflow: hidden;
}

/* ---------- LEFT BRAND PANEL ---------- */
.authp-left {
    position: relative;
    flex: 0 0 44%;
    max-width: 44%;
    min-height: 100vh;
    background: linear-gradient(155deg, var(--prop-primary-dark) 0%, var(--prop-primary) 55%, #3b7bff 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: var(--prop-spacing-8) var(--prop-spacing-10);
}

/* Layered curved glass shapes (signature background) */
.authp-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.authp-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    animation: authpDrift 14s ease-in-out infinite;
}

.authp-shape-1 { width: 420px; height: 420px; top: -140px; left: -120px; background: rgba(255,255,255,0.10); animation-duration: 16s; }
.authp-shape-2 { width: 280px; height: 280px; bottom: -100px; left: 60px; background: rgba(255,255,255,0.07); animation-duration: 13s; animation-delay: -3s; }
.authp-shape-3 { width: 200px; height: 200px; top: 45%; right: -80px; background: rgba(255,255,255,0.09); animation-duration: 11s; animation-delay: -6s; }
.authp-shape-4 { width: 130px; height: 130px; bottom: 18%; right: 12%; background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.2); animation-duration: 9s; animation-delay: -1s; }

@keyframes authpDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(14px, -18px) scale(1.04); }
}

/* Floating sparkles / stars */
.authp-stars {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.authp-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.85);
    animation: authpTwinkle 3.4s ease-in-out infinite;
}

.authp-star-lg { width: 6px; height: 6px; box-shadow: 0 0 9px 3px rgba(255, 255, 255, 0.9); }

@keyframes authpTwinkle {
    0%, 100% { opacity: 0.15; transform: translateY(0) scale(0.8); }
    50% { opacity: 1; transform: translateY(-6px) scale(1.15); }
}

/* Vertical wave divider (desktop) */
.authp-wave-v {
    position: absolute;
    top: 0;
    right: -2px;
    height: 100%;
    width: 70px;
    z-index: 3;
}

/* Horizontal wave divider (mobile/tablet stacked layout) */
.authp-wave-h {
    display: none;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 46px;
    z-index: 3;
}

.authp-left-inner {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    color: var(--prop-white);
}

.authp-brand {
    display: flex;
    align-items: center;
    gap: var(--prop-spacing-2);
}

.authp-brand-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.authp-brand-logotext {
    width: 78px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.authp-content {
    max-width: 420px;
}

.authp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--prop-spacing-2);
    padding: var(--prop-spacing-1) var(--prop-spacing-4);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--prop-radius-full);
    font-size: var(--prop-font-size-xs);
    font-weight: var(--prop-font-weight-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: var(--prop-spacing-5);
}

.authp-heading {
    font-size: var(--prop-font-size-4xl);
    font-weight: var(--prop-font-weight-bold);
    line-height: 1.15;
    letter-spacing: var(--prop-letter-spacing-tight);
    margin-bottom: var(--prop-spacing-4);
}

.authp-subtext {
    font-size: var(--prop-font-size-base);
    font-weight: var(--prop-font-weight-normal);
    color: rgba(255, 255, 255, 0.85);
    line-height: var(--prop-line-height-relaxed);
    margin-bottom: var(--prop-spacing-8);
}

.authp-stats {
    display: flex;
    flex-direction: column;
    gap: var(--prop-spacing-3);
}

.authp-stat {
    display: flex;
    align-items: center;
    gap: var(--prop-spacing-4);
    padding: var(--prop-spacing-3) var(--prop-spacing-5);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--prop-radius-lg);
    backdrop-filter: blur(6px);
    transition: all var(--prop-transition-normal);
}

.authp-stat:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateX(4px);
}

.authp-stat i {
    font-size: var(--prop-font-size-xl);
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    border-radius: var(--prop-radius-md);
}

.authp-stat strong {
    display: block;
    font-size: var(--prop-font-size-lg);
    font-weight: var(--prop-font-weight-bold);
    line-height: 1.2;
}

.authp-stat span {
    font-size: var(--prop-font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

.authp-left-footer {
    font-size: var(--prop-font-size-xs);
    color: rgba(255, 255, 255, 0.65);
}

/* ---------- RIGHT FORM PANEL ---------- */
.authp-right {
    flex: 1 1 56%;
    max-width: 56%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--prop-white);
    padding: var(--prop-spacing-6);
    overflow-y: auto;
}

.authp-right-inner {
    width: 100%;
    max-width: 440px;
}

.authp-mobile-brand {
    display: none;
}

.authp-form-card {
    background-color: var(--prop-white);
    border-radius: var(--prop-radius-xl);
    padding: var(--prop-spacing-6) 0;
}

.authp-form-heading {
    font-size: var(--prop-font-size-3xl);
    font-weight: var(--prop-font-weight-bold);
    color: var(--prop-black);
    margin-bottom: var(--prop-spacing-1);
    line-height: var(--prop-line-height-tight);
}

.authp-form-subheading {
    font-size: var(--prop-font-size-base);
    font-weight: var(--prop-font-weight-medium);
    color: var(--prop-gray-550);
    margin-bottom: var(--prop-spacing-6);
}

.authp-form {
    display: flex;
    flex-direction: column;
    gap: var(--prop-spacing-4);
}

.authp-field {
    display: flex;
    flex-direction: column;
    gap: var(--prop-spacing-1);
}

.authp-label {
    font-size: var(--prop-font-size-sm);
    font-weight: var(--prop-font-weight-semibold);
    color: var(--prop-gray-800);
}

.authp-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1.5px solid var(--prop-gray-250);
    border-radius: var(--prop-radius-lg);
    background-color: var(--prop-white);
    transition: all var(--prop-transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.authp-input-wrap:focus-within {
    border-color: var(--prop-primary);
    box-shadow: var(--prop-shadow-focus);
}

.authp-input-wrap.authp-invalid {
    border-color: var(--prop-danger);
}

.authp-input-wrap.authp-valid {
    border-color: var(--prop-success);
}

.authp-input-icon {
    flex-shrink: 0;
    width: 46px;
    text-align: center;
    color: var(--prop-gray-400);
    font-size: var(--prop-font-size-lg);
    transition: color var(--prop-transition-fast);
}

.authp-input-wrap:focus-within .authp-input-icon {
    color: var(--prop-primary);
}

.authp-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: var(--prop-spacing-3) var(--prop-spacing-3) var(--prop-spacing-3) 0;
    font-size: var(--prop-font-size-base);
    font-weight: var(--prop-font-weight-medium);
    color: var(--prop-gray-800);
    min-width: 0;
}

.authp-input::placeholder {
    color: var(--prop-gray-400);
    font-weight: var(--prop-font-weight-normal);
}

.authp-toggle-pass {
    flex-shrink: 0;
    width: 44px;
    background: none;
    border: none;
    color: var(--prop-gray-400);
    font-size: var(--prop-font-size-lg);
    cursor: pointer;
    transition: color var(--prop-transition-fast);
}

.authp-toggle-pass:hover {
    color: var(--prop-primary);
}

.authp-phone-code {
    flex-shrink: 0;
    padding: 0 var(--prop-spacing-3) 0 var(--prop-spacing-4);
    margin-right: var(--prop-spacing-2);
    border-right: 1px solid var(--prop-gray-200);
    font-size: var(--prop-font-size-base);
    font-weight: var(--prop-font-weight-medium);
    color: var(--prop-gray-550);
}

.authp-error {
    display: none;
    font-size: var(--prop-font-size-xs);
    font-weight: var(--prop-font-weight-medium);
    color: var(--prop-danger);
    align-items: center;
    gap: 4px;
}

.authp-error.authp-show {
    display: flex;
}

.authp-hint {
    font-size: var(--prop-font-size-xs);
    color: var(--prop-gray-400);
}

/* Checkbox (terms) */
.authp-check-row {
    display: flex;
    align-items: flex-start;
    gap: var(--prop-spacing-2);
}

.authp-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--prop-primary);
    cursor: pointer;
}

.authp-check-label {
    font-size: var(--prop-font-size-sm);
    color: var(--prop-gray-550);
    line-height: var(--prop-line-height-normal);
    cursor: pointer;
}

.authp-check-label a {
    color: var(--prop-primary);
    font-weight: var(--prop-font-weight-semibold);
}

.authp-check-label a:hover {
    text-decoration: underline;
}

/* Row helpers */
.authp-row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--prop-spacing-2);
}

.authp-forgot-link {
    font-size: var(--prop-font-size-sm);
    font-weight: var(--prop-font-weight-semibold);
    color: var(--prop-primary);
}

.authp-forgot-link:hover {
    color: var(--prop-primary-hover);
    text-decoration: underline;
}

/* Submit button */
.authp-submit-btn {
    width: 100%;
    background-color: var(--prop-primary);
    color: var(--prop-white);
    border: none;
    padding: var(--prop-spacing-3) var(--prop-spacing-4);
    border-radius: var(--prop-radius-lg);
    font-size: var(--prop-font-size-base);
    font-weight: var(--prop-font-weight-semibold);
    margin-top: var(--prop-spacing-2);
}

.authp-submit-btn:hover {
    background-color: var(--prop-primary-hover);
}

.authp-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Divider */
.authp-divider {
    display: flex;
    align-items: center;
    gap: var(--prop-spacing-3);
    color: var(--prop-gray-400);
    font-size: var(--prop-font-size-xs);
    margin: var(--prop-spacing-2) 0;
}

.authp-divider::before,
.authp-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--prop-gray-200);
}

/* Footer switch link */
.authp-switch {
    text-align: center;
    font-size: var(--prop-font-size-sm);
    color: var(--prop-gray-550);
    margin-top: var(--prop-spacing-5);
}

.authp-switch a {
    color: var(--prop-primary);
    font-weight: var(--prop-font-weight-bold);
}

.authp-switch a:hover {
    color: var(--prop-primary-hover);
    text-decoration: underline;
}

/* Success toast (lightweight, no backend) */
.authp-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: var(--prop-spacing-3);
    background-color: var(--prop-white);
    border-left: 4px solid var(--prop-success);
    border-radius: var(--prop-radius-md);
    box-shadow: var(--prop-shadow-lg);
    padding: var(--prop-spacing-4) var(--prop-spacing-5);
    font-size: var(--prop-font-size-sm);
    font-weight: var(--prop-font-weight-medium);
    color: var(--prop-gray-800);
    transform: translateX(140%);
    transition: transform var(--prop-transition-normal);
}

.authp-toast.authp-toast-show {
    transform: translateX(0);
}

.authp-toast i {
    color: var(--prop-success);
    font-size: var(--prop-font-size-xl);
}

/* ============================================
   RESPONSIVE: AUTH PAGES
   ============================================ */

/* Large desktops */
@media (min-width: 1400px) {
    .authp-right-inner { max-width: 480px; }
    .authp-heading { font-size: 2.75rem; }
}

/* Tablet landscape / small desktop */
@media (max-width: 1199.98px) {
    .authp-left { flex-basis: 42%; max-width: 42%; padding: var(--prop-spacing-6) var(--prop-spacing-8); }
    .authp-right { flex-basis: 58%; max-width: 58%; }
    .authp-heading { font-size: var(--prop-font-size-3xl); }
}

/* Tablet portrait and below: stack the panels */
@media (max-width: 991.98px) {
    .authp-page {
        flex-direction: column;
        min-height: 100vh;
        overflow: visible;
    }

    .authp-left {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        min-height: auto;
        padding: var(--prop-spacing-6) var(--prop-spacing-6) var(--prop-spacing-10);
    }

    .authp-wave-v { display: none; }
    .authp-wave-h { display: block; }

    .authp-left-inner { gap: var(--prop-spacing-6); }

    .authp-content { max-width: 100%; }

    .authp-heading { font-size: var(--prop-font-size-2xl); }

    .authp-subtext { margin-bottom: var(--prop-spacing-5); font-size: var(--prop-font-size-sm); }

    .authp-stats { flex-direction: row; flex-wrap: wrap; }

    .authp-stat { flex: 1 1 auto; }

    .authp-stat span { display: none; }

    .authp-right {
        flex: 1 1 auto;
        max-width: 100%;
        min-height: auto;
        padding: var(--prop-spacing-8) var(--prop-spacing-5) var(--prop-spacing-10);
    }
}

@media (max-width: 767.98px) {
    .authp-left { padding: var(--prop-spacing-5) var(--prop-spacing-5) var(--prop-spacing-8); }
    .authp-heading { font-size: var(--prop-font-size-xl); }
    .authp-eyebrow { margin-bottom: var(--prop-spacing-3); }
    .authp-subtext { display: none; }
    .authp-stats { gap: var(--prop-spacing-2); }
    .authp-stat { padding: var(--prop-spacing-2) var(--prop-spacing-3); gap: var(--prop-spacing-2); }
    .authp-stat i { width: 32px; height: 32px; font-size: var(--prop-font-size-base); }
    .authp-stat strong { font-size: var(--prop-font-size-sm); }
    .authp-form-heading { font-size: var(--prop-font-size-2xl); }
    .authp-right { padding: var(--prop-spacing-6) var(--prop-spacing-4) var(--prop-spacing-8); }
}

@media (max-width: 575.98px) {
    .authp-left { padding: var(--prop-spacing-4) var(--prop-spacing-4) var(--prop-spacing-6); }
    .authp-brand-logo { width: 38px; height: 38px; }
    .authp-brand-logotext { width: 64px; height: 24px; }
    .authp-heading br { display: none; }
    .authp-stat span { display: none; }
    .authp-form-card { padding: var(--prop-spacing-4) 0; }
    .authp-form-heading { font-size: var(--prop-font-size-xl); }
    .authp-form-subheading { font-size: var(--prop-font-size-sm); margin-bottom: var(--prop-spacing-4); }
    .authp-toast { left: 16px; right: 16px; top: 16px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .authp-shape, .authp-star {
        animation: none !important;
    }
}

/* Fit registration (more fields) within a single desktop viewport without scroll */
@media (min-width: 992px) and (min-height: 700px) {
    .authp-right { align-items: center; }
}

@media (min-width: 992px) and (max-height: 780px) {
    .authp-form { gap: var(--prop-spacing-3); }
    .authp-form-card { padding: var(--prop-spacing-4) 0; }
    .authp-form-heading { font-size: var(--prop-font-size-2xl); margin-bottom: 2px; }
    .authp-form-subheading { margin-bottom: var(--prop-spacing-4); }
    .authp-input { padding-top: var(--prop-spacing-2); padding-bottom: var(--prop-spacing-2); }
}

/************************************************************************************/
/* AUTH PAGES END */
/************************************************************************************/

/************************************************************************************
   PROPERTY GALLERY PAGE — unique "prop-gallery-" / "prop-lightbox-" prefix
   Fixed top tab bar + independently scrolling image/video grid (left)
   + fixed, non-scrolling property summary card (right)
************************************************************************************/

:root {
    --prop-gallery-topbar-h: 66px;
    --prop-gallery-topbar-h-mobile: 56px;
}

html.prop-gallery-lock,
body.prop-gallery-lock {
    height: 100%;
    overflow: hidden;
}

.prop-gallery-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--prop-gray-50);
    overflow: hidden;
}

/* ---------- FIXED TOP TAB BAR ---------- */
.prop-gallery-topbar {
    flex: 0 0 var(--prop-gallery-topbar-h);
    height: var(--prop-gallery-topbar-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--prop-white);
    box-shadow: var(--prop-shadow-sm);
    padding: 0 var(--prop-spacing-6);
    position: relative;
    z-index: 1040;
}

.prop-gallery-tabs {
    display: flex;
    align-items: center;
    gap: var(--prop-spacing-8);
    border: none;
    height: 100%;
}

.prop-gallery-tab-link {
    display: inline-flex;
    align-items: center;
    gap: var(--prop-spacing-2);
    height: 100%;
    padding: 0 var(--prop-spacing-1);
    border: none;
    border-bottom: 3px solid transparent;
    background: none;
    font-size: var(--prop-font-size-lg);
    font-weight: var(--prop-font-weight-medium);
    color: var(--prop-gray-550);
    border-radius: 0;
    transition: all var(--prop-transition-fast);
}

.prop-gallery-tab-link:hover {
    color: var(--prop-gray-900);
}

.prop-gallery-tab-link.active {
    color: var(--prop-primary);
    font-weight: var(--prop-font-weight-semibold);
    border-bottom-color: var(--prop-primary);
    background: none;
}

.prop-gallery-close-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--prop-gray-250);
    border-radius: 50%;
    background-color: var(--prop-white);
    color: var(--prop-gray-700);
    font-size: var(--prop-font-size-lg);
    transition: all var(--prop-transition-fast);
}

.prop-gallery-close-btn:hover {
    background-color: var(--prop-danger);
    border-color: var(--prop-danger);
    color: var(--prop-white);
    transform: rotate(90deg);
}

/* ---------- BODY: LEFT SCROLLING GALLERY + RIGHT FIXED DETAILS ---------- */
.prop-gallery-body {
    flex: 1 1 auto;
    display: flex;
    min-height: 0; /* required so children can scroll inside a flex column parent */
}

.prop-gallery-left {
    flex: 1 1 72%;
    max-width: 72%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: var(--prop-spacing-6);
    scrollbar-width: thin;
    scrollbar-color: var(--prop-gray-300) transparent;
}

.prop-gallery-left::-webkit-scrollbar {
    width: 8px;
}

.prop-gallery-left::-webkit-scrollbar-thumb {
    background-color: var(--prop-gray-300);
    border-radius: var(--prop-radius-full);
}

.prop-gallery-left::-webkit-scrollbar-track {
    background: transparent;
}

/* Tab panes stack normally; only the active one paints */
.prop-gallery-panes .tab-pane {
    outline: none;
}

.prop-gallery-row {
    margin-bottom: var(--prop-spacing-4);
}

.prop-gallery-row:last-child {
    margin-bottom: 0;
}

/* ---------- GALLERY ITEM (image or video thumbnail) ---------- */
.prop-gallery-item {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--prop-radius-lg);
    cursor: pointer;
    background-color: var(--prop-gray-150);
    box-shadow: var(--prop-shadow-sm);
}

.prop-gallery-item-tall {
    aspect-ratio: 3 / 4;
}

.prop-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform var(--prop-transition-slow), filter var(--prop-transition-normal);
}

.prop-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background var(--prop-transition-normal);
    pointer-events: none;
}

.prop-gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.08);
}

.prop-gallery-item:hover img {
    transform: scale(1.08);
}

.prop-gallery-item:focus-visible {
    outline: 3px solid var(--prop-primary);
    outline-offset: 2px;
}

/* Video thumbnail play icon overlay */
.prop-video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    color: var(--prop-primary);
    border-radius: 50%;
    font-size: 1.6rem;
    box-shadow: var(--prop-shadow-md);
    transition: all var(--prop-transition-normal);
    z-index: 2;
}

.prop-gallery-item:hover .prop-video-play-icon {
    background-color: var(--prop-primary);
    color: var(--prop-white);
    transform: translate(-50%, -50%) scale(1.1);
}

.prop-video-duration-badge {
    position: absolute;
    bottom: var(--prop-spacing-2);
    right: var(--prop-spacing-2);
    background: rgba(0, 0, 0, 0.65);
    color: var(--prop-white);
    font-size: var(--prop-font-size-xs);
    font-weight: var(--prop-font-weight-medium);
    padding: 2px var(--prop-spacing-2);
    border-radius: var(--prop-radius-sm);
    z-index: 2;
}

/* "+N more" overlay on last visible thumbnail, optional use */
.prop-gallery-more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    color: var(--prop-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--prop-font-size-2xl);
    font-weight: var(--prop-font-weight-semibold);
    z-index: 2;
}

/* ---------- RIGHT: FIXED PROPERTY DETAILS ---------- */
.prop-gallery-right {
    flex: 0 0 28%;
    max-width: 28%;
    height: 100%;
    overflow: hidden;
    background-color: var(--prop-white);
    border-left: 1px solid var(--prop-gray-150);
    display: flex;
    align-items: flex-start;
}

.prop-gallery-detail-card {
    width: 100%;
    padding: var(--prop-spacing-8) var(--prop-spacing-6);
}

.prop-gallery-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--prop-spacing-1) var(--prop-spacing-4);
    background-color: var(--prop-gray-200);
    color: var(--prop-primary-dark);
    border: 1px solid var(--prop-primary-dark);
    font-size: var(--prop-font-size-sm);
    font-weight: var(--prop-font-weight-medium);
    border-radius: var(--prop-radius-full);
    margin-bottom: var(--prop-spacing-4);
}

.prop-gallery-price {
    font-size: var(--prop-font-size-3xl);
    font-weight: var(--prop-font-weight-bold);
    color: var(--prop-gray-900);
    line-height: var(--prop-line-height-tight);
    margin-bottom: var(--prop-spacing-2);
}

.prop-gallery-title {
    font-size: var(--prop-font-size-lg);
    font-weight: var(--prop-font-weight-semibold);
    color: var(--prop-gray-800);
    margin-bottom: var(--prop-spacing-3);
    line-height: var(--prop-line-height-tight);
}

.prop-gallery-address {
    display: flex;
    align-items: center;
    gap: var(--prop-spacing-2);
    font-size: var(--prop-font-size-base);
    font-weight: var(--prop-font-weight-medium);
    color: var(--prop-gray-550);
    margin-bottom: var(--prop-spacing-5);
}

.prop-gallery-address i {
    color: var(--prop-primary);
    font-size: var(--prop-font-size-lg);
}

.prop-gallery-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--prop-spacing-4);
    padding-bottom: var(--prop-spacing-5);
    margin-bottom: var(--prop-spacing-5);
    border-bottom: 1px solid var(--prop-gray-150);
}

.prop-gallery-feature-item {
    display: flex;
    align-items: center;
    gap: var(--prop-spacing-2);
    font-size: var(--prop-font-size-base);
    font-weight: var(--prop-font-weight-medium);
    color: var(--prop-gray-700);
}

.prop-gallery-feature-item i {
    color: var(--prop-primary);
    font-size: var(--prop-font-size-lg);
}

.prop-gallery-btn-outline {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--prop-spacing-2);
    background-color: transparent;
    color: var(--prop-gray-800);
    border: 1.5px solid var(--prop-gray-300);
    padding: var(--prop-spacing-3) var(--prop-spacing-4);
    border-radius: var(--prop-radius-lg);
    font-size: var(--prop-font-size-base);
    font-weight: var(--prop-font-weight-semibold);
    margin-bottom: var(--prop-spacing-3);
    transition: all var(--prop-transition-normal);
}

.prop-gallery-btn-outline:hover {
    border-color: var(--prop-primary);
    color: var(--prop-primary);
    background-color: rgba(37, 99, 235, 0.04);
}

.prop-gallery-btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--prop-spacing-2);
    background-color: var(--prop-primary);
    color: var(--prop-white);
    border: none;
    padding: var(--prop-spacing-3) var(--prop-spacing-4);
    border-radius: var(--prop-radius-lg);
    font-size: var(--prop-font-size-base);
    font-weight: var(--prop-font-weight-semibold);
    transition: all var(--prop-transition-normal);
}

.prop-gallery-btn-primary:hover {
    background-color: var(--prop-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--prop-shadow-md);
}

/* ============================================
   LIGHTBOX — GLightbox theme overrides
   (GLightbox builds its own DOM at runtime; these rules
   target its documented classes to match the site theme.
   No "prop-" prefix here since we don't own these class
   names — verify against the rendered DOM if the library
   version changes its markup.)
   ============================================ */

.glightbox-clean .gclose,
.glightbox-clean .gprev,
.glightbox-clean .gnext {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--prop-gray-400) !important;
    color: var(--prop-gray-800) !important;
    border-radius: 50%;
    box-shadow: var(--prop-shadow-md);
    opacity: 1;
    transition: all var(--prop-transition-fast);
}

.glightbox-clean .gclose svg,
.glightbox-clean .gprev svg,
.glightbox-clean .gnext svg {
    fill: currentColor;
    width: 18px;
    height: 18px;
}

.glightbox-clean .gclose:hover {
    background-color: var(--prop-danger) !important;
    color: var(--prop-white) !important;
    transform: rotate(90deg);
}

.glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover {
    background-color: var(--prop-primary) !important;
    color: var(--prop-white) !important;
}

.gslide-description.description-left,
.gslide-description.description-bottom {
    background: transparent;
}

.gdesc-inner .gslide-title {
    color: var(--prop-white);
    font-family: var(--prop-font-family);
    font-size: var(--prop-font-size-base);
    font-weight: var(--prop-font-weight-medium);
}

.gcounter {
    font-family: var(--prop-font-family);
    background-color: rgba(20, 20, 24, 0.85);
    padding: var(--prop-spacing-1) var(--prop-spacing-3);
    border-radius: var(--prop-radius-full);
}

.goverlay {
    background: rgba(10, 10, 12, 0.96);
}

/* ============================================
   RESPONSIVE: GALLERY PAGE
   ============================================ */

@media (max-width: 1199.98px) {
    .prop-gallery-right { flex-basis: 32%; max-width: 32%; }
    .prop-gallery-left { flex-basis: 68%; max-width: 68%; }
}

@media (max-width: 991.98px) {
    .prop-gallery-page { height: auto; min-height: 100vh; overflow: visible; }

    html.prop-gallery-lock, body.prop-gallery-lock { height: auto; overflow: visible; }

    .prop-gallery-topbar {
        flex: 0 0 var(--prop-gallery-topbar-h-mobile);
        height: var(--prop-gallery-topbar-h-mobile);
        padding: 0 var(--prop-spacing-4);
        position: sticky;
        top: 0;
    }

    .prop-gallery-tabs { gap: var(--prop-spacing-5); }
    .prop-gallery-tab-link { font-size: var(--prop-font-size-base); }

    .prop-gallery-body {
        flex-direction: column;
        height: auto;
    }

    .prop-gallery-left {
        max-width: 100%;
        flex-basis: auto;
        height: auto;
        overflow: visible;
        padding: var(--prop-spacing-4);
    }

    .prop-gallery-right {
        max-width: 100%;
        flex-basis: auto;
        height: auto;
        overflow: visible;
        border-left: none;
        border-top: 1px solid var(--prop-gray-150);
    }

    .prop-gallery-detail-card { padding: var(--prop-spacing-6) var(--prop-spacing-4); }
}

@media (max-width: 767.98px) {
    .prop-gallery-tabs { gap: var(--prop-spacing-4); }
    .prop-gallery-close-btn { width: 34px; height: 34px; font-size: var(--prop-font-size-base); }
    .prop-gallery-row .row { --bs-gutter-x: 0.5rem; }
    .prop-gallery-price { font-size: var(--prop-font-size-2xl); }

    .glightbox-clean .gclose,
    .glightbox-clean .gprev,
    .glightbox-clean .gnext {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 575.98px) {
    .prop-gallery-tab-link span { display: none; }
    .prop-gallery-tab-link i { font-size: var(--prop-font-size-lg); }
    .prop-video-play-icon { width: 42px; height: 42px; font-size: 1.2rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .prop-gallery-item img,
    .prop-gallery-close-btn {
        transition: none !important;
    }
}

/************************************************************************************/
/* PROPERTY GALLERY PAGE END */
/************************************************************************************/