/* === GLOBAL RESET & TYPOGRAPHY === */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --primary-yellow: #F4D03F;
            --dark-bg: #111827; 
            --light-bg: #F8FAFC;
            --text-dark: #1e293b;
            --text-light: #ffffff;
            --success-green: #22c55e;
            --danger-red: #ef4444;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.12);
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #fff;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, .nav-logo-text h2 { font-family: 'Montserrat', sans-serif; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 130px;
        }

        section, header, .footer-wrapper {
            scroll-margin-top: 130px;
        }

        img { max-width: 100%; }

        :focus-visible {
            outline: 3px solid var(--primary-yellow);
            outline-offset: 3px;
        }

        /* --- SCROLL REVEAL ANIMATIONS --- */
        .reveal-up {
            opacity: 0; transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .reveal-left {
            opacity: 0; transform: translateX(-40px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .reveal-right {
            opacity: 0; transform: translateX(40px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
            opacity: 1; transform: translate(0, 0);
        }

        /* === BUTTONS === */
        .btn-primary {
            background-color: var(--primary-yellow); color: var(--dark-bg);
            padding: 14px 34px; border-radius: 30px;
            font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem;
            display: inline-flex; align-items: center; gap: 10px;
            transition: all 0.3s ease; border: none; cursor: pointer;
            box-shadow: 0 4px 15px rgba(244, 208, 63, 0.2);
        }
        .btn-primary:hover { background-color: #e5c338; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4); }
        
        .btn-dark {
            background-color: var(--dark-bg); color: var(--text-light);
            padding: 12px 28px; border-radius: 10px;
            font-family: 'Montserrat', sans-serif; font-weight: 600;
            transition: 0.3s; border: none; cursor: pointer; text-align: center; display: block;
        }
        .btn-dark:hover { background-color: #000; color: var(--primary-yellow); }

        /* === NAVBAR / BRAND LOGO === */
        /* Logo/text spacing tightened to remove extra blank space beside logo. */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            min-height: 86px;
            padding: 12px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 28px;
            z-index: 1000;
            color: white;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .navbar .nav-logo {
            display: flex;
            align-items: center;
            flex: 0 1 auto;
            min-width: 0;
        }

        .brand-link {
            display: flex;
            align-items: center;
            gap: 8px;
            max-width: 540px;
            min-width: 0;
        }

        .brand-logo {
            width: 220px;
            max-height: 86px;
            object-fit: contain;
            flex: 0 0 auto;
            filter: drop-shadow(0 4px 12px rgba(0,0,0,.25));
        }

        .navbar .nav-logo-text {
            min-width: 0;
            margin-left: -22px;
        }

        .navbar .nav-logo-text h2 {
            margin: 0;
            font-weight: 900;
            letter-spacing: 0.3px;
            font-size: 1.35rem;
            line-height: 1.05;
            text-shadow: 0 2px 4px rgba(0,0,0,0.45);
            color: white;
            white-space: nowrap;
        }

        .navbar .nav-logo-text span {
            font-family: 'Roboto', sans-serif;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1.7px;
            color: var(--primary-yellow);
            display: block;
            margin-top: 5px;
            text-transform: uppercase;
            white-space: nowrap;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 34px;
            margin-left: auto;
        }
        .nav-links a { font-size: 1rem; font-weight: 700; transition: color 0.3s; color: white;}
        .nav-links a:hover { color: var(--primary-yellow); }
        
        /* User Profile Logic in Nav */
        .nav-actions { display: flex; align-items: center; gap: 20px; }
        .notification-bell { position: relative; color: white; font-size: 22px; transition: color 0.3s; }
        .notification-bell:hover { color: var(--primary-yellow); transform: scale(1.1); }
        .notification-dot { position: absolute; top: 0; right: -2px; width: 10px; height: 10px; background-color: #ef4444; border-radius: 50%; border: 2px solid var(--dark-bg); }
        
        .profile-dropdown-container { position: relative; }
        .profile-trigger {
            display: flex; align-items: center; gap: 10px; background: transparent;
            border: 1px solid rgba(255,255,255,0.2); cursor: pointer; padding: 6px 12px;
            border-radius: 40px; transition: all 0.2s ease; color: white;
        }
        .profile-trigger:hover { background: rgba(255,255,255,0.1); border-color: white; }
        .profile-info { text-align: right; }
        .profile-name { display: block; font-weight: 600; font-size: 0.9rem; font-family: 'Roboto', sans-serif;}
        .profile-role { display: block; font-size: 0.7rem; color: var(--primary-yellow); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;}
        .avatar-circle { background: var(--primary-yellow); color: var(--dark-bg); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1rem; }
        .avatar-circle.has-photo { background: transparent; padding: 0; overflow: hidden; border: 2px solid rgba(255,255,255,0.35); }
        .avatar-photo { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
        
        .profile-dropdown-menu {
            display: none; position: absolute; top: 120%; right: 0; background: white;
            min-width: 220px; border-radius: 12px; box-shadow: var(--shadow-lg);
            border: 1px solid #f1f5f9; overflow: hidden; z-index: 100;
        }
        .profile-dropdown-menu.active { display: block; animation: fadeIn 0.2s ease forwards; }
        .profile-dropdown-item {
            display: flex; align-items: center; gap: 12px; padding: 12px 20px;
            text-decoration: none; color: var(--text-dark); font-size: 0.95rem; font-weight: 500; transition: all 0.2s;
        }
        .profile-dropdown-item:hover { background: #f8fafc; color: var(--dark-bg); padding-left: 25px; }
        .profile-dropdown-item.logout-btn { color: #ef4444; border-top: 1px solid #f1f5f9; }
        .profile-dropdown-item.logout-btn:hover { background: #fef2f2; color: #dc2626; }

        /* === HERO SECTION WITH SLIDER === */
        .hero {
            height: 85vh;
            min-height: 620px;
            display: flex; flex-direction: column; justify-content: center; 
            padding: 0 5%; color: white; position: relative; overflow: hidden;
        }
        
        /* CSS Background Slideshow - smooth crossfade, no white/gray flash */
        .hero-slideshow {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            background:
                linear-gradient(rgba(15,23,42,0.72), rgba(15,23,42,0.86)),
                url('../login1.webp') center/cover no-repeat;
        }

        .hero-slideshow .slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            opacity: 0;
            transform: scale(1.04);
            will-change: opacity, transform;
            backface-visibility: hidden;
        }

        .hero-slideshow .slide::after {
            content: '';
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(15,23,42,0.68), rgba(15,23,42,0.86));
            pointer-events: none;
        }

        .hero-slideshow .slide:nth-child(1) {
            background-image: url('../login1.webp');
            animation: heroFadeOne 24s infinite ease-in-out;
        }

        .hero-slideshow .slide:nth-child(2) {
            background-image: url('../login2.webp');
            animation: heroFadeTwo 24s infinite ease-in-out;
        }

        .hero-slideshow .slide:nth-child(3) {
            background-image: url('../login3.webp');
            animation: heroFadeThree 24s infinite ease-in-out;
        }

        @keyframes heroFadeOne {
            0%, 28% {
                opacity: 1;
                transform: scale(1.04);
            }
            36%, 92% {
                opacity: 0;
                transform: scale(1.08);
            }
            100% {
                opacity: 1;
                transform: scale(1.04);
            }
        }

        @keyframes heroFadeTwo {
            0%, 28% {
                opacity: 0;
                transform: scale(1.04);
            }
            36%, 61% {
                opacity: 1;
                transform: scale(1.08);
            }
            69%, 100% {
                opacity: 0;
                transform: scale(1.04);
            }
        }

        @keyframes heroFadeThree {
            0%, 61% {
                opacity: 0;
                transform: scale(1.04);
            }
            69%, 92% {
                opacity: 1;
                transform: scale(1.08);
            }
            100% {
                opacity: 0;
                transform: scale(1.04);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-slideshow .slide {
                animation: none !important;
            }
            .hero-slideshow .slide:nth-child(1) {
                opacity: 1;
            }
        }

        .hero-content { max-width: 65%; z-index: 10; margin-top: 80px; }
        .hero h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; text-transform: uppercase; margin-bottom: 20px; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }
        .hero h1 span { font-style: italic; color: var(--primary-yellow); }
        .hero p { font-size: 1.1rem; margin-bottom: 24px; font-weight: 300; max-width: 85%; color: #cbd5e1; }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
            margin-top: 22px;
        }

        .btn-hero-outline {
            background: rgba(255,255,255,.08);
            color: #fff;
            border: 1px solid rgba(255,255,255,.24);
            box-shadow: none;
        }

        .btn-hero-outline:hover {
            background: #fff;
            color: var(--dark-bg);
        }

        /* Floating Search Box inside Hero - Premium Glassmorphism */
        .search-box {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            padding: 8px;
            border-radius: 60px;
            border: 1px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            max-width: 700px;
            box-shadow:
                0 12px 35px rgba(0,0,0,.28),
                inset 0 1px 0 rgba(255,255,255,.14);
        }

        .search-input-group {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0 18px;
            min-width: 0;
            border-right: 1px solid rgba(255,255,255,0.16);
        }

        .search-input-group i {
            color: var(--primary-yellow);
            font-size: 1.15rem;
            filter: drop-shadow(0 4px 10px rgba(244,208,63,.25));
            flex: 0 0 auto;
        }

        .search-input {
            width: 100%;
            border: none;
            outline: none;
            color: white;
            background: transparent;
            font-family: inherit;
            font-weight: 700;
            cursor: pointer;
        }

        .search-input option {
            color: var(--text-dark);
            background: white;
            font-weight: 600;
        }

        /* Tom Select searchable dropdown style */
        .hero-search .ts-wrapper.single {
            flex: 1;
            min-width: 0;
        }

        .hero-search .ts-wrapper.single .ts-control {
            min-height: 52px;
            padding: 0 38px 0 0;
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            color: #fff;
            font-size: .96rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .hero-search .ts-wrapper.single .ts-control input,
        .hero-search .ts-wrapper.single .ts-control .item,
        .hero-search .ts-wrapper.single .ts-control .ts-input {
            color: #fff !important;
            font-weight: 700;
        }

        .hero-search .ts-wrapper.single .ts-control input::placeholder {
            color: rgba(255,255,255,.78) !important;
            font-weight: 700;
        }

        .hero-search .ts-wrapper.single .ts-control::after {
            content: "\f078";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255,255,255,.86);
            font-size: .82rem;
            pointer-events: none;
        }

        /* Dropdown is parented to <body> (dropdownParent:'body' in index.js),
           so it is targeted by its own class instead of .hero-search .ts-dropdown. */
        .jej-hero-dropdown.ts-dropdown {
            margin-top: 14px;
            background: rgba(15,23,42,.94);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 18px;
            box-shadow: 0 24px 50px rgba(0,0,0,.38);
            overflow: hidden;
            color: #fff;
            z-index: 12000; /* above navbar + cards while open */
        }

        .jej-hero-dropdown.ts-dropdown .option {
            padding: 13px 16px;
            color: #e5e7eb;
            font-weight: 700;
            border-bottom: 1px solid rgba(255,255,255,.06);
            transition: .18s ease;
        }

        .jej-hero-dropdown.ts-dropdown .option::before {
            content: "\f3c5";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--primary-yellow);
            margin-right: 10px;
        }

        .jej-hero-dropdown.ts-dropdown .active,
        .jej-hero-dropdown.ts-dropdown .option:hover {
            background: rgba(244,208,63,.15);
            color: #fff;
        }

        .jej-hero-dropdown.ts-dropdown .no-results {
            padding: 14px 16px;
            color: #cbd5e1;
            font-weight: 600;
        }

        .btn-search {
            background: linear-gradient(135deg, var(--primary-yellow), #ffd84d);
            color: var(--dark-bg);
            border: none;
            padding: 15px 34px;
            border-radius: 50px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            font-size: .95rem;
            cursor: pointer;
            transition: .3s ease;
            box-shadow: 0 10px 24px rgba(244,208,63,.35);
            white-space: nowrap;
        }
        .btn-search:hover {
            background: linear-gradient(135deg, #ffe066, #f4d03f);
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 14px 30px rgba(244,208,63,.48);
        }

        /* === OVERLAPPING HERO CARDS === */
        .hero-cards {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
            padding: 0 5%; margin-top: -40px; position: relative; z-index: 20;
        }
        .h-card {
            height: 220px; border-radius: 20px; background-size: cover; background-position: center;
            padding: 32px; display: flex; flex-direction: column; justify-content: flex-end;
            color: white; box-shadow: 0 15px 35px rgba(0,0,0,0.25); transition: transform 0.3s ease;
        }
        .h-card:hover { transform: translateY(-8px); }
        .h-card:nth-child(1) { background-image: linear-gradient(to top, rgba(15,23,42,0.9), transparent), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3'); }
        .h-card:nth-child(2) { background: linear-gradient(135deg, #1e293b, #0f172a); justify-content: center; text-align: center;}
        .h-card:nth-child(3) { background-image: linear-gradient(to top, rgba(15,23,42,0.9), transparent), url('../right.png'); }
        
        .h-card h3 { font-size: 1.2rem; font-weight: 700; }
        .h-card-center h3 { font-size: 1.6rem; font-weight: 800; letter-spacing: 1px;}
        .h-card-center h3 span { color: var(--primary-yellow); }
        .h-card-center p { font-size: 0.85rem; color: #94a3b8; margin-top: 8px; font-weight: 400;}

        /* === GENERAL SECTION STYLES === */
        .section-padding { padding: 90px 5%; }
        .section-subtitle { color: #ca8a04; font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 10px; }
        .section-title { font-size: 2.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 40px; line-height: 1.2; }

        /* === FEATURES GRID === */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin-bottom: 60px;
            align-items: stretch;
        }
        .feature-box {
            background: var(--light-bg);
            padding: 35px 25px;
            border-radius: 16px;
            transition: 0.3s;
            border: 1px solid #e2e8f0;
            display: block;
            height: 100%;
            color: inherit;
            text-decoration: none;
            position: relative;
        }
        .feature-box:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: var(--primary-yellow);}
        .feature-icon { font-size: 2.2rem; margin-bottom: 20px; color: var(--dark-bg); }
        .feature-box h3 { margin-bottom: 10px; font-size: 1.1rem; }
        .feature-box p { font-size: 0.85rem; color: #475569; }

        .service-card {
            cursor: pointer;
            padding-bottom: 74px;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(244,208,63,.13), transparent 42%);
            opacity: 0;
            transition: .3s ease;
            pointer-events: none;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover .feature-icon {
            color: #ca8a04;
            transform: scale(1.05);
        }

        .service-card-cta {
            position: absolute;
            left: 25px;
            right: 25px;
            bottom: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 999px;
            background: #111827;
            color: var(--primary-yellow);
            font-family: 'Montserrat', sans-serif;
            font-size: .78rem;
            font-weight: 800;
            letter-spacing: .2px;
            transition: .25s ease;
        }

        .service-card:hover .service-card-cta {
            background: var(--primary-yellow);
            color: var(--dark-bg);
            transform: translateY(-2px);
        }

        .contact-form-area.service-selected {
            box-shadow: 0 0 0 4px rgba(244,208,63,.45), 0 25px 50px rgba(0,0,0,.20);
            transition: box-shadow .35s ease;
        }

        /* === EXCLUSIVE PROPERTIES (PHP LOOP SECTION) === */
        .properties-section {
            background-color: var(--dark-bg);
            color: white;
            text-align: center;
            position: relative;
            overflow: visible;
            scroll-margin-top: 170px;
            padding-top: 120px;
        }
        .properties-section .section-title { color: white; margin-bottom: 24px; }

        .property-filter-form {
            display: grid;
            grid-template-columns:
                minmax(220px, 1.35fr)
                repeat(4, minmax(105px, .62fr))
                minmax(105px, .58fr)
                minmax(120px, .65fr)
                minmax(135px, .72fr)
                minmax(105px, .58fr);
            gap: 10px;
            align-items: center;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.10);
            border-radius: 18px;
            padding: 14px;
            margin: 0 auto 34px auto;
            max-width: 1280px;
            box-shadow: 0 18px 40px rgba(0,0,0,.18);
            position: relative;
            z-index: 50;
        }

        .property-filter-note {
            max-width: 980px;
            margin: -16px auto 24px auto;
            color: #94a3b8;
            font-size: .88rem;
        }

        .property-filter-field {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
        }

        .property-filter-field label {
            color: #cbd5e1;
            font-size: .72rem;
            font-weight: 800;
            letter-spacing: .4px;
            text-transform: uppercase;
            text-align: left;
        }

        .property-filter-form select,
        .property-filter-form input {
            width: 100%;
            min-height: 48px;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,.14);
            background: #0f172a;
            color: #fff;
            padding: 0 14px;
            font-family: inherit;
            font-weight: 700;
            outline: none;
        }

        .property-filter-form option {
            color: var(--text-dark);
            background: #fff;
        }

        .property-filter-form .ts-wrapper {
            width: 100%;
        }

        .property-filter-form .ts-control {
            min-height: 48px;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,.14) !important;
            background: #0f172a !important;
            color: #fff !important;
            box-shadow: none !important;
            padding: 0 14px !important;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

        .property-filter-form .ts-control input,
        .property-filter-form .ts-control .item {
            color: #fff !important;
            font-weight: 700;
        }

        .property-filter-form .ts-dropdown {
            background: #0f172a;
            color: #fff;
            border: 1px solid rgba(255,255,255,.14);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 18px 40px rgba(0,0,0,.30);
            z-index: 99999 !important;
        }

        .property-filter-form .ts-dropdown-content {
            max-height: 230px;
            overflow-y: auto;
        }

        .property-filter-form .ts-dropdown .option {
            color: #e5e7eb;
            padding: 12px 14px;
            font-weight: 700;
        }

        .property-filter-form .ts-dropdown .active,
        .property-filter-form .ts-dropdown .option:hover {
            background: rgba(244,208,63,.15);
            color: #fff;
        }

        .btn-filter, .btn-clear-filter {
            min-height: 48px;
            border-radius: 12px;
            border: none;
            padding: 0 18px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            white-space: nowrap;
        }

        .btn-filter {
            background: var(--primary-yellow);
            color: var(--dark-bg);
        }

        .btn-clear-filter {
            background: transparent;
            color: #e2e8f0;
            border: 1px solid rgba(255,255,255,.18);
        }

        .btn-clear-filter:hover {
            color: var(--primary-yellow);
            border-color: var(--primary-yellow);
        }
        
        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            text-align: left;
            position: relative;
            z-index: 1;
        }
        .hidden-card { display: none !important; }

        .prop-card {
            background: #1e293b; border-radius: 16px; overflow: hidden; transition: all 0.3s ease; 
            box-shadow: 0 10px 25px rgba(0,0,0,0.2); display: flex; flex-direction: column;
            text-decoration: none; color: inherit; border: 1px solid rgba(255,255,255,0.05);
        }
        .prop-card:hover { transform: translateY(-6px); box-shadow: 0 15px 30px rgba(0,0,0,0.4); border-color: rgba(244, 208, 63, 0.3); }
        
        .prop-img-box { position: relative; height: 200px; overflow: hidden; }
        .prop-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
        .prop-card:hover .prop-img { transform: scale(1.08); }
        
        .prop-badge {
            position: absolute; top: 15px; left: 15px; padding: 5px 12px; border-radius: 6px;
            font-size: 0.7rem; font-weight: 800; letter-spacing: 0.5px; color: white; text-transform: uppercase;
        }
        .badge-AVAILABLE { background: var(--success-green); color: var(--dark-bg); }
        .badge-SOLD { background: var(--danger-red); }
        .badge-RESERVED { background: #f59e0b; }

        .prop-info { padding: 25px; display: flex; flex-direction: column; flex: 1; }
        .prop-loc { color: #94a3b8; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
        .prop-loc i { color: var(--primary-yellow); }
        .prop-title { font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: 12px; line-height: 1.3; font-family: 'Montserrat', sans-serif;}

        .prop-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 14px;
        }

        .prop-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 9px;
            border-radius: 999px;
            background: rgba(255,255,255,.06);
            color: #cbd5e1;
            font-size: .75rem;
            font-weight: 700;
        }

        .prop-chip i { color: var(--primary-yellow); }
        
        .prop-footer { margin-top: auto; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
        .prop-price { font-size: 1.15rem; font-weight: 800; color: var(--primary-yellow); font-family: 'Montserrat', sans-serif;}
        .prop-view { color: white; font-weight: 600; font-size: 0.85rem; display: flex; align-items: center; gap: 5px; }
        .prop-card:hover .prop-view { color: var(--primary-yellow); }

        /* === WHY CHOOSE / RESERVATION PROCESS === */
        .why-section {
            background: #f8fafc;
        }

        .why-grid, .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 18px;
        }

        .why-item, .process-step {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 18px;
            padding: 26px;
            box-shadow: 0 12px 28px rgba(15,23,42,.05);
        }

        .why-item i {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #111827;
            color: var(--primary-yellow);
            font-size: 1.2rem;
            margin-bottom: 16px;
        }

        .why-item h3, .process-step h3 {
            font-size: 1.05rem;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .why-item p, .process-step p {
            color: #475569;
            font-size: .9rem;
        }

        .process-section {
            background: #fff;
        }

        .step-number {
            width: 42px;
            height: 42px;
            border-radius: 999px;
            background: var(--primary-yellow);
            color: var(--dark-bg);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            margin-bottom: 16px;
        }

        /* === CONTACT OVERLAP & FOOTER (COLLISION FIXED) === */
        /* === CONTACT SECTION FIX ===
           Do not use negative margin here. The old -100px margin pulled the
           contact card upward and caused it to overlap the form/previous section. */
        .footer-wrapper {
            background-color: #020617;
            color: #fff;
            margin-top: 0;
            padding-top: 70px;
            scroll-margin-top: 130px;
        }

        .contact-overlap {
            position: relative;
            margin: 0 auto 70px auto;
            width: 90%;
            z-index: 10;
            background: linear-gradient(rgba(15,23,42,0.85), rgba(15,23,42,0.85)), url('https://images.unsplash.com/photo-1434626881859-194d67b2b86f?ixlib=rb-4.0.3') center/cover;
            border-radius: 24px;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            align-items: stretch;
            box-shadow: 0 25px 50px rgba(0,0,0,0.4);
            overflow: hidden;
        }

        .contact-text-area {
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 360px;
        }
        .contact-text-area h4 { color: var(--primary-yellow); font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 15px;}
        .contact-text-area h2 { font-size: 2.4rem; line-height: 1.1; margin-bottom: 10px; font-family: 'Montserrat', sans-serif;}
        .contact-text-area p { color: #cbd5e1; font-size: 1rem; margin-top: 5px; line-height: 1.5; }

        .contact-form-area {
            background: #ffffff;
            padding: 50px;
            border-radius: 30px;
            margin: 15px;
            align-self: center;
        }

        .contact-alert {
            padding: 12px 14px;
            border-radius: 10px;
            margin-bottom: 15px;
            font-size: .9rem;
            font-weight: 700;
        }

        .contact-alert.success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
        .contact-alert.error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

        .selected-service-alert {
            display: none;
            align-items: center;
            gap: 8px;
            padding: 12px 14px;
            border-radius: 10px;
            margin-bottom: 15px;
            background: #fffbeb;
            color: #92400e;
            border: 1px solid #fde68a;
            font-size: .9rem;
            font-weight: 800;
        }

        .selected-service-alert.active {
            display: flex;
        }

        .hp-field {
            position: absolute !important;
            left: -9999px !important;
            width: 1px !important;
            height: 1px !important;
            overflow: hidden !important;
        }

        .contact-form-area input, .contact-form-area textarea {
            width: 100%; padding: 15px 18px; margin-bottom: 15px;
            border: 1px solid #cbd5e1; border-radius: 8px; font-family: 'Roboto', sans-serif; font-size: 0.95rem; color: var(--text-dark);
        }
        .contact-form-area textarea { height: 110px; resize: none; }
        .btn-submit {
            background: var(--success-green); color: white; width: 100%; padding: 15px; border: none; border-radius: 8px;
            font-weight: 600; font-family: 'Montserrat', sans-serif; font-size: 1rem; cursor: pointer; transition: 0.3s;
        }
        .btn-submit:hover { background: #16a34a; }

        .footer-content {
            display: grid;
            grid-template-columns:
                minmax(360px, 1.35fr)
                minmax(145px, .62fr)
                minmax(175px, .72fr)
                minmax(280px, .95fr);
            gap: 42px;
            width: 90%;
            max-width: 1480px;
            margin: 0 auto;
            padding: 0 0 46px 0;
            align-items: start;
        }

        .footer-col p {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 15px;
            line-height: 1.75;
        }

        .footer-col:first-child p {
            max-width: 590px;
            text-align: justify;
            text-justify: inter-word;
        }

        .footer-col h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: white;
            position: relative;
            display: inline-block;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 34px;
            height: 3px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--primary-yellow), #ca8a04);
        }

        .footer-col ul li { margin-bottom: 12px; }

        .footer-col ul li a,
        .footer-contact-list li {
            color: #94a3b8;
            font-size: 0.9rem;
            line-height: 1.55;
            transition: 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--primary-yellow);
            padding-left: 4px;
        }

        .footer-action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 42px;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.14);
            color: #fff;
            font-weight: 800;
            font-size: .86rem;
            transition: .25s ease;
        }

        .footer-action-btn:hover {
            background: linear-gradient(135deg, var(--primary-yellow), #ca8a04);
            border-color: rgba(244,208,63,.75);
            color: var(--dark-bg);
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(244,208,63,.18);
        }

        .footer-quick-actions {
            display: grid;
            gap: 10px;
            margin-top: 16px;
        }

        .footer-contact-note {
            color: #94a3b8;
            font-size: .86rem;
            margin-top: 12px;
            line-height: 1.55;
        }

        .footer-contact-list i {
            color: var(--primary-yellow);
            width: 18px;
            text-align: center;
            margin-right: 8px;
        }

        .footer-office-hours {
            margin-top: 14px;
            padding: 14px 16px;
            border-radius: 16px;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.10);
            color: #cbd5e1;
            font-size: .88rem;
            line-height: 1.55;
        }

        .footer-office-hours strong {
            display: block;
            color: #fff;
            margin-bottom: 4px;
        }

        .footer-bottom {
            text-align: center;
            padding: 20px 5%;
            border-top: 1px solid rgba(255,255,255,0.06);
            color: #64748b;
            font-size: 0.85rem;
        }

        /* === MODAL STYLES === */
        .modal-overlay {
            display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(8px);
            z-index: 2000; align-items: center; justify-content: center;
            opacity: 0; transition: opacity 0.3s ease; padding: 20px;
        }
        .modal-overlay.active { display: flex; opacity: 1; }
        .modal-content {
            background: white; display: flex; border-radius: 20px;
            width: 100%; max-width: 900px; position: relative;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
            transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            overflow: hidden; min-height: 500px;
        }
        .modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
        .modal-close {
            position: absolute; top: 15px; right: 18px;
            background: #f3f4f6; border: none; width: 40px; height: 40px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 16px; cursor: pointer; color: #334155; z-index: 1001; transition: all 0.3s ease;
            box-shadow: 0 8px 18px rgba(15,23,42,.08);
        }
        .modal-close:hover { background: #ef4444; color: #fff; transform: rotate(90deg) scale(1.05); }

        .modal-left {
            flex: 1; background: linear-gradient(to bottom, rgba(15,23,42,0.6), rgba(15,23,42,0.9)), url('https://images.unsplash.com/photo-1541888086425-d81bb19240f5?ixlib=rb-4.0.3') center/cover;
            padding: 40px; display: flex; flex-direction: column; justify-content: flex-end; color: white;
        }
        .modal-left h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; line-height: 1.2; font-family: 'Montserrat', sans-serif;}
        .modal-left p { font-size: 0.95rem; color: #cbd5e1; }
        
        .modal-right { flex: 1.2; padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; background: white; }
        .modal-title { font-size: 1.8rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; font-family: 'Montserrat', sans-serif;}
        .modal-subtitle { color: #64748b; font-size: 0.9rem; margin-bottom: 30px; }
        
        .modal-form-group { margin-bottom: 15px; position: relative; }
        .modal-form-row { display: flex; gap: 15px; margin-bottom: 15px; }
        .modal-form-row > div { flex: 1; position: relative; }
        
        .modal-form-label { display: block; margin-bottom: 6px; font-size: 0.8rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; font-family: 'Montserrat', sans-serif;}
        .modal-input {
            width: 100%; padding: 12px 15px; border: 2px solid #e2e8f0;
            border-radius: 10px; outline: none; background: #f8fafc;
            font-size: 0.95rem; color: var(--text-dark); font-family: inherit; font-weight: 500; transition: all 0.3s;
        }
        .modal-input:focus { border-color: var(--primary-yellow); background: white; }
        
        .btn-modal-submit {
            background: var(--dark-bg); color: white; border: none;
            padding: 15px; width: 100%; border-radius: 10px;
            font-size: 1rem; font-weight: 800; cursor: pointer; font-family: 'Montserrat', sans-serif;
            display: flex; align-items: center; justify-content: center; gap: 10px;
            margin-top: 10px; transition: all 0.3s;
        }
        .btn-modal-submit:hover { background: #000; color: var(--primary-yellow); }
        
        .modal-footer-text { margin-top: 20px; text-align: center; font-size: 0.9rem; color: #64748b; font-weight: 500; }
        .modal-footer-text a { color: var(--primary-yellow); font-weight: 700; text-decoration: none; transition: 0.2s; color: var(--dark-bg); text-decoration: underline;}
        .modal-footer-text a:hover { color: var(--primary-yellow); }


        /* === MODERN LOGIN MODAL UPGRADES === */
        .login-left{
            flex: 1;
            position: relative;
            padding: 42px;
            color: #fff;
            background:
                linear-gradient(145deg, rgba(15,23,42,.68), rgba(15,23,42,.88)),
                url('../login2.jpg') center/cover;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 500px;
            overflow: hidden;
        }

        .login-left::after{
            content:"";
            position:absolute;
            right:-80px;
            bottom:-80px;
            width:220px;
            height:220px;
            border-radius:50%;
            background:rgba(244,208,63,.14);
        }

        .login-brand{
            position:relative;
            z-index:1;
        }

        .login-brand img{
            height:78px;
            width:auto;
            object-fit:contain;
            filter:drop-shadow(0 6px 16px rgba(0,0,0,.35));
            margin-bottom:18px;
        }

        .login-brand-title{
            font-family:'Montserrat', sans-serif;
            font-size:1.45rem;
            line-height:1.15;
            font-weight:900;
            letter-spacing:.2px;
        }

        .login-brand-sub{
            margin-top:8px;
            font-size:.78rem;
            color:#facc15;
            font-weight:800;
            letter-spacing:1.4px;
            text-transform:uppercase;
        }

        .login-benefits{
            position:relative;
            z-index:1;
            display:grid;
            gap:12px;
            margin-top:24px;
        }

        .login-benefits li{
            display:flex;
            align-items:center;
            gap:10px;
            color:#e2e8f0;
            font-size:.93rem;
            font-weight:600;
        }

        .login-benefits i{
            color:#facc15;
            width:18px;
            text-align:center;
        }

        .login-welcome{
            position:relative;
            z-index:1;
        }

        .login-welcome h3{
            font-size:1.8rem;
            font-weight:900;
            margin-bottom:10px;
            font-family:'Montserrat', sans-serif;
        }

        .login-welcome p{
            color:#cbd5e1;
            font-size:.95rem;
            max-width:340px;
        }

        .password-wrapper{
            position:relative;
        }

        .password-wrapper .modal-input{
            padding-right:48px;
        }

        .password-toggle{
            position:absolute;
            right:10px;
            top:50%;
            transform:translateY(-50%);
            width:36px;
            height:36px;
            border:none;
            border-radius:9px;
            background:#eef2f7;
            color:#475569;
            cursor:pointer;
            display:flex;
            align-items:center;
            justify-content:center;
            transition:.25s ease;
        }

        .password-toggle:hover{
            background:var(--primary-yellow);
            color:var(--dark-bg);
        }

        .login-options{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:12px;
            margin:4px 0 18px;
            flex-wrap:wrap;
        }

        .remember-me{
            display:flex;
            align-items:center;
            gap:8px;
            color:#475569;
            font-size:.88rem;
            font-weight:700;
            cursor:pointer;
        }

        .remember-me input{
            width:16px;
            height:16px;
            accent-color:#111827;
        }

        .forgot-link{
            color:#111827;
            font-size:.88rem;
            font-weight:800;
            text-decoration:underline;
            text-underline-offset:3px;
        }

        .forgot-link:hover{
            color:#ca8a04;
        }

        .login-note{
            text-align:center;
            margin-top:14px;
            padding:10px 12px;
            border-radius:999px;
            background:#f8fafc;
            color:#64748b;
            font-size:.78rem;
            font-weight:800;
            letter-spacing:.2px;
        }

        @media(max-width:768px){
            .login-left{
                min-height:auto;
                padding:28px;
                gap:24px;
            }

            .login-brand img{
                height:62px;
            }

            .login-brand-title{
                font-size:1.15rem;
            }

            .login-benefits{
                grid-template-columns:1fr;
                gap:9px;
            }

            .login-welcome h3{
                font-size:1.45rem;
            }
        }




        /* === LOGIN FORM UX REFINEMENTS === */
        #loginModal .modal-right {
            padding-top: 44px;
            padding-bottom: 40px;
        }

        #loginModal .modal-subtitle {
            margin-bottom: 24px;
        }

        #loginModal .modal-input {
            min-height: 46px;
        }

        #loginModal .modal-input:hover {
            border-color: #cbd5e1;
        }

        #loginModal .modal-input:focus {
            border-color: var(--primary-yellow);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(244, 208, 63, .13);
        }

        /* Keep Chrome/Edge password-manager autofill consistent with the theme. */
        #loginModal input.modal-input:-webkit-autofill,
        #loginModal input.modal-input:-webkit-autofill:hover,
        #loginModal input.modal-input:-webkit-autofill:focus,
        #loginModal input.modal-input:-webkit-autofill:active {
            -webkit-text-fill-color: #0f172a !important;
            caret-color: #0f172a;
            -webkit-box-shadow: 0 0 0 1000px #f8fafc inset !important;
            box-shadow: 0 0 0 1000px #f8fafc inset !important;
            border-color: #cbd5e1;
            transition: background-color 9999s ease-in-out 0s;
        }

        .login-field-help {
            display: block;
            margin-top: 6px;
            color: #94a3b8;
            font-size: .72rem;
            font-weight: 600;
            line-height: 1.35;
        }

        .login-caps-warning {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-top: 7px;
            padding: 6px 9px;
            border: 1px solid #fed7aa;
            border-radius: 8px;
            background: #fff7ed;
            color: #9a3412;
            font-size: .75rem;
            font-weight: 800;
        }

        .login-caps-warning[hidden] {
            display: none !important;
        }

        #loginModal .btn-modal-submit {
            min-height: 48px;
            position: relative;
        }

        #loginModal .btn-modal-submit:focus-visible {
            outline: none;
            box-shadow: 0 0 0 4px rgba(244, 208, 63, .22);
        }

        #loginModal .btn-modal-submit:disabled {
            opacity: .78;
            cursor: wait;
            transform: none;
        }

        #loginModal .login-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
        }

        #loginModal .login-note i {
            color: #475569;
        }

        #loginModal .modal-footer-text a {
            text-underline-offset: 3px;
        }

        @media (max-width: 768px) {
            #loginModal .modal-content {
                max-height: calc(100vh - 24px);
                overflow-y: auto;
            }

            #loginModal .login-left {
                min-height: 225px;
                padding: 25px;
            }

            #loginModal .login-benefits {
                display: none;
            }

            #loginModal .login-welcome p {
                max-width: 100%;
            }

            #loginModal .modal-right {
                padding: 32px 24px 28px;
            }
        }



        /* === AUTH MODAL COMPLETE REFINEMENT V10 === */
        .auth-modal-content .auth-image-panel {
            position: relative;
            overflow: hidden;
            align-items: stretch;
            justify-content: stretch;
        }

        .auth-modal-content .auth-image-panel::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(circle at 88% 90%, rgba(244, 208, 63, .15), transparent 31%),
                linear-gradient(to top, rgba(15, 23, 42, .28), transparent 48%);
        }

        .auth-side-content {
            position: relative;
            z-index: 1;
            width: 100%;
            min-height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 38px 36px 34px;
            color: #fff;
        }

        .auth-side-logo {
            display: block;
            width: 112px;
            max-height: 72px;
            object-fit: contain;
            object-position: left center;
            filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .25));
        }

        .auth-side-copy h3 {
            margin: 0 0 10px;
            max-width: 330px;
            color: #fff;
            font-size: 1.72rem;
            line-height: 1.08;
            font-weight: 900;
            letter-spacing: -.45px;
        }

        .auth-side-copy > p {
            max-width: 340px;
            color: #dbe4ef;
            font-size: .9rem;
            line-height: 1.65;
        }

        .auth-benefits {
            margin-top: 20px;
        }

        .auth-benefits li {
            color: #f8fafc;
        }

        .auth-field-help {
            display: block;
            margin-top: 5px;
            color: #94a3b8;
            font-size: .69rem;
            font-weight: 600;
            line-height: 1.35;
        }

        .auth-password-control {
            position: relative;
        }

        .auth-password-control .modal-input {
            padding-right: 48px;
        }

        .auth-password-toggle {
            position: absolute;
            top: 50%;
            right: 8px;
            width: 34px;
            height: 34px;
            transform: translateY(-50%);
            border: 0;
            border-radius: 9px;
            background: #eef2f7;
            color: #475569;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: .18s ease;
        }

        .auth-password-toggle:hover,
        .auth-password-toggle:focus-visible {
            background: #111827;
            color: #fff;
            outline: none;
        }

        .auth-password-feedback {
            margin: -2px 0 9px;
        }

        .auth-strength-track {
            width: 100%;
            height: 5px;
            overflow: hidden;
            border-radius: 999px;
            background: #e2e8f0;
        }

        .auth-strength-track span {
            display: block;
            width: 0;
            height: 100%;
            border-radius: inherit;
            background: #ef4444;
            transition: width .2s ease, background-color .2s ease;
        }

        .auth-password-feedback-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-top: 6px;
            color: #64748b;
            font-size: .68rem;
            font-weight: 700;
        }

        .auth-password-feedback-row .is-good,
        .auth-inline-status.is-good {
            color: #15803d;
        }

        .auth-password-feedback-row .is-bad,
        .auth-inline-status.is-bad {
            color: #b91c1c;
        }

        .auth-password-rules {
            margin-bottom: 12px;
            color: #64748b;
            font-size: .72rem;
            font-weight: 650;
            line-height: 1.45;
        }

        .auth-consent {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            margin: 0 0 14px;
            color: #475569;
            font-size: .72rem;
            font-weight: 650;
            line-height: 1.45;
            cursor: pointer;
        }

        .auth-consent input {
            width: 16px;
            height: 16px;
            margin-top: 2px;
            flex: 0 0 auto;
            accent-color: #111827;
        }

        .auth-security-note,
        .auth-code-sent {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            margin: 0 0 14px;
            padding: 10px 11px;
            border-radius: 10px;
            font-size: .73rem;
            font-weight: 700;
            line-height: 1.45;
        }

        .auth-security-note {
            border: 1px solid #bfdbfe;
            background: #eff6ff;
            color: #1e40af;
        }

        .auth-code-sent {
            border: 1px solid #bbf7d0;
            background: #f0fdf4;
            color: #166534;
        }

        .auth-code-input {
            text-align: center;
            letter-spacing: 8px;
            font-size: 1.25rem;
            font-weight: 850;
        }

        .auth-inline-status {
            display: block;
            margin: -4px 0 13px;
            color: #64748b;
            font-size: .7rem;
            font-weight: 700;
        }

        #registerModal .modal-right,
        #forgotModal .modal-right {
            justify-content: center;
        }

        #registerModal .modal-content {
            max-width: 900px;
        }

        #forgotModal .modal-content {
            max-width: 840px;
        }

        #registerModal .btn-modal-submit,
        #forgotModal .btn-modal-submit {
            min-height: 46px;
        }

        #registerModal .btn-modal-submit:disabled,
        #forgotModal .btn-modal-submit:disabled {
            opacity: .76;
            cursor: wait;
            transform: none;
        }

        @media (max-width: 768px) {
            .auth-modal-content .auth-image-panel {
                min-height: 220px;
            }

            .auth-side-content {
                min-height: 220px;
                padding: 24px;
            }

            .auth-side-logo {
                width: 88px;
                max-height: 54px;
            }

            .auth-side-copy h3 {
                font-size: 1.42rem;
            }

            .auth-benefits {
                display: none;
            }

            .auth-password-feedback-row {
                align-items: flex-start;
                flex-direction: column;
                gap: 3px;
            }
        }



        /* === RESET PASSWORD FIELD ALIGNMENT V12 === */
        #forgotResetForm .auth-reset-password-row {
            align-items: stretch;
        }

        #forgotResetForm .auth-reset-password-row > div {
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        #forgotResetForm .auth-reset-password-row .modal-form-label {
            min-height: 34px;
            margin-bottom: 7px;
            display: flex;
            align-items: flex-end;
            line-height: 1.25;
        }

        #forgotResetForm .auth-reset-password-row .auth-password-control {
            margin-top: auto;
            width: 100%;
        }

        #forgotResetForm .auth-reset-password-row .modal-input {
            width: 100%;
            min-width: 0;
        }

        #forgotResetForm .auth-reset-password-row .auth-password-toggle {
            top: 50%;
        }

        @media (min-width: 769px) {
            #forgotResetForm .auth-reset-password-row {
                grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
                column-gap: 14px;
            }

            #forgotResetForm .auth-reset-password-row .modal-form-label {
                font-size: .73rem;
                letter-spacing: .25px;
            }
        }

        @media (max-width: 768px) {
            #forgotResetForm .auth-reset-password-row {
                grid-template-columns: 1fr;
            }

            #forgotResetForm .auth-reset-password-row .modal-form-label {
                min-height: auto;
            }
        }



        /* === RESET PASSWORD STRENGTH FEEDBACK V13 === */
        #forgotResetForm .auth-reset-password-feedback {
            margin-top: 10px;
            margin-bottom: 8px;
        }

        #forgotResetForm .auth-reset-password-feedback .auth-password-feedback-row {
            margin-top: 6px;
        }

        #forgotResetForm .auth-reset-password-feedback small {
            line-height: 1.35;
        }

        @media (max-width: 768px) {
            #forgotResetForm .auth-reset-password-feedback .auth-password-feedback-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 3px;
            }
        }

        /* Alerts inside Modals */
        .alert-box { padding: 12px 15px; border-radius: 8px; margin-bottom: 20px; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
        .alert-error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
        .alert-success { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }

        /* Responsive */
        @media(max-width: 1024px) {
            .hero h1 { font-size: 2.8rem; }
            .hero-content { max-width: 85%; }
            .features-grid, .properties-grid { grid-template-columns: 1fr; flex-direction: column; }
            .hero-cards { grid-template-columns: 1fr; margin-top: 20px; }
            .property-filter-form { grid-template-columns: 1fr 1fr; max-width: 100%; }
            .properties-section { padding-top: 110px; }
            
            /* Responsive Contact & Footer Fixes */
            .contact-overlap { grid-template-columns: 1fr; margin: 0 auto 40px auto; width: 95%; border-radius: 20px;}
            .contact-text-area { padding: 40px 30px; min-height: auto; }
            .contact-form-area { margin: 0; border-radius: 0; padding: 40px 30px; align-self: stretch; }
            .footer-wrapper { padding-top: 50px; margin-top: 0; }
            .footer-content { grid-template-columns: 1fr 1fr; width: 92%; gap: 32px; }
        }
        .mobile-menu-btn{
    display:none;
    background:#f4d03f;
    color:#111827;
    border:none;
    width:48px;
    height:48px;
    border-radius:12px;
    font-size:20px;
    cursor:pointer;
    font-weight:700;
}

@media(max-width:1200px){
    .brand-logo{
        width:190px;
        max-height:74px;
    }

    .navbar .nav-logo-text h2{
        font-size:1.12rem;
    }

    .navbar .nav-logo-text span{
        font-size:8.5px;
        letter-spacing:1.3px;
    }

    .nav-links{
        gap:22px;
    }
}

@media(max-width:992px){
    .navbar{
        gap:14px;
    }

    .brand-logo{
        width:160px;
        max-height:62px;
    }

    .navbar .nav-logo-text{
        display:none;
    }
}

@media(max-width:768px){

    .navbar{
        min-height:72px;
        padding:10px 16px;
        gap:10px;
    }

    .brand-link{
        gap:6px;
        max-width:230px;
    }

    .brand-logo{
        width:138px;
        max-height:56px;
    }

    .mobile-menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#0f172a;
        display:none;
        flex-direction:column;
        gap:0;
        padding:15px 0;
        border-top:1px solid rgba(255,255,255,.08);
        box-shadow:0 10px 30px rgba(0,0,0,.25);
    }

    .nav-links.show{
        display:flex;
    }

    .nav-links a{
        padding:14px 25px;
        color:#fff;
        font-weight:600;
        border-bottom:1px solid rgba(255,255,255,.05);
    }

    .nav-links a:hover{
        background:rgba(244,208,63,.12);
        color:#f4d03f;
    }

    .hero h1{
        font-size:2.2rem;
    }

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

    .section-title{
        font-size:1.8rem;
    }

    .footer-content{
        grid-template-columns:1fr;
        width:92%;
        gap:28px;
    }

    .footer-col:first-child p{
        max-width:none;
        text-align:left;
    }

    .modal-content{
        flex-direction:column;
        max-height:90vh;
        overflow-y:auto;
    }

    .modal-left{
        min-height:150px;
        padding:25px;
    }

    .modal-right{
        padding:30px 25px;
    }

    .search-box{
        flex-direction:column;
        border-radius:16px;
        padding:15px;
    }

    .search-input-group{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.2);
        padding-bottom:10px;
        margin-bottom:10px;
        width:100%;
    }

    .btn-search{
        width:100%;
    }

    .property-filter-form{
        grid-template-columns:1fr;
        max-width:100%;
    }

    .property-filter-field label{
        text-align:left;
    }

    .properties-section{
        padding-top:95px;
    }

    .hero{
        min-height:100vh;
        height:auto;
        padding-top:110px;
        padding-bottom:70px;
    }

    .hero p{
        max-width:100%;
    }

    .btn-primary{
        padding:12px 18px;
        font-size:.88rem;
    }

    .hero-search .ts-wrapper.single,
    .hero-search .ts-control{
        width:100%;
    }

    .jej-hero-dropdown.ts-dropdown{
        margin-top:8px;
    }

    .navbar .nav-logo-text{
        display:none;
    }

    .profile-info{
        display:none !important;
    }

    .features-grid{
        grid-template-columns:1fr;
    }

    .hero-actions{
        width:100%;
    }

    .hero-actions .btn-primary{
        width:100%;
        justify-content:center;
    }

    .nav-actions{
        gap:10px;
    }

    .nav-actions > .btn-primary{
        max-width:145px;
        padding:10px 12px;
        font-size:.78rem;
        white-space:normal;
        line-height:1.15;
        justify-content:center;
    }

    .property-filter-note{
        margin-top:-10px;
        font-size:.82rem;
    }

    .contact-form-area{
        width:100%;
    }
}   


        /* === BACK TO TOP BUTTON === */
        .back-to-top{
            position:fixed;
            right:26px;
            bottom:26px;
            width:54px;
            height:54px;
            border:none;
            border-radius:50%;
            background:linear-gradient(135deg, var(--primary-yellow), #eab308);
            color:var(--dark-bg);
            font-size:20px;
            cursor:pointer;
            display:flex;
            align-items:center;
            justify-content:center;
            box-shadow:0 12px 28px rgba(0,0,0,.28);
            z-index:1500;
            opacity:0;
            visibility:hidden;
            transform:translateY(18px);
            transition:all .3s ease;
        }

        .back-to-top.show{
            opacity:1;
            visibility:visible;
            transform:translateY(0);
        }

        .back-to-top:hover{
            transform:translateY(-5px);
            box-shadow:0 18px 36px rgba(0,0,0,.35);
        }

        @media(max-width:768px){
            .back-to-top{
                width:48px;
                height:48px;
                right:18px;
                bottom:18px;
                font-size:18px;
            }
        }



        /* =========================================================
           PROPERTIES FILTER ALIGN/FIT POLISH
           Keeps the filter bar aligned with the lot-card grid and
           prevents cramped/overflowing controls on desktop/mobile.
        ========================================================= */
        .properties-section .property-filter-form{
            width: 100%;
            max-width: none;
            grid-template-columns:
                minmax(220px, 1.25fr)
                repeat(4, minmax(105px, .62fr))
                minmax(105px, .55fr)
                minmax(120px, .65fr)
                minmax(135px, .72fr)
                minmax(105px, .58fr);
            gap: 10px;
            padding: 12px 14px;
            margin: 0 0 20px 0;
            align-items: end;
        }

        .properties-section .property-filter-field{
            gap: 7px;
        }

        .properties-section .property-filter-field label{
            min-height: 14px;
            line-height: 1;
            white-space: nowrap;
        }

        .properties-section .property-filter-form select,
        .properties-section .property-filter-form input,
        .properties-section .btn-filter,
        .properties-section .btn-clear-filter{
            min-height: 46px;
            height: 46px;
            border-radius: 11px;
        }

        .properties-section .property-filter-form input,
        .properties-section .property-filter-form select{
            padding-inline: 13px;
            font-size: .86rem;
        }

        .properties-section .btn-filter,
        .properties-section .btn-clear-filter,
        .properties-section .btn-more-filter{
            width: 100%;
            padding-inline: 12px;
            font-size: .86rem;
        }

        .properties-section .property-filter-note{
            margin: 0 auto 28px auto;
        }


        @media (min-width: 1281px){
            .properties-section .btn-filter,
            .properties-section .btn-more-filter,
            .properties-section .btn-clear-filter{
                white-space: nowrap;
            }
        }

        @media (max-width: 1280px){
            .properties-section .property-filter-form{
                grid-template-columns: repeat(4, minmax(0, 1fr));
                align-items: stretch;
            }
            .properties-section .btn-filter,
            .properties-section .btn-clear-filter{
                align-self: end;
            }
        }

        @media (max-width: 768px){
            .properties-section{
                padding-top: 85px;
            }
            .properties-section .property-filter-form{
                grid-template-columns: 1fr 1fr;
                gap: 10px;
                padding: 12px;
                border-radius: 16px;
            }
            .properties-section .property-filter-field:first-child{
                grid-column: 1 / -1;
            }
            .properties-section .property-filter-form select,
            .properties-section .property-filter-form input,
            .properties-section .btn-filter,
            .properties-section .btn-clear-filter{
                min-height: 44px;
                height: 44px;
                font-size: .82rem;
            }
            .properties-section .property-filter-field label{
                font-size: .66rem;
                white-space: normal;
            }
            .properties-section .property-filter-note{
                margin-top: -4px;
                margin-bottom: 18px;
                padding-inline: 8px;
            }
        }

        @media (max-width: 480px){
            .properties-section .property-filter-form{
                grid-template-columns: 1fr;
            }
        }

        /* === BUYER-FIRST HOMEPAGE UPGRADES === */
        section,
        header,
        .footer-wrapper {
            scroll-margin-top: 150px;
        }

        .section-padding {
            padding-top: 72px;
            padding-bottom: 72px;
        }

        .nav-reservation-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 40px;
            padding: 9px 14px;
            border-radius: 999px;
            background: rgba(244,208,63,.14);
            border: 1px solid rgba(244,208,63,.35);
            color: var(--primary-yellow);
            font-size: .82rem;
            font-weight: 800;
            white-space: nowrap;
            transition: .25s ease;
        }

        .nav-reservation-link:hover {
            background: var(--primary-yellow);
            color: var(--dark-bg);
            transform: translateY(-1px);
        }

        .properties-section .property-filter-form {
            grid-template-columns:
                minmax(220px, 1.25fr)
                repeat(4, minmax(105px, .62fr))
                minmax(105px, .55fr)
                minmax(120px, .65fr)
                minmax(135px, .72fr)
                minmax(105px, .58fr);
            align-items: end;
            gap: 10px;
            margin-bottom: 18px;
        }

        .btn-more-filter {
            min-height: 46px;
            height: 46px;
            border-radius: 11px;
            border: 1px solid rgba(255,255,255,.18);
            background: rgba(255,255,255,.06);
            color: #e2e8f0;
            padding: 0 14px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            white-space: nowrap;
            width: 100%;
        }

        .btn-more-filter:hover,
        .btn-more-filter[aria-expanded="true"] {
            color: var(--primary-yellow);
            border-color: var(--primary-yellow);
            background: rgba(244,208,63,.10);
        }

        .more-filters-panel {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: minmax(180px, 240px);
            gap: 12px;
            padding-top: 10px;
            border-top: 1px solid rgba(255,255,255,.10);
        }

        .more-filters-panel[hidden] {
            display: none;
        }

        .property-results-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            flex-wrap: wrap;
            margin: 0 0 24px 0;
            color: #cbd5e1;
        }

        .property-results-bar p {
            font-size: .95rem;
            font-weight: 800;
            margin: 0;
        }

        .active-filter-chips {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 8px;
        }

        .active-filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(244,208,63,.14);
            color: var(--primary-yellow);
            border: 1px solid rgba(244,208,63,.32);
            font-size: .8rem;
            font-weight: 800;
        }

        .active-filter-chip:hover {
            background: var(--primary-yellow);
            color: var(--dark-bg);
        }

        .prop-img {
            aspect-ratio: 16 / 10;
        }

        .services-section .section-title {
            margin-bottom: 26px;
        }

        .services-section .features-grid {
            margin-bottom: 24px;
        }

        .service-extra {
            display: none;
        }

        .services-section.services-expanded .service-extra {
            display: block;
        }

        .services-more-wrap {
            text-align: center;
        }

        .btn-services-more {
            background: transparent;
            border: 2px solid var(--dark-bg);
            color: var(--dark-bg);
            box-shadow: none;
        }

        .btn-services-more:hover {
            background: var(--dark-bg);
            color: var(--primary-yellow);
        }

        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: -18px 0 26px 0;
        }

        .trust-badges span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 13px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid #e2e8f0;
            color: #334155;
            font-size: .84rem;
            font-weight: 800;
            box-shadow: 0 8px 18px rgba(15,23,42,.05);
        }

        .trust-badges i {
            color: #16a34a;
        }

        @media (max-width: 1280px) {
            .properties-section .property-filter-form {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }

        @media (max-width: 900px) {
            .nav-reservation-link span {
                display: none;
            }
        }

        @media (max-width: 768px) {
            section,
            header,
            .footer-wrapper {
                scroll-margin-top: 112px;
            }

            .section-padding {
                padding-top: 56px;
                padding-bottom: 56px;
            }

            .properties-section .property-filter-form {
                grid-template-columns: 1fr 1fr;
            }

            .properties-section .property-filter-field:first-child,
            .more-filters-panel {
                grid-column: 1 / -1;
            }

            .property-results-bar {
                justify-content: center;
                text-align: center;
            }

            .active-filter-chips {
                justify-content: center;
                width: 100%;
            }

            .nav-reservation-link {
                width: 40px;
                height: 40px;
                padding: 0;
                justify-content: center;
            }
        }


        /* === PUBLIC MASTER LOCATION SYNC + HERO GAP FIX V14 === */
        .hero-cards {
            margin-bottom: 0;
            background:
                linear-gradient(
                    to bottom,
                    transparent 0,
                    transparent 40px,
                    var(--dark-bg) 40px,
                    var(--dark-bg) 100%
                );
        }

        .properties-section {
            margin-top: 0;
            padding-top: 68px;
        }

        .jej-hero-dropdown.ts-dropdown .ts-dropdown-content {
            max-height: 330px;
        }

        .jej-hero-dropdown.ts-dropdown .option {
            white-space: normal;
            line-height: 1.35;
        }

        #propertyLocationFilter {
            text-overflow: ellipsis;
        }

        @media (max-width: 1024px) {
            .hero-cards {
                margin-top: 0 !important;
                padding-top: 28px;
                padding-bottom: 26px;
                background: var(--dark-bg);
            }

            .properties-section {
                padding-top: 54px;
            }
        }

        @media (max-width: 768px) {
            .hero-cards {
                padding-top: 22px;
                padding-bottom: 22px;
            }

            .properties-section {
                padding-top: 44px;
            }
        }


        /* === PUBLIC LOT SEARCH + CARD IMAGE FIX V15 === */
        .hero-search {
            max-width: 980px;
        }

        .hero-search .search-input-group:first-of-type {
            flex: 1.35;
        }

        .hero-search .search-lot-reference-group {
            flex: .8;
        }

        .hero-lot-reference-input {
            min-height: 52px;
            cursor: text;
        }

        .hero-lot-reference-input::placeholder {
            color: rgba(255,255,255,.76);
            font-weight: 700;
        }

        .property-filter-form {
            grid-template-columns:
                minmax(220px, 1.25fr)
                minmax(165px, .82fr)
                repeat(4, minmax(100px, .56fr))
                minmax(105px, .56fr)
                minmax(115px, .62fr)
                minmax(130px, .70fr)
                minmax(100px, .54fr);
        }

        .property-lot-reference-field input {
            text-overflow: ellipsis;
        }

        .prop-img-box {
            background: linear-gradient(145deg, #0f172a, #1f3d2b);
        }

        .prop-img {
            background: linear-gradient(145deg, #0f172a, #1f3d2b);
        }

        @media (max-width: 1180px) {
            .property-filter-form {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .hero-search .search-input-group:first-of-type,
            .hero-search .search-lot-reference-group {
                flex: 1 1 auto;
                width: 100%;
            }

            .hero-search .search-lot-reference-group {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,.2);
                padding-bottom: 10px;
                margin-bottom: 10px;
            }

            .property-filter-form {
                grid-template-columns: 1fr;
            }
        }


        /* === HERO OPTIONAL PHASE / BLOCK / LOT SEARCH V2 === */
        .hero-search-form {
            width: 100%;
            max-width: 770px;
        }

        .hero-search-primary {
            width: 100%;
            max-width: none;
        }

        .hero-search-primary .search-input-group {
            flex: 1 1 auto;
        }

        .hero-specific-lot-search {
            width: 100%;
            max-width: 620px;
            margin-top: 10px;
            margin-left: 14px;
            color: #fff;
        }

        .hero-specific-lot-search > summary {
            width: fit-content;
            max-width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 7px 11px;
            border: 1px solid transparent;
            border-radius: 10px;
            color: rgba(255,255,255,.84);
            font-size: .78rem;
            font-weight: 750;
            line-height: 1.3;
            cursor: pointer;
            list-style: none;
            user-select: none;
            transition:
                color .18s ease,
                background .18s ease,
                border-color .18s ease;
        }

        .hero-specific-lot-search > summary::-webkit-details-marker {
            display: none;
        }

        .hero-specific-lot-search > summary:hover,
        .hero-specific-lot-search > summary:focus-visible {
            color: #fff;
            background: rgba(255,255,255,.08);
            border-color: rgba(255,255,255,.12);
            outline: none;
        }

        .hero-specific-lot-summary-text {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

        .hero-specific-lot-summary-text > i {
            color: var(--primary-yellow);
        }

        .hero-specific-lot-chevron {
            color: rgba(255,255,255,.65);
            font-size: .7rem;
            transition: transform .2s ease;
        }

        .hero-specific-lot-search[open] .hero-specific-lot-chevron {
            transform: rotate(180deg);
        }

        .hero-specific-lot-panel {
            margin-top: 8px;
            padding: 10px 12px 9px;
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 17px;
            background: rgba(15,23,42,.76);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow:
                0 18px 36px rgba(0,0,0,.22),
                inset 0 1px 0 rgba(255,255,255,.08);
            animation: jejHeroSpecificLotOpen .18s ease-out;
        }

        .hero-specific-lot-panel .search-lot-reference-group {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0;
            padding: 0 2px;
            border: 0;
        }

        .hero-specific-lot-panel .hero-lot-reference-input {
            min-height: 42px;
            cursor: text;
        }

        .hero-specific-lot-panel .hero-lot-reference-input::placeholder {
            color: rgba(255,255,255,.68);
            font-weight: 650;
        }

        .hero-specific-lot-submit {
            min-height: 39px;
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            padding: 9px 14px;
            border: 1px solid rgba(244,208,63,.55);
            border-radius: 11px;
            background: rgba(244,208,63,.13);
            color: #ffe370;
            font-family: inherit;
            font-size: .75rem;
            font-weight: 850;
            cursor: pointer;
            white-space: nowrap;
            transition:
                background .18s ease,
                color .18s ease,
                transform .18s ease;
        }

        .hero-specific-lot-submit:hover,
        .hero-specific-lot-submit:focus-visible {
            background: var(--primary-yellow);
            color: var(--dark-bg);
            transform: translateY(-1px);
            outline: none;
        }

        .hero-specific-lot-help {
            display: block;
            margin: 6px 2px 0 32px;
            color: rgba(226,232,240,.72);
            font-size: .66rem;
            line-height: 1.45;
        }

        .hero-specific-lot-help strong {
            color: #fff;
            font-weight: 750;
        }

        @keyframes jejHeroSpecificLotOpen {
            from {
                opacity: 0;
                transform: translateY(-4px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .hero-search-form {
                max-width: 100%;
            }

            .hero-search-primary {
                flex-direction: column;
                border-radius: 16px;
                padding: 15px;
            }

            .hero-search-primary .search-input-group {
                width: 100%;
                margin-bottom: 10px;
                padding-bottom: 10px;
                border-right: 0;
                border-bottom: 1px solid rgba(255,255,255,.2);
            }

            .hero-search-primary .btn-search {
                width: 100%;
            }

            .hero-specific-lot-search {
                max-width: 100%;
                margin: 9px 0 0;
            }

            .hero-specific-lot-search > summary {
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            .hero-specific-lot-panel {
                padding: 12px;
            }

            .hero-specific-lot-panel .search-lot-reference-group {
                flex-wrap: wrap;
                margin: 0;
                padding: 0;
                border: 0;
            }

            .hero-specific-lot-panel .search-lot-reference-group > i {
                flex: 0 0 auto;
            }

            .hero-specific-lot-panel .hero-lot-reference-input {
                flex: 1 1 calc(100% - 42px);
                min-width: 0;
            }

            .hero-specific-lot-submit {
                width: 100%;
                margin-top: 2px;
            }

            .hero-specific-lot-help {
                margin-left: 0;
                text-align: center;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-specific-lot-panel {
                animation: none;
            }

            .hero-specific-lot-chevron,
            .hero-specific-lot-submit {
                transition: none;
            }
        }
